Question 1mediummultiple choice
Read the full Implement and Manage User Identities explanation →SC-300 Implement and Manage User Identities • Complete Question Bank
Complete SC-300 Implement and Manage User Identities question bank — all 0 questions with answers and detailed explanations.
{
"accountEnabled": true,
"displayName": "Jordan Miller",
"mailNickname": "jmiller",
"userPrincipalName": "jmiller@contoso.com",
"passwordProfile": {
"forceChangePasswordNextSignIn": true,
"password": "ComplexPass123!"
}
}(user.jobTitle -contains "Manager") -and (user.accountEnabled -eq true)
{
"schemas": ["urn:ietf:params:scim:schemas:core:2.0:User"],
"userName": "bjensen@example.com",
"externalId": "701984",
"name": {
"formatted": "Ms. Barbara J Jensen III",
"familyName": "Jensen",
"givenName": "Barbara"
},
"active": true
}New-MgUser -DisplayName "Test User" -PasswordProfile $passwordProfile -AccountEnabled $true -MailNickname "tuser" -UserPrincipalName "tuser@contoso.com"
{
"id": "8d88-f2-4e-9b",
"status": "enabled",
"operations": [
{
"action": "Microsoft.Directory/customSecurityAttributes/values/read",
"scope": "/"
}
],
"roleDefinitionId": "9b8f-4e-8d-8d88"
}