Remove-SmaRunbook
从 SMA 中删除 Runbook。
语法
Remove-SmaRunbook
[-Name <String>]
-WebServiceEndpoint <String>
[-Port <Int32>]
[-AuthenticationType <String>]
[-Credential <PSCredential>]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
Remove-SmaRunbook
[-Id <String>]
-WebServiceEndpoint <String>
[-Port <Int32>]
[-AuthenticationType <String>]
[-Credential <PSCredential>]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
说明
Remove-SmaRunbook cmdlet 从 Service Management Automation (SMA) 中删除 Runbook。
示例
示例 1:删除 Runbook
PS C:\> Remove-SmaRunbook -WebServiceEndpoint https://localhost -Name "MyRunbook"
此命令删除名为 MyRunbook 的 Runbook。
参数
-AuthenticationType
指定身份验证类型。 有效值为:
- 基本
- 窗户
此参数的默认值为 Windows。 如果使用基本身份验证,则必须使用 Credential 参数提供凭据。
类型: | String |
接受的值: | Basic, Windows |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-Confirm
在运行 cmdlet 之前,提示你进行确认。
类型: | SwitchParameter |
别名: | cf |
Position: | Named |
默认值: | False |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-Credential
为连接到 SMA Web 服务指定 PSCredential 对象。
若要获取凭据对象,请使用 Get-Credential cmdlet。
有关详细信息,请键入 Get-Help Get-Credential
。
类型: | PSCredential |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-Id
指定 Runbook 的 ID。
类型: | String |
别名: | RunbookId |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | True |
接受通配符: | False |
-Name
指定 Runbook 的名称。
类型: | String |
别名: | RunbookName |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | True |
接受通配符: | False |
-Port
指定 SMA Web 服务的端口号。
类型: | Int32 |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-WebServiceEndpoint
将终结点指定为 SMA Web 服务的 URL。 必须包括协议,例如 http:// 或 https://。
类型: | String |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-WhatIf
显示 cmdlet 运行时会发生什么情况。 cmdlet 未运行。
类型: | SwitchParameter |
别名: | wi |
Position: | Named |
默认值: | False |
必需: | False |
接受管道输入: | False |
接受通配符: | False |