Skip to content

Latest commit

 

History

History
28 lines (23 loc) · 611 Bytes

File metadata and controls

28 lines (23 loc) · 611 Bytes
description Automatically generated file. DO NOT MODIFY
Import-Module Microsoft.Graph.Beta.Users

$params = @{
	start = @{
		dateTime = "2025-12-15T08:00:00.0000000"
		timeZone = "Pacific Standard Time"
	}
	end = @{
		dateTime = "2025-12-15T12:00:00.0000000"
		timeZone = "Pacific Standard Time"
	}
	workLocationType = "timeOff"
	timeOffDetails = @{
		subject = "Doctor Appointment"
		isAllDay = $false
	}
}

# A UPN can also be used as -UserId.
Set-MgBetaUserSettingWorkHourAndLocationOccurrence -UserId $userId -WorkPlanOccurrenceId $workPlanOccurrenceId -BodyParameter $params