Skip to content

Latest commit

 

History

History
28 lines (23 loc) · 561 Bytes

File metadata and controls

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

$params = @{
	start = @{
		dateTime = "2025-12-15T00:00:00.0000000"
		timeZone = "Pacific Standard Time"
	}
	end = @{
		dateTime = "2025-12-15T23:59:59.0000000"
		timeZone = "Pacific Standard Time"
	}
	workLocationType = "timeOff"
	timeOffDetails = @{
		subject = "Personal Day"
		isAllDay = $false
	}
}

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