Get-SCNotifications

Gets update notifications for a service template or service instance.

Description

The Get-SCNotifications cmdlet gets the update notifications for a service template or service instance. Update notifications alert you to updated resources that are available for a service template or service instance. Use the Set-SCNotifications cmdlet to dismiss notifications.

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

Parameters

NotifiedObject

Required? true
Accept Pipeline Input? true (ByValue)
Position? 0
Specifies a service template object or service instance object for which you want to retrieve update notifications.

VMMServer

Required? false
Accept Pipeline Input? false
Position? named
Specifies a VMM server object.

Examples

1: Get update notifications for a service.
PS C:\> $Service = Get-SCService -Name "Service01"
PS C:\> Get-SCNotifications -NotifiedObject $Service
The first command gets the service object named Service01 and stores the object in the $Service variable.

The second command gets all update notifications for Service01.

See Also