Why do I have less options for corporate owned devices in MEM?

Copper Contributor

Corporate owned phone with WP:

nirispa_0-1624373690176.png

Personal owned phone with WP:

nirispa_1-1624373782575.png

 

Why do I have less options for the corporate owned devices?

Why cant I send custom notifications to corporate owned devices or force a sync?

 

Thanks for anyone engaging.

BrS

3 Replies
Is there none who can answer this question?
As it doesnt make much sense to me that I have more options on non corporate owned devices...
Hi,

In the screenshot I can see "android" so the sync option is not available in Intune you will need to do this from the play store
Play store --> Android Device Policy --> Open it and force sync from there.

Or maybe powershell would work? don't for certain..but we are using it when we need to sync a lot of devices at the same time

Connect-MSGraph
$Devices = Get-IntuneManagedDevice -Filter "contains(operatingsystem, 'android')"
Foreach ($Device in $Devices)
{
Invoke-IntuneManagedDeviceSyncDevice -managedDeviceId $Device.managedDeviceId
Write-Host "Sending Sync request to Device with DeviceID $($Device.managedDeviceId)" -ForegroundColor Yellow
}

But yes... you are correct its weird its missing
Hello,
Thanks for the reply, at least one part is solved.
But I assume that you also dont have the Option for a remote session or to send a custom notification.