共用方式為


New-AzAutomationCredential

建立自動化認證。

語法

New-AzAutomationCredential
   [-Name] <String>
   [-Description <String>]
   [-Value] <PSCredential>
   [-ResourceGroupName] <String>
   [-AutomationAccountName] <String>
   [-DefaultProfile <IAzureContextContainer>]
   [<CommonParameters>]

Description

New-AzAutomationCredential Cmdlet 會在 Azure 自動化中建立認證作為 PSCredential 物件。

範例

範例 1:建立認證

$User = "Contoso\PFuller"
$Password = ConvertTo-SecureString -String "****" -AsPlainText -Force
$Credential = New-Object -TypeName System.Management.Automation.PSCredential -ArgumentList $User, $Password
New-AzAutomationCredential -AutomationAccountName "Contoso17" -Name "ContosoCredential" -Value $Credential -ResourceGroupName "ResourceGroup01"

第一個命令會將用戶名稱指派給$User變數。 第二個命令會使用 ConvertTo-SecureString Cmdlet,將純文字密碼轉換成安全字串。 命令會將該物件儲存在 $Password 變數中。 第三個命令會根據$User和$Password建立認證,然後將它儲存在$Credential變數中。 最後一個命令會建立名為 ContosoCredential 的自動化認證,該認證會使用 $Credential。

參數

-AutomationAccountName

指定此 Cmdlet 儲存認證的自動化帳戶名稱。

類型:String
Position:1
預設值:None
必要:True
接受管線輸入:True
接受萬用字元:False

-DefaultProfile

用於與 azure 通訊的認證、帳戶、租用戶和訂用帳戶

類型:IAzureContextContainer
別名:AzContext, AzureRmContext, AzureCredential
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-Description

指定認證的描述。

類型:String
Position:Named
預設值:None
必要:False
接受管線輸入:True
接受萬用字元:False

-Name

指定認證的名稱。

類型:String
Position:2
預設值:None
必要:True
接受管線輸入:True
接受萬用字元:False

-ResourceGroupName

指定此 Cmdlet 建立認證之資源群組的描述。

類型:String
Position:0
預設值:None
必要:True
接受管線輸入:True
接受萬用字元:False

-Value

將認證指定為 PSCredential 物件。

類型:PSCredential
Position:3
預設值:None
必要:True
接受管線輸入:True
接受萬用字元:False

輸入

String

PSCredential

輸出

CredentialInfo