我有以下代码
$Password = 'Test&&'
$securePassword = ConvertTo-SecureString $Password -AsPlainText -Force
$cred = New-Object System.Management.Automation.PSCredential($userName,$securePassword)
Add-AzureAccount -Credential $cred
如果我将密码设置为&
,则无法连接到我的Azure帐户。我不确定Convert-To是否正在治疗&任何特殊的角色。
在密码中设置%
等其他特殊字符对我来说很顺利。
我尝试在&
之前在我的密码中应用转义字符,但它没有用。
任何帮助都会受到高度赞赏。