Remove-SCVirtualizationManager

Remove-SCVirtualizationManager

Removes a VMware vCenter Server from VMM.

構文

Parameter Set: Default
Remove-SCVirtualizationManager [-VirtualizationManager] <VirtualizationManager> [-JobVariable <String> ] [-PROTipID <Guid]> ] [-RunAsynchronously] [-Confirm] [-WhatIf] [ <CommonParameters>]

詳細説明

The Remove-SCVirtualizationManager cmdlet removes one or more VMware vCenter Server objects from Virtual Machine Manager (VMM). This cmdlet deletes the vCenter Server object from the VMM database and also removes all imported ESX host objects and virtual machine objects associated with the vCenter Server.

When you remove a VirtualCenter Server, the cmdlet does not make any changes within the vCenter Server and does not remove any hosts or virtual machines from the vCenter Server.

パラメーター

-JobVariable<String>

Specifies that job progress is tracked and stored in the variable named by this parameter.

エイリアス

none

必須?

false

位置は?

named

既定値

none

パイプライン入力を許可する

false

ワイルドカード文字を許可する

false

-PROTipID<Guid]>

Specifies the ID of the PRO tip that triggered this action. This allows for auditing of PRO tips.

エイリアス

none

必須?

false

位置は?

named

既定値

none

パイプライン入力を許可する

false

ワイルドカード文字を許可する

false

-RunAsynchronously

Indicates that the job runs asynchronously so that control returns to the command shell immediately.

エイリアス

none

必須?

false

位置は?

named

既定値

none

パイプライン入力を許可する

false

ワイルドカード文字を許可する

false

-VirtualizationManager<VirtualizationManager>

Specifies a virtualization manager object managed by VMM.

エイリアス

none

必須?

true

位置は?

1

既定値

none

パイプライン入力を許可する

True (ByValue)

ワイルドカード文字を許可する

false

-Confirm

コマンドレットを実行する前に、ユーザーに確認を求めます。

必須?

false

位置は?

named

既定値

false

パイプライン入力を許可する

false

ワイルドカード文字を許可する

false

-WhatIf

コマンドレットを実行するとどのような結果になるかを表示します。コマンドレットは実行されません。

必須?

false

位置は?

named

既定値

false

パイプライン入力を許可する

false

ワイルドカード文字を許可する

false

<CommonParameters>

このコマンドレットは次の共通パラメーターをサポートします。-Verbose、-Debug、-ErrorAction、-ErrorVariable、-OutBuffer、-OutVariable.詳細については、以下を参照してください。 about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216)。

入力

入力型は、コマンドレットにパイプできるオブジェクトの型です。

出力

出力型は、コマンドレットによって生成されるオブジェクトの型です。

  • This cmdlet requires a VMM virtualization manager object, which can be retrieved by using the Get-SCVirtualizationManager cmdlet.

Example Example 1: Remove a VMware vCenter Server from VMM.

The first command gets the virtualization manager object named VirtMgrServer01 from VMMServer01, and then stores the object in the $VirtMgrServer variable.

The second command removes the vCenter Server object, as well as all associated host and virtual machine objects, from VMM.

PS C:\> $VirtMgrServer = Get-SCVirtualizationManager -VMMServer "VMMServer01.Contoso.com" -ComputerName "VirtMgrServer01.Contoso.com"
PS C:\> Remove-SCVirtualizationManager -VirtualizationManager $VirtMgrServer

Example Example 2: Remove a set of VMware vCenter Servers from VMM.

The first command gets all virtualization manager objects whose name includes the string Server, and then stores the objects in $VirtManagers.

The second command removes each object in $VirtManagers from VMM, as well as all associated host and virtual machine objects.

For more information about the standard Windows PowerShell Foreach statement, type Get-Help about_ForeEache.

PS C:\> $VirtManagers = Get-SCVirtualizationManager -VMMServer "VMMServer01.Contoso.com" | where { $_.Name -match "Server" }
PS C:\> Foreach ($VirtManager in $VirtManagers) {Remove-SCVirtualizationManager -VirtualizationManager $VirtManager}

Example Example 3: Remove all VMware vCenter Servers from VMM.

This command removes all virtualization manager objects from VMM.

PS C:\> Get-SCVirtualizationManager | Remove-SCVirtualizationManager -RunAsynchronously

関連トピック

Get-SCVirtualizationManager

Add-SCVirtualizationManager

Read-SCVirtualizationManager

Set-SCVirtualizationManager