Device Owner is missing in Entra ID (Azure AD)
Valentin Komarovskiy, MBA
Solving complex business problems and alleviating technical pain points to improve efficiency and reduce risks.
If the "owner" is missing on a Windows device in Azure AD, it usually means the device does not have an assigned primary user. This can happen for several reasons:
Reasons for Missing Device Owner
Implications of Missing Owner
Assigning an Owner to a Device to fix this issue
To assign an owner to a device in Azure AD, you can use AzureAD PowerShell module:
You will firs need to find and record device Object ID of the device you want to assign and owner to and the User ID object of the user
Locate it in Entra ID portal: https://portal.azure.com/#view/Microsoft_AAD_IAM/ActiveDirectoryMenuBlade/~/Overview
Install-Module AzureAD
Connect-AzureAD
You can check current device owner by running
Get-AzureADDeviceRegisteredOwner -ObjectId 2128e863-1b58-4ea9-aca2-42ae6f15b069
Next you will run
Add-AzureADDeviceRegisteredOwner -ObjectId Device -RefObjectId User
Replace device with device object ID
Replace user with user object ID
Add-AzureADDeviceRegisteredOwner -ObjectId 2128e863-1b58-4ea9-aca2-42ae6f15b069 -RefObjectId 7b00bc43-d9df-428e-8060-0690d85ef162
You will now see a new device owner assigned to that device.
MBA - IIM Kozhikode | Director, Global Cybersecurity Operation, Hillenbrand | Strategic Enterprise Security & IT Infrastructure Operations
1 个月Thanks for the post. How to execute this for bulk devices in AZ which has no user assigned?