I'm trying to use ProjectName.deploy.cmd to publish my website and here's my command:
MyProject.deploy.cmd /T /M:https://mydomain.com:8172/MsDeploy.axd?site=my_website_name /A:Basic /U:username /P:password "-skip:objectname='filePath',absolutepath='app_offline.htm' -allowUntrusted=true"
This should work I suppose but here's what I get when deploy.cmd runs:
"C:\Program Files\IIS\Microsoft Web Deploy V3\msdeploy.exe" -source:package='C:\...\myproject.zip' -dest:auto,computerName="https://mydomain.com:8172/MsDeploy.axd?site",userName=....."
Notice ?site" -> it must be ?site=my_website_name !!!!!!!!!! Obviously, I get ERROR_USER_ANAUTHORIZED !!!
Am I missing something here?