Gmail IDの個人用メールIDを使用して「無料試用」アカウントを作成しました。Add-AzureRmAccount:シーケンスに要素が含まれていません(Gmailアカウントでも機能しません)
Add-AzureRmAccount : Sequence contains no elements At line:1 char:1 + Add-AzureRmAccount -Credential $cred + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : CloseError: (:) [Add-AzureRmAccount], AadAuthenticationFailedException + FullyQualifiedErrorId : Microsoft.Azure.Commands.Profile.AddAzureRMAccountCommand
私が実行しているコードは
$username = "[email protected]"
$password = "something"
$secpass = $password | ConvertTo-SecureString -AsPlainText -Force
$cred = new-object -typename System.Management.Automation.PSCredential -argumentlist $username, $secpass
Add-AzureRmAccount -Credential $cred
があるが、このようにログインが動作すると想定されるためのアカウント/サブスクリプションの特定のタイプですです:私は、エラーを取得していますか?
感謝を! gmailアカウントを使用すると、Windows Live IDの資格情報としてカウントされます。 – datathief
はい、任意の電子メールアドレスを使用して、Windows Live ID afaikを作成することができます。 –
非インタラクティブなログインが許可されているアカウントの種類と作成方法を明記することもできます。 – datathief