Powershell commands to set Exchange 2007 Mailbox Quotas to unlimited.
This one sets everything to unlimited:
Set-Mailbox *Username* -UseDatabaseQuotaDefaults:$False -issuewarningQuota "UNLIMITED" -ProhibitSendQuota "UNLIMITED" -ProhibitSendReceive “UNLIMITED”
This is to set explicity for a user, if you want to send similar setting to multiple people then you have have to loop it and apply the same or
get-content “C:\names.txt” | Set-Mailbox -UseDatabaseQuotaDefaults:$False -issuewarningQuota 90MB -ProhibitSendQuota 100MB -ProhibitSendReceive “UNLIMITED”
get-content “C:\names.txt” | Set-Mailbox -UseDatabaseQuotaDefaults:$False -issuewarningQuota “UNLIMITED” -ProhibitSendQuota “UNLIMITED” -ProhibitSendReceive “UNLIMITED”
Very cool.
Posted on 8:00 AM by Nathan aka Mysteryn11 and filed under
Microsoft Exchange,
powershell
| 0 Comments »
Set-Mailbox *Username* -UseDatabaseQuotaDefaults:$False -issuewarningQuota "UNLIMITED" -ProhibitSendQuota "UNLIMITED" -ProhibitSendReceive “UNLIMITED”
This is to set explicity for a user, if you want to send similar setting to multiple people then you have have to loop it and apply the same or
get-content “C:\names.txt” | Set-Mailbox -UseDatabaseQuotaDefaults:$False -issuewarningQuota 90MB -ProhibitSendQuota 100MB -ProhibitSendReceive “UNLIMITED”
get-content “C:\names.txt” | Set-Mailbox -UseDatabaseQuotaDefaults:$False -issuewarningQuota “UNLIMITED” -ProhibitSendQuota “UNLIMITED” -ProhibitSendReceive “UNLIMITED”
Very cool.
0 comments:
Post a Comment