HomeNewsletterCommunityMVP FeedToolsArchiveBlogToday's NewsAboutServicesQuick Links Subscribe free
← Back to Blog
Windows WindowsTime ZoneDSTPatch TuesdayMoroccoPowerShell

Morocco Is Abolishing DST on 20 September 2026 — What Windows and IT Admins Need to Do

IA
Imran Awan
17 September 2026
Watch this post — YouTube walkthrough
Morocco Abolishes DST on 20 Sept 2026 - Fix Windows Devices Before Monday
Morocco Abolishes DST on 20 Sept 2026 - Fix Windows Devices Before Monday
Endpoint Weekly
Watch on YouTube Subscribe at @EndpointWeekly
⚠ Time-sensitive: The change happens on Saturday, 20 September 2026 at 02:00 AM Morocco local time. If your devices are set to Morocco Standard Time and you have not installed the September 2026 Patch Tuesday update, they will show the wrong time from that moment. You have a narrow window to act before Monday morning.

What is changing and when

Morocco has announced that it is permanently abolishing Daylight Saving Time and will remain on UTC+0 (Greenwich Mean Time / Western European Time) year-round, starting on 20 September 2026.

Before this change, Morocco observed UTC+1 during its summer period (roughly late March to late September). On 20 September 2026 at 02:00 AM local time, clocks will go back by one hour to 01:00 AM, returning to UTC+0. Unlike previous years, this is not a seasonal transition — Morocco will stay at UTC+0 permanently and will not spring forward again in 2027.

Before 20 September 2026From 20 September 2026 onwards
UTC+1 (Western European Summer Time)UTC+0 (Western European Time / GMT)
Windows time zone: Morocco Standard Time (UTC+1 summer rule)Windows time zone: Morocco Standard Time (updated, permanent UTC+0)
Casablanca 12:00 = London 11:00Casablanca 12:00 = London 12:00
📋 Background: Morocco has had an unusual time zone history. Since 2018, it observed UTC+1 year-round except during Ramadan (when it temporarily reverted to UTC+0). The September 2026 change ends all DST transitions permanently, settling at UTC+0 for all months going forward.

Who is affected

This change affects any Windows device whose clock is set to the Morocco Standard Time zone. In practice this means:

Devices set to any other time zone (including GMT Standard Time, UTC, or any European zone) are not affected by this change.

What happens if you do nothing

If a device has Morocco Standard Time configured and has not received the updated time zone data, Windows will continue to follow the old DST rules. After 20 September 2026, the device will believe it is still in summer time (UTC+1) when it should be UTC+0. This means:

⚠ Gotcha: Windows will not automatically correct this at 02:00 AM on 20 September if the time zone data has not been updated. The old data tells Windows there is no transition at that point, so nothing happens automatically — the clock just stays wrong silently.

The permanent fix: September Patch Tuesday

Microsoft included updated time zone data for Morocco in the September 8, 2026 Patch Tuesday cumulative updates. If a device has installed the September 2026 update, the transition on 20 September will happen automatically and correctly — no admin action required.

To check whether a device has received the September update:

PowerShell — Run as Administrator
# Check what the current OS build and patch date are Get-ComputerInfo | Select-Object OsName, OsBuildNumber, OsInstallDate # Check recently installed updates — look for September 2026 cumulative Get-HotFix | Where-Object {$_.InstalledOn -ge '2026-09-08'} | Select-Object Description, HotFixID, InstalledOn

For Intune-managed devices, use the Windows update compliance report in Intune to identify any devices that have not received the September 2026 update. Filter by time zone = Morocco Standard Time to find the specific at-risk devices.

Interim guidance: if you cannot patch before 20 September

If a device cannot receive the September 2026 cumulative update before 20 September, Microsoft has published interim guidance. There are two options depending on your environment.

Option A — Temporarily switch to GMT Standard Time (quickest)

The simplest interim fix is to temporarily set the device to GMT Standard Time, which is already at UTC+0 and correctly reflects Morocco time after 20 September. This requires no update and takes effect immediately.

PowerShell — Run as Administrator
# Switch from Morocco Standard Time to GMT Standard Time (UTC+0, no DST) # Apply AFTER 02:00 AM Morocco local time on 20 September 2026 Set-TimeZone -Id "GMT Standard Time" Get-TimeZone # Expected output: (UTC) Dublin, Edinburgh, Lisbon, London # Or via tzutil.exe (works in both CMD and PowerShell) tzutil /s "GMT Standard Time" tzutil /g
⚠ Timing matters: Apply this switch after the 02:00 AM transition on 20 September. If you apply it before, the device will jump to UTC+0 immediately (one hour behind Morocco's current UTC+1) and show the wrong time until 02:00 AM. Schedule this script to fire after 02:00 AM Morocco local time on 20 September.

Once the September 2026 Patch Tuesday update is installed, revert to Morocco Standard Time:

PowerShell — Run after the September 2026 update is installed
# Revert to Morocco Standard Time once the update is installed Set-TimeZone -Id "Morocco Standard Time" Get-TimeZone # Should now show UTC+0 offset (not UTC+1) — confirms rules are updated

Option B — Apply the registry TZI fix (recommended for servers)

For Windows Server machines or any device where switching to GMT Standard Time is not desirable, Microsoft has published a registry fix that updates the Morocco Standard Time zone data directly. This is the preferred approach for domain controllers and servers because it preserves the time zone name and does not disrupt authentication.

The fix updates the TZI (Time Zone Information) binary value at:

Registry Editor — Morocco Standard Time TZI data
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Time Zones\Morocco Standard Time
TZI  REG_BINARY  [old DST summer rules] → updated to permanent UTC+0 rules
📋 Note: The exact TZI binary value is provided in Microsoft's official interim guidance article. Do not manually construct this value — use the .reg file linked from the official source. After applying the registry fix, restart the Windows Time service: Restart-Service w32tm. See the Microsoft DST blog post for the .reg download.

Exchange and calendar impact

Calendar meetings and appointments created with Morocco Standard Time as the time zone basis will be affected on unpatched systems:

ScenarioImpactAction
Organiser on patched device, attendee unpatchedAttendee sees meeting 1 hour offAttendee must patch or apply interim fix
Organiser unpatched, attendee patchedInvitation sent with wrong time zone offsetOrganiser patches and resends invite
Exchange Online (cloud calendar)Microsoft handles the DST transition automaticallyNo action required
Exchange Server on-premisesMay need the Exchange Server interim update for correct free/busy dataApply appropriate Exchange Server interim update
Recurring meetings spanning 20 SeptemberPost-transition occurrences may show 1-hour offsetMeeting organisers resend updated invitations after patching
✓ Tip: For on-premises Exchange, run the Exchange Calendar Update Tool after the time zone update is applied to correct recurring meetings that span the transition date. This updates stored appointments so they display correctly for all attendees.

How to verify the correct time after the change

After applying the patch or interim fix, verify that the device is showing the correct UTC offset for Morocco Standard Time:

PowerShell — Verify time zone offset after 20 September
# Check the current UTC offset for Morocco Standard Time [System.TimeZoneInfo]::FindSystemTimeZoneById('Morocco Standard Time').GetUtcOffset([DateTime]::Now) # Expected after 20 September on a patched device: 00:00:00 (UTC+0) # If this shows 01:00:00, the device has NOT received updated DST rules # Confirm the configured time zone and force a time sync Get-TimeZone w32tm /resync /force w32tm /query /status

For further reading on this change and the official interim guidance including the registry .reg file download:

Last updated: 17 September 2026. This post will be updated when Microsoft publishes additional guidance or a dedicated DST-only update KB.

Was this post helpful?
React below — no account needed
Share this post
LinkedIn X / Twitter Reddit Bluesky

More from EndpointWeekly

Windows
Windows Hello for Business Doesn't Work Over RDP — Here's What…
A user signs into their laptop with a fingerprint, then RDPs to a server and gets thrown…
Windows
Windows 11 LTSC 2024: The 5-Year vs 10-Year Lifecycle Trap
Windows 11 Enterprise LTSC 2024 has a 5-year lifecycle. Windows 11 IoT Enterprise LTSC…
Windows
KB5094126 Sign-in Failure Fix — Windows 11 24H2
KB5094126 is causing sign-in failures on some Windows 11 24H2 devices after installation.…