Remove-SCCapabilityProfile
从 VMM 中删除功能配置文件。
语法
Remove-SCCapabilityProfile
[-CapabilityProfile] <CapabilityProfile>
[-RunAsynchronously]
[-PROTipID <Guid>]
[-JobVariable <String>]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
说明
Remove-SCCapabilityProfile cmdlet 从 Virtual Machine Manager(VMM)中删除功能配置文件。
示例
示例 1:删除特定功能配置文件
PS C:\> $CapabilityProfile = Get-SCCapabilityProfile -Name "CapabilityProf01"
PS C:\> Remove-SCCapabilityProfile -CapabilityProfile $CapabilityProfile -Confirm
第一个命令获取名为 CapabilityProf01 的功能配置文件对象,并将对象存储在$CapabilityProfile变量中。
第二个命令删除存储在 $CapabilityProfile(CapabilityProf01)中的功能配置文件,提示你在执行操作之前进行确认。
参数
-CapabilityProfile
指定功能配置文件对象。
类型: | CapabilityProfile |
Position: | 0 |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-Confirm
在运行 cmdlet 之前,提示你进行确认。
类型: | SwitchParameter |
别名: | cf |
Position: | Named |
默认值: | False |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-JobVariable
指定在此参数命名的变量中跟踪和存储作业进度。
类型: | String |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-PROTipID
指定触发此操作的性能和资源优化提示(PRO 提示)的 ID。 此参数允许你审核 PRO 提示。
类型: | Guid |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-RunAsynchronously
指示作业以异步方式运行,以便控件立即返回到命令行界面。
类型: | SwitchParameter |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-WhatIf
显示 cmdlet 运行时会发生什么情况。 cmdlet 未运行。
类型: | SwitchParameter |
别名: | wi |
Position: | Named |
默认值: | False |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
备注
- 需要 VMM 功能配置文件对象,可以使用 Get-SCCapabilityProfile cmdlet 进行检索。