- AskCody Help Center
- Integrations and Security
- Microsoft Exchange and Exchange Online
-
Implementing AskCody
- 1. Plan & Prepare for the implementation of AskCody
- 2. Identify the meeting journey / business processes
- 3. Sign up to the AskCody Platform
- 4a. Integrate with Microsoft Exchange
- 4b. Establish User Management
- 5. Setting up Bookings
- 6. Setting up Services
- 7. Setting up Visitors
- 10. Setting up Displays
- 11. User management in Entra ID and AD Server
- 12. Platform test and adjustments
- 13. Deploy Add-ins to all end-users
- 14. Training and end-user adoption
- 15. Go-Live
-
Troubleshooting
-
Tips & Tricks, Webinars, and more
-
Central
-
Maps
-
Bookings
-
Services
-
Visitors
-
Insights
-
Integrations and Security
-
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> }