File Explorer not previewing pdf files since 25H2 update

Paul Nicholson 560 Reputation points
2025-10-15T08:07:37.1033333+00:00

Since installing the 25H2 update to Windows 11, the preview for pdf files is not working.

I just get the following message "The file you are attempting to preview could harm your computer. If you trust the file and the source you received it from, open it to view its contents"

I have tried everything to restore the preview without success.

Any help would be much appreciated!

Windows for home | Windows 11 | Files, folders, and storage

Answer recommended by moderator
Vivekanandan Tiwari 210 Reputation points
2025-10-20T03:18:02.11+00:00

Here is a simple solution that worked for me -

in the file explorer, just disable this check box as shown in the image, this simply worked for me

(This happened on windows 10 as well!)
Screenshot 2025-10-20 084655

Was this answer helpful?

90+ people found this answer helpful.

103 additional answers

Sort by: Most helpful
  1. Matthew Fabilenia 10 Reputation points
    2025-10-20T17:11:45.98+00:00

    In our Windows domain environment, network file shares weren’t accessible due to this issue. It’s not practical to unblock tens of thousands of files, especially with NTFS permissions restricting who can modify zone flags.

    This bug disables file previews for Internet Zone files, and domain shares can fall into that category if the domain isn’t explicitly defined as part of the Local Intranet zone.

    The script below allows previews for Internet Zone files and adds the domain to the Local Intranet (Zone 1):

    # Allow previews for Internet Zone files
    reg add "HKLM\Software\Policies\Microsoft\Windows\CurrentVersion\Internet Settings\Zones\3" /v 180F /t REG_DWORD /d 0 /f | Out-Null
    reg add "HKLM\Software\Policies\Microsoft\Windows\CurrentVersion\Internet Settings\Lockdown_Zones\3" /v 180F /t REG_DWORD /d 0 /f | Out-Null
    
    # Flag internal domain as Local Intranet (Zone 1)
    reg add "HKLM\Software\Policies\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\Domains\yourdomain.local" /v "*" /t REG_DWORD /d 1 /f | Out-Null
    

    Run elevated and reboot.

    Yes, AI rewrote my post because I can't talk gud.

    Was this answer helpful?

    3 people found this answer helpful.

  2. Vivekanandan Tiwari 210 Reputation points
    2025-10-20T03:20:03.47+00:00

    Screenshot 2025-10-20 084655

    Disabling this option worked for me.,

    Was this answer helpful?

    3 people found this answer helpful.

  3. Joao Seabra 20 Reputation points
    2025-10-16T13:45:25.0033333+00:00

    Hi,

    I use Adobe Acrobat (Pro) to preview my files in explorer.

    Go to Adobe > Preferences > Security (Enhanced) and deselect 'Enable Enhanced Security' - you should be able to preview your PDF's in explorer.

    Not sure this is the right solution, but works for me. I need to preview documents for my work, no choice here since I updated to 25H2.

    Use this solution at your own risk.

    Regards

    Was this answer helpful?

    3 people found this answer helpful.

  4. Ian McDonald 50 Reputation points
    2025-10-16T11:13:03.9866667+00:00

    This worked for me. Go to Powershell and enter this text:
    gci -recurse "c:\users\user\downloads" | Unblock-File

    Replace the 'user' with your own name if that's in the folder path that you're trying to fix.

    And to fix the preview problem in the main Documents folder, I used the same command text in Powershell and just replaced 'downloads' with 'documents':

    gci -recurse "c:\users\user\documents" | Unblock-File

    Having spent some time with Windows Explorer since the above fix, which works well for me, it looks like I will need to refresh this command in Powershell daily, as every new file that goes into the Downloads folder seems to suffer the same blocking fate.

    Was this answer helpful?

    3 people found this answer helpful.

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.