Below response from Microsoft 365 support but we still have issues after applying reg key fix particularly on files saved on Network share.
The issue you’re facing is related to a security change introduced in Windows updates around October 2025. Microsoft started automatically disabling File Explorer Preview for files downloaded from the internet because they are marked with the Mark of the Web (MOTW) for security reasons. This means every file gets flagged as potentially unsafe, and you have to manually Unblock them to restore preview.
Why This Happens
- Files downloaded from browsers or email clients are tagged with MOTW.
- Preview handlers (like for PDFs, Office files, etc.) are blocked for these files to prevent malicious code execution.
How to Restore Preview Without Manual Unblock
Option 1: Group Policy Setting
- Open Local Group Policy Editor (gpedit.msc).
- Navigate to: User Configuration → Administrative Templates → Windows Components → Attachment Manager
- Enable the policy:
- Do not preserve zone information in file attachments
- This removes MOTW from downloaded files automatically.
- Restart File Explorer.
Option 2: Registry Tweak
If you don’t have Group Policy (e.g., Windows Home):
- Open Registry Editor (regedit).
- Go to: HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Attachments
- Create or edit SaveZoneInformation (DWORD):
- Set value to 1 → Preserve MOTW (default)
- Set value to 2 → Do NOT preserve MOTW (removes block)
- Restart your PC.
Option 3: PowerShell Script for Bulk Unblock
If you already have many files blocked:
Get-ChildItem "C:\Your\Folder\Path" -Recurse | Unblock
This removes MOTW from all files in the folder.
The issue you’re facing is related to a security change introduced in Windows updates around October 2025. Microsoft started automatically disabling File Explorer Preview for files downloaded from the internet because they are marked with the Mark of the Web (MOTW) for security reasons. This means every file gets flagged as potentially unsafe, and you have to manually Unblock them to restore preview.
Why This Happens
- Files downloaded from browsers or email clients are tagged with MOTW.
- Preview handlers (like for PDFs, Office files, etc.) are blocked for these files to prevent malicious code execution.
How to Restore Preview Without Manual Unblock
Option 1: Group Policy Setting
- Open Local Group Policy Editor (gpedit.msc).
- Navigate to: User Configuration → Administrative Templates → Windows Components → Attachment Manager
- Enable the policy:
- Do not preserve zone information in file attachments
- This removes MOTW from downloaded files automatically.
- Restart File Explorer.
Option 2: Registry Tweak
If you don’t have Group Policy (e.g., Windows Home):
- Open Registry Editor (regedit).
- Go to: HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Attachments
- Create or edit SaveZoneInformation (DWORD):
- Set value to 1 → Preserve MOTW (default)
- Set value to 2 → Do NOT preserve MOTW (removes block)
- Restart your PC.
Option 3: PowerShell Script for Bulk Unblock
If you already have many files blocked:
Get-ChildItem "C:\Your\Folder\Path" -Recurse | Unblock
This removes MOTW from all files in the folder.