Skip to content

Instantly share code, notes, and snippets.

@ChrFrohn
Created May 1, 2022 10:30
Show Gist options
  • Save ChrFrohn/d8a1d56eb29ad79aa09170712fcfa8b7 to your computer and use it in GitHub Desktop.
Save ChrFrohn/d8a1d56eb29ad79aa09170712fcfa8b7 to your computer and use it in GitHub Desktop.
Blog - Add new dates to Teams holidays using PowerShell
$HolidayID = Get-CsOnlineSchedule -Id "e48d56a7-461a-46b5-962c-196f6e85145d"
$HolidayID.FixedSchedule.DateTimeRanges += New-CsOnlineDateTimeRange -Start "05/06/2022" -End "06/06/2022"
Set-CsOnlineSchedule -Instance $HolidayID -Verbose
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment