I am having a problem when i need to use the ampersand for a password.
Following an example
Service.deploy.cmd /y /M:SERVER3670 /U:user-deploy-test /P:PassTe-&&&&Ld9
So, i got this error
&& was unexpected at this time.
I have also tried to use the escape ^, but did not work.
Do you have any suggestion for this case?
You can URI-escape characters for MSBuild. Try using %26 for each & character.
Tks, it worked
Most helpful comment
You can URI-escape characters for MSBuild. Try using
%26for each&character.