Link to home
Start Free TrialLog in
Avatar of ctp93
ctp93

asked on

Using Group Memebrship to set Mailbox Features

We have a potential situation where we would need to essentially deactivate a group of mailboxes quickly.  Not remove them, but temporarily render them un-useable.  THe thought is to turn off MAPI, POP3, Active Sync, OWA...etc from the Mailbox Features page.

Is there any way to set up a group and have it ready to go such that all we have to do is add people to the group to get the desired effect?

Thanks
Avatar of FDiskWizard
FDiskWizard
Flag of United States of America image

Without disabling the user account? Or are these shared mailboxes?
The problem is if they are already connected with Outlook...

You could change the Storage limits on the account so that it is set to Prohibit SEND/RCV at 1KB :)
But be aware that may take a little time to propagate normally.


if you know anything about power shell then you can write your own script which would query the Group you created, create a list of users, then parse through those and disable their mailboxesusing the Exchange command console.  

By default when disabled they are kept for 30 days.  You can change this value though.  Then when ready just reconnect the mailboxes through exchange managment console.
you could put them in a group or ou
get-mailbox -organizationalunit <name> | set-casmailbox -popenabled:$false
get-distributiongroupmember <name> | foreach-object { set-casmailbox $_.Name -popenabled:$false }
Nice Endital1097.  How about:
get-mailbox -organizationalunit <name> | foreach-object { Disable-mailbox $_.Name}

Not sure of the syntax here, but wouldnt' that get every person within the OU then disable their mailbox where $_.Name is the variable?
Yours would delete the mailbox
I thought we just wanted to disable features
You also don't need the foreach
You would want to add to mine -imapenabled:$false etc
Avatar of ctp93
ctp93

ASKER

Endital1097,

If we want to go the Group route, we'd use:
get-mailbox -organizationalunit <name> | foreach-object { Disable-mailbox $_.Name}

Correct?  And we'd have to add them to the group prior to running the command right?
Avatar of ctp93

ASKER

Wait...that was backwards.  We'd use:

get-distributiongroupmember <name> | foreach-object { set-casmailbox $_.Name -popenabled:$false }

And then do the same for imap, owa, activesynce...etc
Yes run the following to see features to disable
Get-casmailbox you|  fl
How'd that work out for ya ctp93?
ASKER CERTIFIED SOLUTION
Avatar of endital1097
endital1097
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of ctp93

ASKER

Thanks Endital1097.  Looks like this will work for our project