Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 367 Bytes

File metadata and controls

18 lines (12 loc) · 367 Bytes

Example 1: Code snippet

Import-Module Microsoft.Graph.Beta.Education

$params = @{
	displayName = "Rogelio Cazares"
	givenName = "Rogelio"
	middleName = "Fernando"
	surname = "Cazares"
}

Update-MgBetaEducationUser -EducationUserId $educationUserId -BodyParameter $params

This example shows how to use the Update-MgBetaEducationUser Cmdlet.