Forum Discussion
nirispa
Jun 22, 2021Copper Contributor
Why do I have less options for corporate owned devices in MEM?
Corporate owned phone with WP: Personal owned phone with WP: Why do I have less options for the corporate owned devices? Why cant I send custom notifications to corporate owned devi...
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
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
nirispa
Jul 16, 2021Copper Contributor
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.
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.