# Wir wollen eine Synchronisation aller iPads erzwingen. # per default findet diese nur alle 8 Stunden statt. Ist das iPad nicht erreichbar, sehr beschäftigt oder gesperrt, wird nicht synchronisiert. # Den Erfolg der Synchronisierung unserer Konfigurationseinstellungen sieht man im Endpoint Manager - Geräte - iOS/iPadOS - Konfigurationsprofile - Auswahl eines Profils - Bericht anzeigen # In einer Admin PS Shell die Installation von Microsoft.Graph.Intune # Install-Module -Name Microsoft.Graph.Intune Import-Module -Name Microsoft.Graph.Intune Connect-MSGraph # ohne Rueckmeldung # Get-IntuneManagedDevice -Filter "contains(operatingsystem,'ios')" | Invoke-IntuneManagedDeviceSyncDevice $Devices = Get-IntuneManagedDevice -Filter "contains(operatingsystem, 'iOS')" Foreach ($Device in $Devices) { Write-Host "Sending Sync request to Device with DeviceID $($Device.managedDeviceId)" Invoke-IntuneManagedDeviceSyncDevice -managedDeviceId $Device.managedDeviceId }