Get-SmaCertificate
获取证书。
语法
Get-SmaCertificate
[-Name <String[]>]
-WebServiceEndpoint <String>
[-Port <Int32>]
[-AuthenticationType <String>]
[-Credential <PSCredential>]
[<CommonParameters>]
说明
Get-SmaCertificate cmdlet 获取一个或多个 Service Management Automation (SMA) 证书。
示例
示例 1:获取证书
PS C:\> Get-SmaCertificate -WebServiceEndpoint "https://contoso.com/app01" -Name "MyCertificate"
此命令获取名为 MyCertificate 的证书,该证书位于名为 contoso.com/app01 的 Web 服务终结点。
参数
-AuthenticationType
指定身份验证类型。 有效值为:
- 基本
- 窗户
默认值为 Windows。 如果使用基本身份验证,则必须使用 Credential 参数提供凭据。
类型: | String |
接受的值: | Basic, Windows |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-Credential
将用户凭据指定为 PSCredential 对象,用于连接到 Service Management Automation Web 服务。
若要获取凭据对象,请使用 Get-Credential cmdlet。
有关详细信息,请键入 Get-Help Get-Credential
。
类型: | PSCredential |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-Name
指定证书名称数组。
类型: | String[] |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-Port
指定 SMA Web 服务的端口号。
类型: | Int32 |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-WebServiceEndpoint
将终结点指定为 SMA Web 服务的 URL。 必须包括协议,例如,http:// 或 https://。
类型: | String |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |