Link to home
Start Free TrialLog in
Avatar of zingab
zingab

asked on

Exchange 2007 IMap4

How can i disable imap4 for all users via the shell?
Avatar of pr0nd3xtr
pr0nd3xtr

You could try something like:

get-CASMailbox | Set-CASMailbox -ImapEnabled:$false

You can test with a single identity at first:

get-CASMailbox username | Set-CASMailbox -ImapEnabled:$false
Avatar of zingab

ASKER

i need to do this for 500 users, how can i do this all at once?
The first line will do the trick for all mailbox-enabled users, the second will work for the single user you specify.
Avatar of zingab

ASKER

That script will ONLY affect Imap for the users?
ASKER CERTIFIED SOLUTION
Avatar of Jon Brelie
Jon Brelie
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