Topic Last Modified: 2013-07-05

To disable push notifications from being sent to either iPhones or Windows Phones, use the Set-CsPushNotificationConfiguration cmdlet and set the values of the EnableApplePushNotificationService and the EnableMicrosoftPushNotificationService properties to False ($False):

Copy Code
Set-CsPushNotificationConfiguration -EnableApplePushNotificationService $False -EnableMicrosoftPushNotificationService $False

Note that iPhones and Windows phones can be set independently. For example, this command disables push notifications on iPhones, but enables those notifications on Windows Phones:

Copy Code
Set-CsPushNotificationConfiguration -EnableApplePushNotificationService $False -EnableMicrosoftPushNotificationService $True

See Also