gpt4 book ai didi

powershell - 自动登录Azure powershell

转载 作者:行者123 更新时间:2023-12-04 21:52:23 24 4
gpt4 key购买 nike

每次打开 azure powershell windows 是否可以自动登录?

即每次我打开 Azure 命令窗口时,下面给出的命令都应该运行。

Get-AzurePublishSettingsFile(本地计算机中的路径)

甚至添加-AzureAccount

最佳答案

你确实可以做到。请遵循以下流程:

打开位于“C:\Program Files (x86)\Microsoft SDKs\Azure\PowerShell\ServiceManagement\Azure\Services\ShortcutStartup.ps1”(对于 64 位操作系统)或“C:\Program Files\”的 Azure PowerShell 初始化文件Microsoft SDKs\Azure\PowerShell\ServiceManagement\Azure\Services\ShortcutStartup.ps1”(适用于 32 位操作系统)。

在语句后添加以下代码$VerbosePreference="Continue"

$username = "<username>"
$password = "<password>"
$secpasswd = ConvertTo-SecureString $password -AsPlainText -Force
$cred = New-Object System.Management.Automation.PSCredential ($userName, $secpasswd)
Add-AzureAccount -Credential $cred

这应该为您自动登录

@Update:对于 Azure ARM 模式,命令为 Login-AzureRMAccount -Credential $cred。但这可能不适用于 Microsoft 帐户。

关于powershell - 自动登录Azure powershell,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23267516/

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