Admin Checks and Reference

Summary

This note is a quick reference for the kinds of checks that often support Microsoft admin and support work.

Example check pattern

# Confirm the user exists
Get-MgUser -UserId user@contoso.com
 
# Review direct or inherited group path
Get-MgUserMemberOf -UserId user@contoso.com
 
# If the issue is device-related, check managed devices
Get-MgDeviceManagementManagedDevice -Filter "userPrincipalName eq 'user@contoso.com'"

Use it as a thinking sequence:

  • identity first
  • then access path
  • then device context if the issue is endpoint-related

Identity checks

CheckPurpose
user exists and is enabledconfirm basic identity state
group membership is correctconfirm access path
license or assignment context is sensibleconfirm service access model

Device checks

CheckPurpose
device is enrolledconfirm management state
compliance state is clearconfirm whether device health affects access
policy assignment is sensibleconfirm expected configuration path

Support notes

CheckPurpose
identity and device are separated clearlyreduces troubleshooting confusion
change is documented clearlymakes later review easier
outcome is validatedconfirms support action matched the real need

Notes

  • this note is intentionally light and support-oriented
  • many Microsoft tasks are easier when checked through identity, access, and device layers separately
  • this section should stay a quick reminder, not a full admin manual