Skip to content

Instantly share code, notes, and snippets.

@dbirks
Created November 2, 2017 13:37
Show Gist options
  • Save dbirks/d1267ecf40185bed693817b4274e5b12 to your computer and use it in GitHub Desktop.
Save dbirks/d1267ecf40185bed693817b4274e5b12 to your computer and use it in GitHub Desktop.
Change how far in advance you can book a room in Exchange

For Office 365, the default time into the future you can book a room looks to be 180 days. Find out the current time with:

Get-CalendarProcessing -Identity "Conference Room" | select BookingWindowInDays

You can then set the window to the maximum of 1080 days with:

Set-CalendarProcessing -Identity "Conference Room" -BookingWindowInDays 1080
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment