← Back to articles Intune

How to Force Sync Intune-Managed Devices: 5 Methods That Actually Work

How to Force Sync Intune-Managed Devices: 5 Methods That Actually Work

Hi it’s Souhaiel and today will show you 2 ways on how to Sync Devices on Intune as you know, there are times when waiting for the default sync cycle just so boring when you have to test or push settings. Maybe you’ve pushed a critical security policy, need to troubleshoot a device issue, or ensure compliance immediately. Whatever the reason, forcing a sync lets you take control and gain a lot of time, ensuring devices update right when you need them to.

i’ll show you how to use PowerShell & Intune Admin Center to trigger quick and effective syncs whether it’s one device or thousands.

How to Force Devices to be Sync Using PowerShell:


Invoke Sync Using PowerShell

You’ll need the Microsoft Graph Intune PowerShell module.

1. Install and Connect to Microsoft Graph

Install the module and connect to Microsoft Graph:

Install-Module Microsoft.Graph.Intune -Force  
Connect-MSGraph  

2. Check Last Sync Status

To verify when a device last synced:

Get-IntuneManagedDevice | Where {$_.DeviceName -eq "LAPTOP-Win10-NW"} | fl LastSyncDateTime

3. Invoke Sync on a Single Device

Trigger a sync for a specific device:

Get-IntuneManagedDevice -Filter "contains(DeviceName, 'LAPTOP-Win10-NW')" | Invoke-IntuneManagedDeviceSyncDevice
Intune Admin Center Sync All devices Bulk Methode

Invoke Sync for All Devices or Specific OS

Sync All Windows Devices

To sync all Windows devices managed by Intune:

  1. Collect the devices: $devices = Get-IntuneManagedDevice -Filter "contains(OperatingSystem, 'Windows')"
  2. Loop through and sync: foreach ($device in $devices) { Invoke-IntuneManagedDeviceSyncDevice -ManagedDeviceId $device.ManagedDeviceId Write-Host "Sending Intune Sync request to $($device.DeviceName)" }

Sync Over 1000 Devices

For environments with more than 1000 devices, use Get-MSGraphAllPages:

$devices = Get-IntuneManagedDevice -Filter "contains(OperatingSystem, 'Windows')" | Get-MSGraphAllPages  
foreach ($device in $devices) {  
    Invoke-IntuneManagedDeviceSyncDevice -ManagedDeviceId $device.ManagedDeviceId  
    Write-Host "Sending Intune Sync request to $($device.DeviceName)"  
}
Intune Admin Center Sync All devices Bulk Methode

Use Bulk Device Actions on Intune Admin Center

Intune also provides bulk device actions to manage multiple devices simultaneously, saving time and effort for large deployments.

Invoke Sync using Bulk Device Actions

Intune Admin Center Sync All devices Bulk Methode
Intune Admin Center Sync All devices Bulk Methode

Default Intune Policy Refresh Cycles

To understand when devices automatically refresh policies, refer to the table below:

Device TypeInitial RefreshOngoing Cycle
iOS/iPadOSEvery 15 minutes for 1 hourAround every 8 hours
macOSEvery 15 minutes for 1 hourAround every 8 hours
AndroidEvery 3 minutes for 15 minutes, then every 15 minutes for 2 hoursAround every 8 hours
Windows 10/11 PCsEvery 3 minutes for 15 minutes, then every 15 minutes for 2 hoursAround every 8 hours
Windows 8.1Every 5 minutes for 15 minutes, then every 15 minutes for 2 hoursAround every 8 hours

For more informative Skills, check out my blogs section.

🎓 Ready to go deeper?

Practice real MD-102 exam questions, get AI feedback on your weak areas, and fast-track your Intune certification.

Start Free Practice → Book a Session
Souhaiel Morhag
Souhaiel Morhag
Microsoft Endpoint & Modern Workplace Engineer

Souhaiel is a Microsoft Intune and endpoint management specialist with hands-on experience deploying and securing enterprise environments across Microsoft 365. He founded MSEndpoint.com to share practical, real-world guides for IT admins navigating Microsoft technologies — and built the MSEndpoint Academy at app.msendpoint.com/academy, a dedicated learning platform for professionals preparing for the MD-102 (Microsoft 365 Endpoint Administrator) certification. Through in-depth articles and AI-powered practice exams, Souhaiel helps IT teams move faster and certify with confidence.

Related Articles