Invoke-SCPROTip

Performs the action recommended by a PRO tip.

Description

The Invoke-SCPROTip cmdlet performs the action recommended by a Performance and Resource Optimization (PRO) tip. You can use this cmdlet to manually invoke the action recommended by a PRO tip that is not set to be implemented automatically.

For more information about Invoke-SCPROTip, type: "Get-Help Invoke-SCPROTip -online".

Parameters

PROTip

Required? true
Accept Pipeline Input? true (ByValue)
Position? 0
Specifies a PRO tip object. 

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: Invoke the first active PRO tip.
PS C:\> $PROTips = Get-SCPROTip
PS C:\> Invoke-SCPROTip -PROTip $PROTips[0]
The first command gets all active PRO tip objects from the VMM database and stores the objects in the $PROTips object array.

The second command implements the suggested action for the first PRO tip stored in $PROTips (designated by the [0]).

See Also