Hi everyone,
I'm looking to use powershell to modify some Android device Management Names in Intune. I've managed to figure out how to find the device I want to change using the Get-IntuneManagedDevice.
$Device=Get-IntuneManagedDevice |Where-Object {$_.SerialNumber -match $Serial}
but I cannot figure out how to write to Intune and modify the DeviceManagementName
I'm sure it's a super simple code, but I seem to be an idiot. Can someone show me how to write that change?
