Jump to content

Recommended Posts

Posted (edited)

Here is a useful bit of powershell code which I spent ages looking for!

 

Exchange 2007 turns OWA on by default - which in most schools you wont want for students. Run this (substituting "groupname" for a distribution group for students), and all your student users will no longer have OWA.

 

get-distributiongroupmember "GROUPNAME" | Set-CASMailbox -OWAEnabled $false

 

There are similar commands for IMAP, POP3 and ActiveSync - will add those once I find them!

 

EDIT:

 

Here are the others (substitute "-OWAEnabled..." or add at the end...)

 

-ActiveSyncEnabled $True / $false

-MAPIEnabled $True / $false

-PopEnabled $True / $false

-ImapEnabled $True / $false

Edited by TheScarfedOne

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...