Reset-WASComputer

Drops a computer from all running job instances.

Syntax

Reset-WASComputer
     [-Computer] <WASComputer[]>
     [<CommonParameters>]

Description

The Reset-WASComputer cmdlet drops a computer from all running job instances. When you drop a computer from a job, the job continues to run on other computers. The Computer parameter is required. Use Get-WASComputer to get the computer object.

Examples

Example 1

PS C:\> $Computer = Get-WasComputer -ComputerName 'TestComputer1'
PS C:\> Reset-WasComputer -Computer $Computer

Gets the test computer named "TestComputer1", saves it as a variable, and then resets the computer. This drops it from all running job instances.

Parameters

-Computer

Specifies the computer that you want to drop. Use Get-WASComputer to get the computer object.

Type:WASComputer[]
Position:0
Default value:None
Required:True
Accept pipeline input:True
Accept wildcard characters:False