- AskCody Help Center
- Integrations and Security
- Microsoft Exchange and Exchange Online
-
Implementing AskCody
- 1. Preface
- 2. Plan & Prepare for the implementation of AskCody
- 3. Create your organizational account
- 4. Integrate with Microsoft Exchange
- 5. Establish User Management
- 6. Setting up Bookings
- 7. Setting up Displays
- 8. Setting up Services
- 9. Setting up Visitors
- 10. End-user management
- 11. Final Testing
- 12. Deploy to end-users
- 13. End-user Training and Adoption
- 14. Support after go-live
-
Integrations and Security
-
Troubleshooting
-
Bookings
-
Services
-
Visitors
-
Insights
-
Maps
-
Tips & Tricks, Webinars, and more
-
Data processing and legal
-
Mastering Reports
-
Join the AskCody User Community
Change the settings for multiple mailboxes at a time
Learn how to do mass changes in multiple mailboxes in Microsoft Exchange via PowerShell
First, connect to Microsoft Online using PowerShell. Then retrieve a list of mailboxes that you want to change the settings for. For example, you can retrieve all room mailboxes using the following PowerShell command:
$Mailboxes = Get-Mailbox -RecipientTypeDetails RoomMailbox
To retrieve a list of equipment mailboxes, use:
EquipmentMailbox
instead of
RoomMailbox
You can then change the settings for these mailboxes using the ForEach-Object cmdlet, where <Settings> represents the settings you want to change, e.g. DeleteSubject $true, etc.:
$Mailboxes | ForEach-Object { Set-CalendarProcessing -Identity $_.Name <Settings> }