Remove-SCLoadBalancerVIPTemplate

Deletes a load balancer VIP template from VMM.

Description

The Remove-SCLoadBalancerVIPTemplate deletes a load balancer virtual IP (VIP) template from System Center Virtual Machine Manager (VMM).

For more information about Remove-SCLoadBalancerVIPTemplate, type: "Get-Help Remove-SCLoadBalancerVIPTemplate -online".

Parameters

LoadBalancerVIPTemplate

Required? true
Accept Pipeline Input? true (ByValue)
Position? 0
Specifies a load balancer virtual IP (VIP) template.

JobVariable

Required? false
Accept Pipeline Input? false
Position? named
Specifies that job progress is tracked and stored in the variable named by this parameter. 

PROTipID

Required? false
Accept Pipeline Input? false
Position? named
Specifies the ID of the PRO tip that triggered this action. This allows for auditing of PRO tips.

RunAsynchronously

Required? false
Accept Pipeline Input? false
Position? named
Indicates that the job runs asynchronously so that control returns to the command shell immediately. 

VMMServer

Required? false
Accept Pipeline Input? true (ByValue)
Position? named
Specifies a VMM server object.

Examples

1: Delete a load balancer virtual IP (VIP) template.
PS C:\> $VIPTemplate = Get-SCLoadBalancerVIPTemplate -Name "VIPTemplate01"
PS C:\> Remove-SCLoadBalancerVIPTemplate -LoadBalancerVIPTemplate $VIPTemplate
The first command gets the load balancer VIP template named VIPtemplate01 and stores the object in the $VIPTemplate variable.

The second command removes the load balancer VIP template stored in $VIPTemplate.

See Also