Why Should You Manage Time Zone Settings Through Microsoft Intune?
Managing time zone settings across an organization's Windows devices ensures consistency for scheduled tasks, meeting times, log timestamps, and compliance requirements. Without centralized management, devices might have incorrect time zones, leading to confusion in global organizations and potential security issues with time-sensitive authentication.
Microsoft Intune's Settings Catalog provides the most reliable method for deploying time zone configurations to Windows 10 and Windows 11 devices. This approach uses native Windows policies and ensures settings persist even after user modifications.
What Are the Prerequisites for Configuring Time Zones in Intune?
Before starting this configuration, ensure you have the proper licensing and permissions. You'll need Microsoft Intune Plan 1 or Microsoft 365 E3/E5 licensing, along with Global Administrator or Intune Administrator roles in Microsoft Entra ID.
Your target devices must be running Windows 10 version 1903 or later, or any version of Windows 11. These devices need to be enrolled in Microsoft Intune and either Microsoft Entra ID joined or hybrid joined. The Intune management extension will automatically deploy to devices when you use Settings Catalog policies.
How Do You Identify the Correct Windows Time Zone ID?
Windows uses specific internal identifiers for time zones that differ from display names. Getting this right is crucial for successful policy deployment.
Open PowerShell as Administrator on any Windows device and run this command to see all available time zones:
Get-TimeZone -ListAvailable | Format-Table Id, DisplayName -AutoSizeThe Id column contains the exact values you'll use in Intune. Common time zone IDs include:
| Region | Time Zone ID | Display Name |
|---|---|---|
| US East Coast | Eastern Standard Time | (UTC-05:00) Eastern Time |
| US West Coast | Pacific Standard Time | (UTC-08:00) Pacific Time |
| UK/Ireland | GMT Standard Time | (UTC+00:00) Dublin, Edinburgh, Lisbon, London |
| Central Europe | W. Europe Standard Time | (UTC+01:00) Amsterdam, Berlin, Bern, Rome |
| India | India Standard Time | (UTC+05:30) Chennai, Kolkata, Mumbai, New Delhi |
| Japan | Tokyo Standard Time | (UTC+09:00) Osaka, Sapporo, Tokyo |
Verify your current time zone format with:
Get-TimeZone | Format-List Id, DisplayNameHow Do You Create a Time Zone Configuration Profile in Intune?
Navigate to the Microsoft Intune admin center at https://intune.microsoft.com and sign in with your administrator credentials. The interface has been streamlined in 2026, making policy creation more intuitive.
From the left navigation menu, click Devices > Configuration to access your configuration profiles. Click Create > New policy to start the profile creation wizard.
Select these options:
- Platform: Windows 10 and later
- Profile type: Settings catalog
Click Create to proceed to the profile configuration.
On the Basics page, provide a clear, descriptive name that indicates the time zone and target audience. Examples:
Corporate Time Zone - Eastern US OfficesTime Zone Policy - London OperationsAPAC Time Zone - Singapore Standard
Add a detailed description explaining the policy's purpose and scope. This helps other administrators understand the configuration later.
What Settings Should You Configure in the Time Zone Policy?
The Settings Catalog approach provides granular control over Windows time zone settings. On the Configuration settings page, click Add settings and search for "time zone" in the settings browser.
Expand Time language settings from the search results and select Configure Time Zone. This setting directly controls the system time zone and prevents users from changing it.
In the Configure Time Zone field, enter the exact time zone ID you identified earlier. For example:
Eastern Standard TimeThe policy will enforce this time zone on all assigned devices, overriding any user-configured settings. Users will see "Some settings are managed by your organization" in the Windows Settings app, indicating the policy is active.
How Should You Assign Time Zone Policies to Device Groups?
Proper group assignment ensures the right devices receive the appropriate time zone settings. On the Assignments page, click Add groups under Included groups.
Choose assignment strategies based on your organizational structure:
- All devices: For organizations with a single primary time zone
- Regional device groups: For multi-location organizations with different time zones
- Dynamic device groups: Based on device attributes like location or department
- Static device groups: Manually managed groups for specific device sets
You can also exclude specific groups. For example, exclude devices used by traveling executives who need automatic time zone detection, or exclude conference room devices that might need different settings.
Consider these assignment scenarios:
| Scenario | Assignment Strategy | Example Groups |
|---|---|---|
| Single office | All devices | All Corporate Devices |
| Multi-regional | Location-based groups | US East Coast Devices, EMEA Devices |
| Department-specific | Role-based groups | Finance Laptops, Sales Tablets |
| Mixed requirements | Inclusion + Exclusion | Include: All Devices, Exclude: Executive Laptops |
How Do You Monitor and Verify Time Zone Policy Deployment?
After creating the profile, monitor its deployment progress through the Intune admin center. Navigate to Devices > Configuration and click on your time zone profile.
The Device status tab shows deployment progress across assigned devices. Status indicators include:
- Succeeded: Policy applied successfully
- Pending: Device hasn't checked in yet
- Error: Policy application failed
- Not applicable: Device doesn't support the setting
Devices typically receive policies within 15-30 minutes of the next check-in cycle. You can force immediate sync for testing:
From Intune Admin Center:
- Go to Devices > All devices
- Select a target device
- Click Sync
- Wait 2-3 minutes for completion
From the Device:
- Open Settings > Accounts > Access work or school
- Click your Intune enrollment
- Click Sync
PowerShell Method:
Get-ScheduledTask | Where-Object {$_.TaskName -eq "PushLaunch"} | Start-ScheduledTaskHow Do You Verify Time Zone Settings on Target Devices?
Once policies deploy, verify they're working correctly on target devices. Open PowerShell as Administrator and run:
Get-TimeZone | Format-List Id, DisplayName, StandardName, DaylightNameThe output should match your configured time zone. You can also verify through the Windows Settings interface:
- Open Settings > Time & Language > Date & time
- The time zone dropdown should be grayed out
- Text should indicate "Some settings are managed by your organization"
- The displayed time zone should match your policy
To check policy application events and troubleshoot issues:
Get-EventLog -LogName System -Source "Microsoft-Windows-Kernel-General" -Newest 10 | Where-Object {$_.Message -like "*time zone*"}For comprehensive verification, check these additional elements:
- Registry verification: Check
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\TimeZoneInformation - Group Policy results: Run
gpresult /h report.htmlto see applied policies - Intune management extension logs: Check
C:\ProgramData\Microsoft\IntuneManagementExtension\Logs
What Are Common Issues and How Do You Troubleshoot Them?
Several common issues can occur when deploying time zone policies through Intune. Here are the most frequent problems and their solutions:
Policy Not Applying (15-90 minute delays):
- Force device sync through Intune admin center or device settings
- Restart the target device to trigger immediate policy refresh
- Check device enrollment status and Intune connectivity
- Verify the device is in the assigned groups
Incorrect Time Zone ID Errors:
- Verify the time zone ID matches exactly with
Get-TimeZone -ListAvailable - Check for typos, extra spaces, or incorrect capitalization
- Don't use display names or abbreviations like "EST" or "PST"
Settings Grayed Out on Devices:
This is normal behavior when policies are enforced. Users will see "Some settings are managed by your organization" in the Windows Settings app. This indicates successful policy application, not a problem.
Cloud PCs (Windows 365) Issues:
- Local user device time zone may override Cloud PC settings
- Create separate policies specifically targeting Cloud PC device groups
- Consider enabling automatic time zone detection for Cloud PCs
Dynamic Time Zone Requirements:
Intune's native Settings Catalog only supports static time zone enforcement. For dynamic time zone detection based on location, you'll need additional configuration:
- Enable location services through additional Intune policies
- Deploy PowerShell remediation scripts for advanced scenarios
- Use custom OMA-URI settings for location-based automatic detection
For advanced troubleshooting, check these log locations:
- Intune Management Extension:
C:\ProgramData\Microsoft\IntuneManagementExtension\Logs\IntuneManagementExtension.log - Windows Event Logs: Applications and Services Logs > Microsoft > Windows > DeviceManagement-Enterprise-Diagnostics-Provider
- Registry changes: Monitor
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\TimeZoneInformationfor policy application
This comprehensive approach to time zone management through Microsoft Intune ensures consistent time settings across your Windows device fleet, improving operational efficiency and reducing time-related confusion in global organizations.



