Questions tagged [microsoft-web-deploy]

Microsoft Web Deploy is a tool to simplify the migration, management, and deployment of IIS Web servers, applications, and sites. Administrators can use command-line scripting with Web Deploy to synchronize IIS 6.0 and IIS 7.0 servers or to migrate an IIS 6.0 server to IIS 7.0.

Microsoft Web Deploy is a tool to simplify the migration, management, and deployment of IIS Web servers, applications, and sites. Administrators can use command-line scripting with Web Deploy to synchronize IIS 6.0 and IIS 7.0 servers or to migrate an IIS 6.0 server to IIS 7.0.

144 questions
7
votes
4 answers

MSBuild error MSB3086, with TeamCity

I am trying to build and deploy a .NET 4 project using MSBuild Web Deploy and TeamCity, I got this working fine (eventually) with an instance of TeamCity running on my local development machine, however when I tried to set up a fresh TeamCity…
Ben
  • 1,767
  • 16
  • 32
7
votes
3 answers

Web deploy error ERROR_DESTINATION_NOT_REACHABLE

I am trying to deploy my application using the following msdeploy command: MSDeploy.exe -source:contentPath="C:\Users\myUser\Documents\ui\dist"…
hakuna
  • 4,223
  • 8
  • 39
  • 68
7
votes
3 answers

MSDeploy throwing weird error: Stream data of xxxxx.dll is not yet available

I am deploying a number of .Net projects to different servers. To do this my team is using TFS to build, then from the build template calling a ps1 script that uses msdeploy to push to all the different servers. It's all very enterprisey and no, I…
6
votes
1 answer

Is it safe to rename the Default Web Site in IIS 7.5?

I am having a problem deploying to Default Web Site using web deploy. The problem is similar to this: MSDeploy batch file does not handle quotes anymore where web deploy is choking on deployment paths with spaces. The easiest way to solve it would…
JK.
  • 20,010
  • 29
  • 124
  • 204
6
votes
1 answer

Web Deploy to multiple servers at once from within Visual Studio 2010

What is the easiest way to deploy to multiple servers with as few clicks as possible from within Visual Studio? We are using web deploy, not FTP or file system if that is helpful.
CoreyH
  • 204
  • 6
  • 19
6
votes
3 answers

Always remove Angular dist folder contents with WebDeploy on Destination

We've got a single page application on Angular 5 with an ASP.NET backend, and when we compile it, the release contents for Angular are output to a folder "Project\dist". This works great on local dev machines, but all of the dist files are…
cvocvo
  • 1,425
  • 2
  • 21
  • 36
6
votes
1 answer

Web deploy from multiple computers

I work on a website on multiple computers, my work and my home pc. The source is maintained under a git repository. I use Web Deploy to publish the website to IIS on the public server. Everything works OK, I can publish from both computers and it…
Brendan
  • 3,197
  • 20
  • 24
6
votes
2 answers

Publish Wizard Errors in VS2010 and 2012

I've been using the Publish Wizard in VS2010 to deploy my MVC app and I've got no issues there but intermittently the publish will fail with the following error. Error 23 Web deployment task failed.(Could not complete the request to remote agent…
5
votes
2 answers

Create folder and set ACL with web deploy

How do I create a folder using microsoft web deploy? Also, when I have created that folder how do I set the ACL on it? Can I do so when publishing to file system using Visual Studio? Or do I have to publish to a server that has IIS Web Management…
Tomas Jansson
  • 20,796
  • 9
  • 68
  • 121
5
votes
1 answer

MSBUILD web deploy package does not include the project reference DLL's

When I try to create a package for web deploy using msbuild it only includes the projects dll. The package zip file or the temp directory does not include the referenced project's dlls. I've looked at this post and that is not my problem. I am…
Ben Anderson
  • 1,049
  • 2
  • 14
  • 34
5
votes
0 answers

How to create a deployment package with SQL scripts in IIS

Using IIS-10, Web Deploy v3.6, Windows 10. It is an ASP.NET Website (not application) using SQL Server 2014 for the back-end. I was able to successfully create and deploy the package, but without SQL scripts. Could not find any info on how to do…
Qwerty
  • 2,219
  • 9
  • 39
  • 92
5
votes
2 answers

How do I deploy a web deploy package to Azure Web Sites via command line?

What we do today Currently, we Web Deploy to Windows Azure Web Sites (WAWS) via MSBuild for our test environment using the following command MSBuild.exe /p:Configuration=Test /p:DeployOnBuild=true /p:PublishProfile=Test …
Allen Rice
  • 18,062
  • 13
  • 77
  • 111
5
votes
1 answer

Web deploy to IIS without Visual Studio

I have a IIS v7.5 as my web server. This web server hosts not only ASP.NET web application, but also for PHP web apps for my company apps. What I want is to support deployment using web deploy without Visual Studio (for supporting non ASP.NET…
iroel
  • 1,623
  • 1
  • 17
  • 25
5
votes
1 answer

Why does aspnet_compiler need write access to the Temporary ASP.NET Files folder on my build server?

We use a CI server (Jenkins) to compile an ASP.NET project and deploy to our web servers. I want to precompile the site before deployment to increase performance, so I've set the PrecompileBeforePublish property in the Publish Profile…
Brant Bobby
  • 14,107
  • 14
  • 75
  • 114
5
votes
1 answer

pass parameters to batch file in msdeploy runcommand

I am not able to get this to work call "%MSDeployPath%msdeploy" -verb:sync -source:runCommand='backup.bat param1' -dest:auto,computername=10.xx.xx.xx,username=xxx,password=yyy It gives me: Warning: 'backup.bat' is not recognized as an internal or…
Andrei N.
  • 2,957
  • 2
  • 31
  • 54
1
2
3
9 10