Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 308 Bytes

update-user-powershell-snippets.md

File metadata and controls

19 lines (14 loc) · 308 Bytes
description
Automatically generated file. DO NOT MODIFY
Import-Module Microsoft.Graph.Beta.Users

$params = @{
	businessPhones = @(
	"+1 425 555 0109"
)
officeLocation = "18/2111"
}

# A UPN can also be used as -UserId.
Update-MgBetaUser -UserId $userId -BodyParameter $params