Quantcast
Channel: Web Deployment Tool (MS Deploy)
Viewing all 565 articles
Browse latest View live

Working in VS Debug but after deployment Umbraco.ModelsBuilder.dll missing

$
0
0

Hi All,

My Umbraco project runs OK in Visual Studio / Cassini, but with I use MS Deploy to deploy to a Local Windows Server 2012 IIS machine on the same subnet it fails to deploy Umbraco.ModelsBuilder.dll to the bin folder on the target machine and I get the error below.

Any Ideas what is going on here ?

Thanks

Terry Clancy  ClanceZ

Error from IE:

Server Error in '/' Application.

Configuration Error
  Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately.

 Parser Error Message: Could not load file or assembly 'Umbraco.ModelsBuilder' or one of its dependencies. The system cannot find the file specified.

Source Error:



Line 183:        <add assembly="System.Net.Http, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
Line 184:        <add assembly="System.Web.Http, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
Line 185:        <add assembly="Umbraco.ModelsBuilder" />
Line 186:        <add assembly="System.Collections, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
Line 187:        <add assembly="System.Collections.Concurrent, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />


 Source File:  C:\inetpub\TeraTastic\web.config    Line:  185

Assembly Load Trace: The following information can be helpful to determine why the assembly 'Umbraco.ModelsBuilder' could not be loaded.



WRN: Assembly binding logging is turned OFF.
To enable assembly bind failure logging, set the registry value [HKLM\Software\Microsoft\Fusion!EnableLog] (DWORD) to 1.
Note: There is some performance penalty associated with assembly bind failure logging.
To turn this feature off, remove the registry value [HKLM\Software\Microsoft\Fusion!EnableLog].




Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.6.1055.

Update ConnectionString in web.config using MSDeploy

$
0
0

How can I update connectionString in my web.config during deploy with MSDeploy?

Current web.config contains:

<?xml version="1.0" encoding="utf-8"?><configuration> <connectionStrings><site Setting="ON" /><remove name="conn1" /><add name="conn1" connectionString="server=server.database.windows.net;database=devdatabase1;user id=dbuser;password=dbpass;trusted_connection=False" providerName="System.Data.SqlClient" /><add name="conn2" connectionString="server=server.database.windows.net;database=devdatabase2;user id=dbuser;password=dbpass;trusted_connection=False" providerName="System.Data.SqlClient" /><add name="conn3" connectionString="server=server.database.windows.net;database=devdatabase3;user id=dbuser;password=dbpass;trusted_connection=False" providerName="System.Data.SqlClient" /><add name="StorageConnectionString" connectionString="DefaultEndpointsProtocol=http;AccountName=devstorage;AccountKey=devkey" /></connectionStrings></configuration>

What I need here is update connectionString for each add name="conn1|2|3".

 found this post and made Property.xml file with:

<parameters><parameter name="ChangeSiteSetting" value="OFF"><parameterEntry type="XMLFile" scope="web.config$" match="//configuration/connectionStrings/site/@Setting"/></parameter><parameter name="ChangeRemoveName" value="NewConn"><parameterEntry type="XMLFile" scope="web.config$" match="//configuration/connectionStrings/remove/@name"/></parameter>  <parameter name="ChangeAddName" value="NewConn"><parameterEntry type="XMLFile" scope="web.config$" match="//configuration/connectionStrings/remove/add/@name"/></parameter><parameter name="ChangeConnection" value="NewConnString"><parameterEntry type="XMLFile" scope="web.config$" match="//configuration/connectionStrings/remove/add/@connectionString"/></parameter></parameters>

And run it as:

$ msdeploy -verb:sync -source:dirpath=C:\BuildTest\Src -dest:dirpath=C:\BuildTest\Dst -setParamFile=C:\BuildTest\Property.xml

Result is:

$ type Dst\web.config<?xml version="1.0" encoding="utf-8"?><configuration><connectionStrings><site Setting="OFF" /><remove name="NewConn" /><add name="conn1" connectionString="server=server.database.windows.net;database=devdatabase1;user id=dbuser;password=dbpass;trusted_connection=False" providerName="System.Data.SqlClient" /><add name="conn2" connectionString="server=server.database.windows.net;database=devdatabase2;user id=dbuser;password=dbpass;trusted_connection=False" providerName="System.Data.SqlClient" /><add name="conn3" connectionString="server=server.database.windows.net;database=devdatabase3;user id=dbuser;password=dbpass;trusted_connection=False" providerName="System.Data.SqlClient" /><add name="StorageConnectionString" connectionString="DefaultEndpointsProtocol=http;AccountName=devstorage;AccountKey=devkey" /></connectionStrings></configuration>

I tried to set:

<parameterEntry type="XMLFile" scope="web.config$" match="//configuration/connectionStrings/remove/add[@name=conn1]/@connectionString"/>

to reach and update  connectionString name="conn1" - but this not works too.

Idea is to have separate Property.xml files for DEV, STAGE, PROD environments and update them during deploy viavariable, e.g.:

$ msdeploy -verb:sync -source:dirpath=C:\BuildTest\Src -dest:dirpath=C:\BuildTest\Dst -setParamFile=C:\BuildTest\DEVproperty.xml

ERROR_USER_NOT_AUTHORIZED_FOR_DEPLOYMENTPROVIDER while performing deployment (web application or windows services) as NON-Admin user via MSDeploy

$
0
0

Hi Team,

We have been receiving error - "ERROR_USER_NOT_AUTHORIZED_FOR_DEPLOYMENTPROVIDER" while executing below command using MSDeploy as Non-admin user (Username : myserviceaccount) in Target server. Same error by-passed when admin access provided to "myserviceaccount" user in Target server.

Typically, reported error should not appear when we declare delegation rules in IIS as mentioned in http://www.iis.net/learn/publish/using-web-deploy/configure-the-web-deployment-handler. But, MSDeploy still requires Admin access to "userName" for complete preSync & postSync MSDeploy commands.

Also, Have followed all directions captured in below blogs to complete the deployment as Non-Admin user. But, no luck favors to us.

1. http://www.jamescrowley.co.uk/2011/09/05/deploying-windows-services-using-msdeploy/

2. https://support.microsoft.com/en-us/kb/2023855

3. http://www.iis.net/learn/publish/using-web-deploy/configure-the-web-deployment-handler

Can you advise us what we are missing here?

MSDeploy Command:

“C:\Program Files (x86)\IIS\Microsoft Web Deploy V3\msdeploy.exe” -verb:sync -preSync:runCommand=’mypath\Uninstall_Service.cmd’,waitInterval=30000 -source:package=’mypackage.zip’ -dest:manifest=”mypackage.DestinationManifest.xml”,computerName=”https://myserver:8172/MSDeploy.axd?site=Default Web Site”,userName=”myserviceaccount”,password=”#########”,authtype=”Basic”,includeAcls=”False” -setParamFile:”mypackage.SetParameters.xml” -postSync:runCommand=’mypath\Install_Service.cmd’,waitInterval=30000 -disableLink:AppPoolExtension -disableLink:ContentExtension -disableLink:CertificateExtension -allowUntrusted

Is something listening on Port 8172?

$
0
0

I had a problem with Web Deploy as I was getting ERROR_DESTINATION_NOT_REACHABLE, so I followed the answer to this post.

When I ran that netsat, everying was 0 (as in the answer). The problem I was encountering was because no network connection was available on the server, so I solved that part.

However, even if the server is now reachable from Visual Studio and Web Deploy, netstat still returns 0 (as in the answer).

So is the answer correct or not? Is something listening on that port but being listed when using netstat?

Web Deploy [msdeploy.exe] - Post Deploy Script as part of deployment (not using command prompt)

$
0
0

Good Day Everyone

We are using Web Deploy to deploy ASP.NET web apps on the remote server. Is there any way to configure web deploy so that a post-deploy custom script could be included? It could be powershell or bat file BUT we do not want to run through command prompt on the target server. It must be setup as part of the deploy process.

I have seen ways to run it through command prompt but that's not what we want. It must be included somewhere in the settings/xml files that the web deploy process should read and make it part of the package. So when the package is finally deployed, that script also runs. Privileges are no issues.

Thanks

IIS 6.0 (Server 2003) to IIS 8.5 (Server 2012 R2)

$
0
0

Hello! 

I have been banging my head against my desk for the past couple weeks trying to figure out why I cannot migrate my IIS 6.0 (Server 2003) webwsites to IIS 8.5 (Server 2012 R2) using the MSDEPLOY tool.

I've used mostly used this blog post - https://blogs.msdn.microsoft.com/ericparvin/2014/09/12/migration-from-iis-6-to-iis-7-x-8-x/ - and due to our environment, I really need to be able to use the PUSH or PULL method to sync the servers. These servers are on the same subnet/workgroup and am logged in as a local administrator on both but I cannot get them to sync. 

Running this code.....

msdeploy -verb:sync -source:metakey=lm/w3svc/123456 ^
-dest:metakey=lm/w3svc/123456,computername=IPADDRESS -whatif

I get this error....

Error Code: ERROR_USER_NOT_ADMIN
More Information: Connected to 'IPADDRESS' using the Web Deployment Agent Service, but could not authorize. Make sure you are an administrator on 'IPADDRESS'
Error: The remote server returned an error: (401) Unauthorized


Now as I mentioned, these servers are not on the domain and therefore I can't use domain admin credentials. How can I give permission to either push/pull and migrate to IIS 8.5?

Web Deploy: WMSVC hang with dbFullSql

$
0
0

On a newly installed server we have installed webdeploy 3.6 and started to deploy our web application with the dbFullSql provider.

The deployment package consists of a ASP.NET Web Application and a SQL file to be deployed with the dbFullSql provider. It appears that the web management service goes into an endless loop and starts eating memory when the deployment occurs and it never ends.

 Interestingly this only occurs after access is granted to the database: If I disallow the credentials for connection to the database this is reflected as a failure in the web deployment. However, following the happy path results in the situation above.

Does anyone know how to resolve this situation?

How do I deploy MSBUILD generated web packages?

$
0
0

I'm trying to setup a build that deploy our applications out of team services (VSO).

So far I have managed to setup the build to create my packages using http://www.asp.net/web-forms/overview/deployment/web-deployment-in-the-enterprise/building-and-packaging-web-application-projects

In Team Services I have added the args "/p:DeployOnBuild=true;PublishProfile=Test;DeployTarget=package" and have ensured that from the page above I configured my test publish profile correctly as I can do a one click deploy from VS.

At this point running a build from Team Services compiles all my code and generates the appropiate packages.

I then wrote a simple console app to crawl the compiled code and look for .cmd files in package folders to execute and having found them I am trying to execute the packages as per the instructions on http://www.asp.net/web-forms/overview/deployment/web-deployment-in-the-enterprise/deploying-web-packages

The instructions clearly show ...

[project name].deploy.cmd [/T | /Y][/M:<computer name>][/A:<Basic| NTLM>][/U:<user name>][/P:<password>][/L][/G:<true|false>][AdditionalMSDeploy.exe flags]

.. so, no problem I thought what i'll do is for each commmand file my console app finds I will give the command params like this ...

myproj.deploy.cmd /Y /M:test.foo.com /A:basic /U:<my user> /P:<my pass>

.. as it happens at this point in time the build agent happens to be on the same box as the deployment service so I could probably use NTLM but that doesn't work either however in the future I want to separate the two and the servers in question may not live on the same domain so I would like to pass over the user name and password like I am here.

At this point I get the problem shown here ...

https://forums.iis.net/t/1173147.aspx

I'd like to know what magic I need to perform in order to get the msbuild generated packages for my app to work bearing in mind this already works from VS using one click publishing I think it's reasonable to assume I have gotten all the settings right in the publish profile and the deployment service setup right on the server. 

So what am I doing wrong trying to execute the packages from a command prompt / build agent?

Any help would be greatly appreciated.


IIS 7 to 8.5. .Net version issues

$
0
0

Hello.

I have installed the Web Deployment tool on a old 32  server running IIS 7 and a new server running IIS 8.5. Both are 64 bit. I have updated the msdeploy.exe.config file to be the same in the multiple versions of the tool I have found in Program Files and Program Files (86).

<configuration>
<startup useLegacyV2RuntimeActivationPolicy="true" >
<supportedRuntime version="v2.0.50727" />
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0" />
</startup>
</configuration>

I create the file on the old server, FTP it to the new server and run Web Deploy from the IIS gui but whatever I do I can't get rid of the .Net incompatibility error below. I have rebooted both machines and also run this command on the old server:

  • net stop msdepsvc & net start msdepsvc

And these commands on the new server

  • net stop msdepsvc & net start msdepsvc
  • net stop wmsvc & net start wmsvc

But to no avail. Any help to sort this out would be appreciated.

Web Deploy .Net error

Thanks.

Deploy everything in the bin directory to the root

$
0
0

I have a special use case. I have a Visual Studio project that is a plugin. When I right-click on the project and publish, all the files are deployed to the folder I wanted, but nested inside a bin directory. However, the application I am using wants the plugin files to not be in a bin file.

Site: Default Website\Plugin\MyPlugin

Default Website\PluginMyPlugin\Bin\my.dll
Default Website\PluginMyPlugin\Bin\dependency.dll

I need the files deployed like this.

Default Website\PluginMyPlugin\my.dll
Default Website\PluginMyPlugin\dependency.dll

I have been searching the web for some time trying to figure out how to deploy all the files in the bin directory but not put them in the bin directory.

Any ideas?

web deploy error message

$
0
0

In a vb.net 2010 web form application, I am getting the following error message when I deploy the code to a test app server.

C:\Program Files (x86)\MSBuild\Microsoft\WebDeployment\v10.0\Microsoft.WebDeployment.targets(1045,7): error MSB3073: The command "if not exist "\\c701-ws-wde-001\AL\" md "\\c701-ws-wde-001\AL\"" exited with code 1.
========== Rebuild All: 1 succeeded, 1 failed, 0 skipped ==========

When I run the code in visual studio 2010, it works fine.

Does the location "\\c701-ws-wde-001\AL\" need update permissions set? If so, how do you change permissions on this location?

I looked on the internet and I cannot find this error message.

When I comment out some javascript alert message, the code deploys to the test app server correctly.

Thus can you tell me what I can do to get the javascript alert message to work in the web deploy? Are there some web deploy properties that need to be set.

Are there compile options I can look at to try to figure out what is causing the problem?

Thus can you tell or show me what I can do to solve this problem?

some .asax .svc files become empty after deploy

$
0
0

We use msdeploy V3  to push our services(about 10 services) to AWS EC2.

Here is step in script:

1.Create instance in AWS.

2.Deploy all services to the instance created in step 1 one by one.

3.Terminate the instance created in step 1.

4.Snap a new image based on the instance terminated in step 3.

5.Launch instances based on the new image snapped in step 4.

It's strange that after deploy (step 2), the Global.asax and *.svc files in the last service become empty.

I checked the source files in PackageTmp, they are not empty.

Does anyone have idea about this?

or does msdeploy have CRC/MD5 check option?

Thank you.

Mikitty

Web deploy delete existing site in export

$
0
0

Hi guys;

I try ti migrate from IIS 7.5 to IIS 8.5, i installed Web deploy 3.5 and i have this command for export:

msdeploy -verb:sync -source:webserver,machineconfig32.netfxversion=2,machineconfig64.netfxversion=2,

rootwebconfig32.netfxversion=2,rootwebconfig64.netfxversion=2,includeAcls=true  -dest:package=D:\sites\server1.zip,encryptPassword=Password123

and for import:

C:\Program Files\IIS\Microsoft Web Deploy V3>msdeploy -verb:sync -dest:webserver,machineconfig32.net
fxversion=2,machineconfig64.netfxversion=2,rootwebconfig32.netfxversion=2,rootwebconfig64.netfxversi
on=2 -source:package=D:\sites\server1.zip,encryptPassword=Password123 

My problem is when I import the sites in the target server, all of my old sites and their directories are deleted. Can anyone help if a parameter was added in my command lines to block or skip it ??

thanks

Need help using msdeploy with gMSA, without having to edit the registry

$
0
0

I have a TeamCIty server I wish to use with msdeploy.  I have IIS 7.5 on server 2012, with the Web Management Service role enabled. The server has no access to the internet, but is on the LAN, so I used WebPI and did an offline install of WHP_Recommended, the "Recommended Server Configuration for Web Hosting Providers" package; comes with msdeploy 3.5.  The server has 3 drives, C is for the system, D is for software installs and E is for data, as such I have inetpub on E, TeamCity's installed on D, with it's data directory on E.  So I have a gMSA, let's say account$. I have given non-adminWeb Deploy Publishing rights and website IIS Manager permissions to some domain users, as well as making sure the handler and management services are running, but when they try to run msdeploy from a remote workstation they keep getting unauthorized. I am an admin on the server, and it works for me, but the idea is to give non-admin publishing rights to others. I gave them permissions to the folders themselves and still nothing. I finally opted to add them to the Admin Group. It worked then. For obvious reasons, this is not the way we want it to go.  I'm not sure what I am doing wrong, what else can I do? Does it have anything to do with the fact that installs are all over the place? One such example is:

msdeploy.exe /verb:getsysteminfo /source:webserver,computerName="https://server:8172/msdeploy.axd?site=SiteName",username=domain\username,password=pass123,authType=basic -allowUntrusted=true

Like I said, works for me, an admin, but despite all the rights I've given other users, it still won't let them access it.  Any help is greatly appreciated.

UPDATE:

I edited my question as I found the solution in a an old blog from 2011, that led to an MSDN page:

"You can optionally enable users to authenticate with the Web Management Service using NTLM. To do this, update the registry on the server by adding a DWORD key named "WindowsAuthenticationEnabled" under HKEY_LOCAL_MACHINE\Software\Microsoft\WebManagement\Server, and set it to 1. If the Web Management Service is already started, the setting will take effect after the service is restarted."

The problem is that I am making a registry change.  I try to avoid regedit if at all possible.  There is a "msdeploy.exe.config" file in "C:\Program Files\IIS\Microsoft Web Deploy V3".  Is this something that could be edited to enable NTLM authentication?  The example file provided with the install does not give some clarity on this topic.

Migrating only one website

$
0
0

We have a 2003 web server with several websites and I plan on migrating all of them to 2012 R2. I plan on using Web Deploy. For testing purposes, I would like to migrate just one site to and see how it works. I've been searching throughout this site and others, trying to find the correct command to use for just one site. 


WMSVC logs have the wrong timestamp...need help updating

$
0
0

The log files in C:\inetpub\logs\wmsvc\W3SVC1 has the wrong timestamps.  They are about 8 hours off.  I can just subtract time when looking for stuff, but for production use this seems not proper.  I cannot seem to find anywhere to change this. I tried googling it but because the majority of the terms used in a search are common, I'm getting a bunch of useless stuff. 

Create top level IIS web site using MSDeploy

$
0
0

Hi All, 

I want to create a IIS web site using MSDeploy.exe, something like below:

Sites

         |--> Mysite

I use cmd file which is generated by Visual Studio publish --> Web deploy package option.

I get message like 

SetParameters from:
"C:\Users\naik\Mysite.SetParameters.xml"
You can change IIS Application Name, Physical path, connectionString
or other deploy parameters in the above file.
-------------------------------------------------------
Start executing msdeploy.exe
-------------------------------------------------------
"C:\Program Files (x86)\IIS\Microsoft Web Deploy V3\msdeploy.exe" -source:package='C:\Users\naik\Mysite.zip' -dest:auto,includeAcls="False" -verb:sync -disableLink:AppPoolExtension -disableLink:ContentExtension -disableLink:CertificateExtension -setParamFile:"C:\Users\naik\Mysite.SetParameters.xml"
Info: Adding sitemanifest (sitemanifest).
Info: Creating application (Mysite)
Info: Adding virtual path (Mysite)
Error Code: ERROR_SITE_DOES_NOT_EXIST
More Information: Site 'Mysite' does not exist. Learn more at: http://go.microsoft.com/fwlink/?LinkId=221672#ERROR_SITE_DOES_NOT_EXIST.
Error count: 1.

If I try to create sub-site it works. 

Can  anybody please confirm if MSDeploy.exe can be used to create top-level site? Is there any way to create top level site using MSDeploy.exe?

Regards,

RK

ERROR_FILE_IN_USE even with -enableRule:AppOffline

$
0
0

Started with update to net core 1.1.0

Main project dll (aka Projectname.dll) is permanently locked so publish fails to update it.

Executing command ["C:\Program Files (x86)\IIS\Microsoft Web Deploy V3\msdeploy.exe" -source:manifest='c:\temp\PublishTemp\obj\Dispatcher103\SourceManifest.xml' -dest:manifest='c:\temp\PublishTemp\obj\Dispatcher103\DestinationManifest.xml',ComputerName='https://SOMEADDRESS:8172/msdeploy.axd?site=SOMESITE',UserName='SOMEHOST\Administrator',Password='{PASSWORD-REMOVED-FROM-LOG}',IncludeAcls='False',AuthType='Basic' -verb:sync -enablerule:AppOffline -enableRule:DoNotDeleteRule -retryAttempts:20 -allowUntrusted]

Severity    Code    Description    Project    File    Line    Suppression State
Error        Error Code: ERROR_FILE_IN_USE    Dispatcher        0    
Error        Error count: 1.    Dispatcher        0    
Error        More Information: Web Deploy cannot modify the file 'Dispatcher.dll' on the destination because it is locked by an external process.  In order to allow the publish operation to succeed, you may need to either restart your application to release the lock, or use the AppOffline rule handler for .Net applications on your next publish attempt.  Learn more at: http://go.microsoft.com/fwlink/?LinkId=221672#ERROR_FILE_IN_USE.    Dispatcher        0    

No "Import Web Application" option with IIS8.5 and Web Deploy 3.6?

$
0
0

I can't find any "Import Web Application" option in IIS 8.5 (Windows 2012 R2) with Web Deploy 3.6 installed.  I do have an option to "Install Application from Gallery", but that brings up WPI.  Is it no longer an option in 8.5?  Should I install an earlier version of Web Deploy (3.5?)?  Is there something else going on?

MSDeploy ERROR_USER_NOT_AUTHORIZED_FOR_DEPLOYMENTPROVIDER error help

$
0
0

I'm using TeamCity for deployment.  Teamcity uses a gMSA for the deploys.  I would run the following on my pc to test msdeploy was working...

"C:\Program Files\IIS\Microsoft Web Deploy V3\msdeploy.exe" -verb:getsysteminfo -source:webServer,computerName=https://enwebt1:8172/MsDeploy.axd?site=Membership,authType=NTLM -AllowUntrusted"

I made the changes in regedit to allow windows authentication for msdeploy.  On my pc, it runs fine.  running the same line via TeamCity, where it passes the gMSA account, not mine, it fails with the error.  The gMSA is an admin on the server, so management service delegation should not be an issue, since the option to allow admins to bypass rules is checked.  If I use:

""C:\Program Files\IIS\Microsoft Web Deploy V3\msdeploy.exe" -verb:getsysteminfo -source:webServer,computerName=https://enwebt1:8172/MsDeploy.axd?site=Membership,authType=Basic,userName=<me>,password=<mypassword> -AllowUntrusted"

That also works.  The main issue is that it was working, but someone made some changes that seems to have made it go kaput.  I have some of the backups for the configs that IIS automatically makes, C:\inetpub\History, but transferring the contents over to C:\Windows\System32\inetsrv, does nothing.  I don't know if it is an issue with the services, Web Deployment Agent was running as Network Service and wmsc was running as Local Service. I played around with that, added IIS Manager Permissions, Publishing permissions, but still the same error:

<failedRequest url="https://SERVERNAME:8172/MsDeploy.axd?site=Membership"
               siteId="1"
               appPoolId="WMSvcAppPool"
               processId="6852"
               verb="POST"
               remoteUserName="DOMAIN\GMSA$"
               userName="DOMAIN\GMSA$"
               tokenUserName="DOMAIN\GMSA$"
               authenticationType="NTLM"
               activityId="{00000000-0000-0000-8600-0080000000CC}"
               failureReason="STATUS_CODE"
               statusCode="500"
               triggerStatusCode="500"
               timeTaken="78"
               xmlns:freb="http://schemas.microsoft.com/win/2006/06/iis/freb"
               >

....

<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event"><System><Provider Name="ASPNET" Guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"/><EventID>0</EventID><Version>0</Version><Level>2</Level><Opcode>62</Opcode><Keywords>0x2</Keywords><TimeCreated SystemTime="2016-11-30T16:25:32.465Z"/><Correlation ActivityID="{00000000-0000-0000-8600-0080000000CC}"/><Execution ProcessID="6852" ThreadID="4432"/><Computer>SERVERNAME</Computer></System><EventData><Data Name="ContextId">{00000000-0000-0000-8600-0080000000CC}</Data><Data Name="Uri">/MsDeploy.axd</Data><Data Name="eventData">User: Client IP: ::1 Content-Type: Version: 9.0.0.0 MSDeploy.VersionMin: 7.1.600.0 MSDeploy.VersionMax: 9.0.1764.0 MSDeploy.Method: GetPackage MSDeploy.RequestId: 2eac9ed6-b36e-475a-8c5b-0f8c67146a96 MSDeploy.RequestCulture: en-US MSDeploy.RequestUICulture: en-US ServerVersion: 9.0.1764.0 Skip: objectName=&quot;^configProtectedData$&quot; Provider: webServer, Path: A tracing deployment agent exception occurred that was propagated to the client. Request ID &apos;2eac9ed6-b36e-475a-8c5b-0f8c67146a96&apos;. Request Timestamp: &apos;11/30/2016 11:25:32 AM&apos;. Error Details: ERROR_USER_NOT_AUTHORIZED_FOR_DEPLOYMENTPROVIDER Microsoft.Web.Deployment.DeploymentDetailedClientServerException: Could not complete an operation with the specified provider (&quot;webServer&quot;) when connecting using the Web Management Service. This can occur if the server administrator has not authorized the user for this operation. webServer http://go.microsoft.com/fwlink/?LinkId=178034 Learn more at: http://go.microsoft.com/fwlink/?LinkId=221672#ERROR_USER_NOT_AUTHORIZED_FOR_DEPLOYMENTPROVIDER. ---&gt; Microsoft.Web.Deployment.DeploymentException: Object of type &apos;webServer&apos; and path &apos;&apos; cannot be created. --- End of inner exception stack trace --- at Microsoft.Web.Deployment.DeploymentManager.CreateObjectPrivate(DeploymentProviderContext providerContext, DeploymentBaseOptions baseOptions, DeploymentObject sourceObject, String serverVersion) at Microsoft.Web.Deployment.DeploymentManager.CreateObject(DeploymentProviderOptions providerOptions, DeploymentBaseOptions baseOptions) at Microsoft.Web.Deployment.DeploymentAgent.GetTargetObject(DeploymentAgentWorkerRequest workerRequest, DeploymentObject sourceObject) at Microsoft.Web.Deployment.DeploymentAgent.HandleGetPackage(DeploymentAgentWorkerRequest workerRequest) at Microsoft.Web.Deployment.DeploymentAgent.HandleRequestWorker(DeploymentAgentAsyncData asyncData) at Microsoft.Web.Deployment.DeploymentAgent.HandleRequest(DeploymentAgentAsyncData asyncData)</Data></EventData><RenderingInfo Culture="en-US"><Opcode>AspNetModuleDiagErrorEvent</Opcode><Keywords><Keyword>Module</Keyword></Keywords></RenderingInfo><ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace"><EventGuid>{06A01367-79D3-4594-8EB3-C721603C4679}</EventGuid></ExtendedTracingInfo></Event>

Viewing all 565 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>