Skip to content

Commit

Permalink
Update 2-Update.ps1
Browse files Browse the repository at this point in the history
  • Loading branch information
NikCharlebois authored Feb 2, 2024
1 parent 74dc306 commit 8f6a727
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,15 @@ Configuration Example
)
Import-DscResource -ModuleName Microsoft365DSC

$Domain = $Credscredential.Username.Split('@')[1]
node localhost
{
EXOMailboxCalendarFolder "JohnCalendarFolder"
{
Credential = $credsCredential;
DetailLevel = "AvailabilityOnly";
Ensure = "Present";
Identity = "AdeleV:\Calendar";
Identity = "AdeleV@$Domain:\Calendar";
PublishDateRangeFrom = "ThreeMonths";
PublishDateRangeTo = "ThreeMonths";
PublishEnabled = $True; # Updated Property
Expand Down

0 comments on commit 8f6a727

Please sign in to comment.