Remove-SCVMXComputerConfiguration
從 VMM 移除 VMX 電腦設定物件。
語法
Remove-SCVMXComputerConfiguration
[-VMXComputerConfiguration] <VmxMachineConfiguration>
[-RunAsynchronously]
[-PROTipID <Guid>]
[-JobVariable <String>]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
Description
Remove-SCVMXComputerConfiguration Cmdlet 會從 Virtual Machine Manager (VMM) 資料庫移除一或多個 VMX 計算機設定物件。
此 Cmdlet 會在成功時傳回物件(屬性 MarkedForDeletion 設為 True),或在失敗時傳回錯誤訊息。
範例
範例 1:移除所有 VMX 計算機設定,而不需提示確認每個刪除
PS C:\> $VMXComputerConfigs = Get-SCVMXComputerConfiguration -VMMServer "VMMServer01.Contoso.com"
PS C:\> $VMXComputerConfigs | Remove-SCVMXComputerConfiguration
第一個命令會從 VMMServer01 上的 VMM 資料庫擷取所有 VMX 電腦設定物件,並將這些物件儲存在$VMXComputerConfigs物件陣列中。
第二個命令會將$VMXComputerConfigs中的每個對象傳遞至 remove-VMXComputerConfiguration
參數
-Confirm
在執行 Cmdlet 之前,提示您進行確認。
類型: | SwitchParameter |
別名: | cf |
Position: | Named |
預設值: | False |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-JobVariable
指定作業進度會追蹤並儲存在此參數所命名的變數中。
類型: | String |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-PROTipID
指定觸發此動作之效能和資源優化提示 (PRO 提示) 的識別碼。 此參數可讓您稽核 PRO 秘訣。
類型: | Guid |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-RunAsynchronously
表示作業會以異步方式執行,讓控件立即返回命令殼層。
類型: | SwitchParameter |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-VMXComputerConfiguration
指定 VMX 計算機組態物件。
類型: | VmxMachineConfiguration |
別名: | MachineConfig, VMXMachineConfig |
Position: | 0 |
預設值: | None |
必要: | True |
接受管線輸入: | True |
接受萬用字元: | False |
-WhatIf
顯示 Cmdlet 執行時會發生什麼事。 Cmdlet 未執行。
類型: | SwitchParameter |
別名: | wi |
Position: | Named |
預設值: | False |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
備註
- 需要 VMM VMX 計算機組態物件,可以使用 Get-SCVMXComputerConfiguration Cmdlet 來擷取。