Share via


Remove-SCOMResourcePool

Removes one or more resource pools in Operations Manager.

Syntax

Remove-SCOMResourcePool
      [-ResourcePool] <ManagementServicePool[]>
      [-SCSession <Connection[]>]
      [-ComputerName <String[]>]
      [-Credential <PSCredential>]
      [-WhatIf]
      [-Confirm]
      [<CommonParameters>]

Description

The Remove-SCOMResourcePool cmdlet removes one or more resource pools in System Center - Operations Manager. A resource pool enables a collection of management servers to distribute the workload.

This cmdlet requires a SCOMResourcePool object. For information about how to get a resource pool object, type "Get-Help Get-SCOMResourcePool".

Examples

Example 1: Remove a resource pool

PS C:\>Get-SCOMResourcePool -DisplayName "Pool01*" | Remove-SCOMResourcePool -Confirm

This command retrieves all resource pools that have a display name that begins with the string Pool01. The command uses the pipeline operator to pass the resource pool objects to the Remove-SCOMResourcePool cmdlet and prompts the user for confirmation before removing the resource pool.

Parameters

-ComputerName

Specifies an array of names of computers. The cmdlet establishes temporary connections with management groups for these computers. You can use NetBIOS names, IP addresses, or fully qualified ___domain names (FQDNs). To specify the local computer, type the computer name, localhost, or a dot (.).

Type:String[]
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-Confirm

Prompts you for confirmation before running the cmdlet.

Type:SwitchParameter
Aliases:cf
Position:Named
Default value:False
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-Credential

Specifies a PSCredential object for the management group connection. To obtain a PSCredential object, use the Get-Credential cmdlet. For more information, type "Get-Help Get-Credential".

If you specify a computer in the ComputerName parameter, use an account that has access to that computer. The default is the current user.

Type:PSCredential
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-ResourcePool

Specifies an array of resource pool objects. For information about how to get a resource pool object, type "Get-Help Get-SCOMResourcePool".

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

-SCSession

Specifies an array of Connection objects. To obtain a Connection object, use the Get-SCManagementGroupConnection cmdlet.

Type:Connection[]
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-WhatIf

Shows what would happen if the cmdlet runs. The cmdlet is not run.

Type:SwitchParameter
Aliases:wi
Position:Named
Default value:False
Required:False
Accept pipeline input:False
Accept wildcard characters:False