Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 391 Bytes

File metadata and controls

22 lines (17 loc) · 391 Bytes
description Automatically generated file. DO NOT MODIFY
Import-Module Microsoft.Graph.Users

$params = @{
	accountEnabled = $true
	displayName = "Adele Vance"
	mailNickname = "AdeleV"
	userPrincipalName = "AdeleV@contoso.com"
	passwordProfile = @{
		forceChangePasswordNextSignIn = $true
		password = "xWwvJ]6NMw+bWH-d"
	}
}

New-MgUser -BodyParameter $params