I am trying to run the following command from Powershell:
msdeploy -verb:sync -source:archiveDir=c:\KitchenPC\Build -dest:appHostConfig="KitchenPC",computerName=https://192.168.0.3:8172/msdeploy.axd,authType=Basic,userName=someuser,password="secret" -allowUntrusted
docs say to simply replace : after each parameter = . So I tried this:
msdeploy -verb=sync -source=archiveDir=c:\KitchenPC\Build -dest=appHostConfig="KitchenPC",computerName=https://192.168.0.3:8172/msdeploy.axd,authType=Basic,userName=someuser,password="secret" -allowUntrusted
However, I get the error message:
Error: Unrecognized argument 'ComputerName = https://192.168.0.3: 8172 / msdeploy.axd. All arguments must begin with a "-". Number of errors: 1.
I checked the documents in the provider settings , however, they have no mention of their equivalent Powershell syntax.
source share