Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
NikCharlebois committed Jul 13, 2022
1 parent c27384f commit dad7c54
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change log for Microsoft365DSC

# UNRELEASED

* TeamsUpdateManagementPolicy
* Changed the format of the UpdateTimeOfDay parameter to not include date as part of an export.
FIXES [#2062](https://github.com/microsoft/Microsoft365DSC/issues/2062)

# 1.22.713.1

* AADAuthorizationPolicy
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ function Get-TargetResource
AllowPublicPreview = $policy.AllowPublicPreview
UpdateDayOfWeek = $policy.UpdateDayOfWeek
UpdateTime = $policy.UpdateTime
UpdateTimeOfDay = $policy.UpdateTimeOfDay
UpdateTimeOfDay = $policy.UpdateTimeOfDay.Split('T')[1].Replace('Z', '')
Ensure = 'Present'
Credential = $Credential
}
Expand Down

0 comments on commit dad7c54

Please sign in to comment.