Forum Discussion

nirispa's avatar
nirispa
Copper Contributor
Jun 22, 2021

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 devices or force a sync?

 

Thanks for anyone engaging.

BrS

  • nirispa's avatar
    nirispa
    Copper Contributor
    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
      • nirispa's avatar
        nirispa
        Copper 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.

Resources