gpt4 book ai didi

powershell - 添加-AzureRmAccount : Sequence contains no elements

转载 作者:行者123 更新时间:2023-12-04 22:56:54 24 4
gpt4 key购买 nike

我正在尝试验证脚本以通过 PowerShell 连接到 Azure。

$username = "asdfasdf"
$password = "asdfasdf"
$secstr = New-Object -TypeName System.Security.SecureString
$password.ToCharArray() | ForEach-Object {$secstr.AppendChar($_)}
$cred = new-object -typename System.Management.Automation.PSCredential -argumentlist $username, $secstr
Add-AzureRmAccount -Credential $cred
Select-AzureRmSubscription -SubscriptionId asdfasdf

完整错误消息:

Add-AzureRmAccount : Sequence contains no elements
At C:\Users\Martin\Documents\Tasks\Azure Script ARM API Syntax Conversion\Connect Azure V1.ps1:6 char:1
+ Add-AzureRmAccount -Credential $cred
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : CloseError: (:) [Add-AzureRmAccount], AadAuthenticationFailedException
+ FullyQualifiedErrorId : Microsoft.Azure.Commands.Profile.AddAzureRMAccountCommand

我在这里看到了Login-AzureRmAccount can't login to Azure using PSCredential也许特殊字符可能会导致错误,但我尝试转义密码中的一个 ! 但没有成功。还有什么可能导致此问题?

最佳答案

这是 AD 限制,您无法使用 Microsoft Live 帐户以非交互方式登录 Azure。 我在实验室测试过,如果我的帐户是非 Microsoft 帐户,我可以登录 Azure .

enter image description here

关于powershell - 添加-AzureRmAccount : Sequence contains no elements,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41608217/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com