Deploying web packages with MSDEPLOY
I've built my packages and read through this docs @ http://www.asp.net/web-forms/overview/deployment/web-deployment-in-the-enterprise/deploying-web-packages And it seems to suggest that the problem should be relatively simple from here as 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>] [Additional MSDeploy.exe flags] .. so, no problem I thought I will give the command params like this ... myproj.deploy.cmd /Y /M:test.foo.com /A:basic /U:<my user> /P:<my pass> ... where the