Remove-CMComputerAssociation
从 Configuration Manager 中删除计算机关联。
语法
Remove-CMComputerAssociation
-DestinationComputer <String>
[-Force]
-SourceComputer <String>
[-DisableWildcardHandling]
[-ForceWildcardHandling]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
Remove-CMComputerAssociation
[-Force]
-InputObject <IResultObject>
[-DisableWildcardHandling]
[-ForceWildcardHandling]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
Remove-CMComputerAssociation
[-Force]
-MigrationId <String>
[-DisableWildcardHandling]
[-ForceWildcardHandling]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
说明
Remove-CMComputerAssociation cmdlet 从 Configuration Manager 中删除计算机关联。 可以通过在关联中指定两台计算机或指定关联 ID 来指定要删除的关联,也可以使用 Get-CMComputerAssociation cmdlet 获取要删除的关联。
注意
从 Configuration Manager 站点驱动器运行 Configuration Manager cmdlet,例如 PS XYZ:\>
。 有关详细信息,请参阅 入门。
示例
示例 1:使用计算机名称删除关联
PS XYZ:\> Remove-CMComputerAssociation -DestinationComputer "West155" -SourceComputer "West073"
此命令删除名为 West155 和 West073 的计算机之间的计算机关联。
示例 2:使用 ID 删除关联
PS XYZ:\> Remove-CMComputerAssociation -MigrationId "MID1207" -Force
此命令将删除 ID MID1207的计算机关联。 此命令使用 Force 参数,因此 cmdlet 在删除关联之前不会提示你进行确认。
示例 3:使用变量删除关联
PS XYZ:\> $CMCA = Get-CMComputerAssociation -MigrationId "MID1207"
PS XYZ:\> Remove-CMComputerAssociation -InputObject $CMCA -Force
第一个命令获取 ID MID1207的计算机关联,并将其保存在 $CMCA 变量中。
第二个命令删除保存在 $CMCA 变量中的关联。 此命令使用 Force 参数,因此 cmdlet 在删除关联之前不会提示你进行确认。
参数
-Confirm
提示你在运行 cmdlet 之前进行确认。
类型: | SwitchParameter |
别名: | cf |
Position: | Named |
默认值: | False |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-DestinationComputer
指定目标计算机的名称。
类型: | String |
别名: | RestoreName |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-DisableWildcardHandling
此参数将通配符视为文本字符值。 不能将其与 ForceWildcardHandling 组合使用。
类型: | SwitchParameter |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-Force
强制运行命令而不要求用户确认。
类型: | SwitchParameter |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-ForceWildcardHandling
此参数处理通配符,并可能导致意外行为, (不建议) 。 不能将其与 DisableWildcardHandling 组合使用。
类型: | SwitchParameter |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-InputObject
指定计算机关联对象。 若要获取计算机关联对象,请使用 Get-CMComputerAssociation cmdlet。
类型: | IResultObject |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-MigrationId
指定计算机关联的 ID。
类型: | String |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-SourceComputer
指定源计算机的名称。
类型: | String |
别名: | SourceName |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-WhatIf
显示在 cmdlet 运行时发生的情况。 cmdlet 不会运行。
类型: | SwitchParameter |
别名: | wi |
Position: | Named |
默认值: | False |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
输入
Microsoft.ConfigurationManagement.ManagementProvider.IResultObject
输出
System.Object