你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
New-AzAutomationCertificate
创建自动化证书。
语法
New-AzAutomationCertificate
[-Name] <String>
[-Description <String>]
[-Password <SecureString>]
[-Path] <String>
[-Exportable]
[-ResourceGroupName] <String>
[-AutomationAccountName] <String>
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
说明
New-AzAutomationCertificate cmdlet 在 Azure 自动化 中创建证书。 提供要上传的证书文件的路径。
示例
示例 1:创建新证书
$Password = ConvertTo-SecureString -String "****" -AsPlainText -Force
New-AzAutomationCertificate -AutomationAccountName "Contoso17" -Name "ContosoCertificate" -Path "./cert.pfx" -Password $Password -ResourceGroupName "ResourceGroup01"
第一个命令使用 ConvertTo-SecureString cmdlet 将纯文本密码转换为安全字符串。 该命令将该对象存储在$Password变量中。 第二个命令创建名为 ContosoCertificate 的证书。 该命令使用存储在$Password中的密码。 该命令指定其上传的文件的帐户名和路径。
参数
-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 |
-Exportable
指定是否可以导出证书。
类型: | SwitchParameter |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | True |
接受通配符: | False |
-Name
指定证书的名称。
类型: | String |
Position: | 2 |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-Password
指定证书文件的密码。
类型: | SecureString |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | True |
接受通配符: | False |
-Path
指定此 cmdlet 上传的脚本文件的路径。 该文件可以是.cer或 .pfx 文件。
类型: | String |
Position: | 2 |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-ResourceGroupName
指定此 cmdlet 为其创建证书的资源组的名称。
类型: | String |
Position: | 0 |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
输入
输出
备注
此命令应在你是管理员的计算机以及提升的 PowerShell 会话中运行;在上传证书之前,此 cmdlet 使用本地 X.509 存储来检索指纹和密钥,如果此 cmdlet 在提升的 PowerShell 会话外部运行,则会收到“拒绝访问”错误。