ARMまたはクラシックモードでvmを作成する私の現在のスクリプトは機能しません。 New-AzureVM:ResourceNotFound:ホストされているサービスが存在しません。azure政府のサブスクリプションでvmを作成するpowershellスクリプト
誰かがAzureGovernmentサブスクリプションで新しいVMを作成するためにpowershellスクリプトを共有していただけますか? 私のスクリプト:
Set-AzureEnvironment "AzureGovernment"
New-AzureVMConfig -Name "test1" -InstanceSize "Standard_D14" `
-ImageName "myimage" |
Add-AzureProvisioningConfig –Linux `
–LinuxUser "myuser" -Password "mypwd" |
New-AzureVM –ServiceName "myservice"
私はAzureのポータルを使用して新しいVMを作成しますが、
設定前にAdd-AzureEnvironmentを実行しましたか? –
yes:add-AzureEnvironment -name "AzureGovernment" -PublishSettingsFileUrl "https://manage.windowsazure.us/publishsettings/index?client=xplat" -serviceendpoint "https:// management。これでエンドポイントが設定されます。 – SBC
私が気づいたのは、AzureVMを入手すると、私は他のサブスクリプションに関連するサービスを取得することに気づきました。どうすればリセットできますか? select-AzureSubscriptionが機能しません – SBC