Skip to content

Latest commit

 

History

History
39 lines (34 loc) · 768 Bytes

File metadata and controls

39 lines (34 loc) · 768 Bytes
description Automatically generated file. DO NOT MODIFY
Import-Module Microsoft.Graph.Users

$params = @{
	start = @{
		dateTime = "2025-12-11T09:00:00.0000000"
		timeZone = "Pacific Standard Time"
	}
	end = @{
		dateTime = "2025-12-11T18:00:00.0000000"
		timeZone = "Pacific Standard Time"
	}
	workLocationType = "office"
	recurrence = @{
		pattern = @{
			type = "weekly"
			interval = 1
			firstDayOfWeek = "sunday"
			daysOfWeek = @(
			"thursday"
		)
	}
	range = @{
		type = "noEnd"
		startDate = "2025-12-11"
		recurrenceTimeZone = "Pacific Standard Time"
	}
}
}

# A UPN can also be used as -UserId.
Set-MgUserSettingWorkHourAndLocationRecurrence -UserId $userId -WorkPlanRecurrenceId $workPlanRecurrenceId -BodyParameter $params