@Dakota Sherman, Thanks for posting in Q&A. To change Intune device "Management Name" field, we can use "Update-IntuneManagedDevice". Here are the steps I test in my lab for your reference:
- Export the device information from Intune portal and keep the devices I want to change and rename it as devices.csv
- Run the following script to change the device "Management Name"
Connect-MsGraph
# Read in CSV file of device information
$devices = Import-Csv -Path "C:\test\devices.csv"
# Loop through each device and set the DisplayName property
foreach ($device in $devices) {
$deviceId = $device.'Device ID'
$newDisplayName = "ABCD_" + $device.'Serial number'
Update-IntuneManagedDevice -managedDeviceId $deviceId -managedDeviceName $newDisplayName
}
3, Enter the global administrator account to access Intune graph.
4, After the script run, check in Intune portal and find it is changed.
Hope the above information can help.
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.