Rooms & Resources sending a notification
Let's say I have about 30 Rooms with about 150 Resources. Is there a way to Have an email sent to a specific person, delegate, anytime a room is booked with a specific resource. If so like a delegate I am assuming, is it possible to add that person to all resources at once through a PS script or will I have to individually add them.
April 22nd, 2015 10:35am

Hi,

Based on my knowledge, once a room or a resource is booked, the delegate will receive a notification.

As for the question "is it possible to add that person to all resources at once through a PS script or will I have to individually add them", yes it is possible to add the person via a script, here's a demo below:

$EquipmentMailbox = Get-Mailbox -Filter {RecipientTypeDetails -eq "EquipmentMailbox"}

$EquipmentMailbox | Foreach {Set-CalendarProcessing -Identity $_.Alias -AutomateProcessing AutoAccept -AllRequestOutOfPolicy $True -AllBookInPolicy $False -AllRequestInPolicy $True -ForwardRequestsToDelegates $True -ResourceDelegates Test}

I hope this is helpful.

Regards,

Melon Chen
TechNet Community Su

Free Windows Admin Tool Kit Click here and download it now
April 23rd, 2015 2:45am

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics