You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The deploy.ps1 script passes a "botAppPassword" value to Azure CLI during deployment. The auto-generated password can contain quote ', ampersand &, and other special characters. When these special characters are present, there are unexpected errors during deployment.
Some of the symptoms I saw included errors like (password fragement) is not recognized as an internal or external command, operable program or batch file. and The system cannot find the path specified.
The text was updated successfully, but these errors were encountered:
mcooley
changed the title
Deployment fails when the password contains a quote character
Deployment fails when the password contains a special character
Jun 18, 2021
@mcooley: I don't see possibility to generate secret key value with special characters quote ', and ampersand &.
It contains majorly following characters only: ., -, _, ~
Based on following reference, some special characters were removed. So, can you confirm if you are able to generate new secret value with quote and ampersand.
The deploy.ps1 script passes a "botAppPassword" value to Azure CLI during deployment. The auto-generated password can contain quote
'
, ampersand&
, and other special characters. When these special characters are present, there are unexpected errors during deployment.Some of the symptoms I saw included errors like
(password fragement) is not recognized as an internal or external command, operable program or batch file.
andThe system cannot find the path specified.
Azure CLI in PowerShell generally has issues quoting parameter values, as described here. That documentation mentions that one solution might be to format the parameters as JSON and use file input.
The text was updated successfully, but these errors were encountered: