While using FIM and PowerShell to manage Exchange 2010 I was following along a wonderful article on resource mailboxes that left me wondering a few things.
1) Exactly how is the data stored in the msExchResourceDisplay and msExchResourceSearchProperties attributes?
2) How is it stored with multiple custom properties?
3) Is manipulating those AD attributes sufficient or is PowerShell storing something in the Exchange Data store?
Here are the answers:
1) msExchResourceDisplay = “Room,FlatScreenTV” It appears to be a single valued string with commas.
msExchResourceSearchProperties at first blush appears to be a single-valued string with semi-colons, however further examination reveals it to be a multi-valued attribute
2) What happens when multiple Resource Custom Properties are set?
msExchResourceDisplay = “Room,FlatScreenTV,Whiteboard”
So the new value is simply added to the old ones.
3) Is manipulating these AD attributes sufficient?
Now the reveal:
It works!
4) Well I came up with another question – What happens if the AD programmer forgets to manipulate both attributes?
If it is missing from Display but is in Search
Then it isn’t visible in the Address Book but a search returns it as a result:
6) so what if I put MountedProjector back in Display but it is missing from Search?
It shows up but a search for MountedProjector reveals nothing:
Whereas as search for Whiteboard:
No comments:
Post a Comment