Remove-SCVMMManagedComputer

Remove-SCVMMManagedComputer

Removes a computer from VMM management.

構文

Parameter Set: Default
Remove-SCVMMManagedComputer [-VMMManagedComputer] <VMMManagedComputer> -Credential <VMMCredential> [-JobVariable <String> ] [-PROTipID <Guid]> ] [-RunAsynchronously] [ <CommonParameters>]

詳細説明

The Remove-SCVMMManagedComputer cmdlet removes computer objects from Virtual Machine Manager (VMM) management.

パラメーター

-Credential<VMMCredential>

Specifies a credential object or, for some cmdlets, a Run As account object that contains the user name and password of an account that has permission to perform this action. Or, in the case of Restart-SCJob, has permission to complete a restarted task.

For more information about the PSCredential object, type Get-Help Get-Credential. For more information about Run As accounts, type Get-Help New-SCRunAsAccount.

エイリアス

none

必須?

true

位置は?

named

既定値

none

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

True (ByValue)

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

false

-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

-VMMManagedComputer<VMMManagedComputer>

Specifies a computer object that is managed by VMM.

エイリアス

none

必須?

true

位置は?

1

既定値

none

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

True (ByValue)

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

false

<CommonParameters>

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

入力

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

出力

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

Example 1: Remove a managed computer object

The first command gets the Run as account object named RunAsAcct01, and then stores the object in the $RunAsAccount variable.

The second command gets the managed computer object named SPF.Contoso.com, and uses the pipeline operator to pass the object to Remove-SCVMMManagedComputer. That cmdlet removes the computer from VMM management.

PS C:\> $RunAsAccount = Get-SCRunAsAccount -Name "RunAsAcct01"
PS C:\> Get-SCVMMManagedComputer -ComputerName "SPF.Contoso.com" | Remove-SCVMMManagedComputer -Credential $RunAsAccount

関連トピック

Add-SCVMMManagedComputer

Get-SCVMMManagedComputer

Read-SCVMMManagedComputer

Register-SCVMMManagedComputer

Set-SCVMMManagedComputer

Update-SCVMMManagedComputer

Restart-SCJob

Get-SCRunAsAccount