Windows preview pane stopped working with 10/15/2025 update -preview could harm computer

fleming 100 Reputation points
2025-10-15T14:12:18.86+00:00

Essentially, opening files takes a long time and the preview page allowed to me to check files without opening them, for moving files to/from an appraisal workfile etc. Windows update just broke this. The error message I get is "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". This pattern is common, Windows update routinely introduces user devastating bugs and efficiency downgrades, and I wish I could permanently remove Windows update functionality from my computer. Is there a fix for this windows preview bug on the horizon?

Windows for home | Windows 11 | Windows update
{count} votes

9 answers

Sort by: Most helpful
  1. Rez 4,715 Reputation points Independent Advisor
    2025-10-15T15:06:06.2666667+00:00

    Hi Fleming,

    The October 15, 2025 Windows update introduced a new security feature that flags certain files in the preview pane with the 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."

    This has disrupted workflows for many users who rely on the preview pane to quickly inspect files without opening them.

    It's likely tied to tightened security policies around file previews. Since it's related to new protections against potentially malicious files, especially those downloaded from the internet or shared via network drives.

    There’s no confirmed fix yet, but here are a few things you can try:

    1. Unblock the file manually:

    Right-click the file, go to Properties, and if you see an "Unblock" checkbox at the bottom, check it and click Apply. This tells Windows you trust the file.

    1. Check Group Policy settings:

    If you're on Windows Pro or Enterprise, open the Group Policy Editor (gpedit.msc) and navigate to:

    User Configuration > Administrative Templates > Windows Components > File Explorer

    Look for settings related to "Do not allow previewing attachments" or similar and adjust accordingly.

    1. Roll back the update (temporary fix):

    If this issue is severely impacting your work, you can uninstall the October update via:

    Settings > Windows Update > Update History > Uninstall Updates

    Look for the update installed on or around October 15, 2025 (likely KB5066835 or KB5066793).

    1. Use third-party preview tools:

    Apps like QuickLook or PowerToys (with preview handlers) can offer similar preview functionality outside of File Explorer. Just be aware that PowerToys may also be affected depending on the file type and system configuration.

    With this, you can help by submitting feedback via the Feedback Hub app in Windows.

    5 people found this answer helpful.

  2. Kirill P 25 Reputation points
    2025-10-17T18:45:56.86+00:00

    After applying this solution, Windows will stop showing the "security warning" when you try to open files downloaded to your Downloads folder.

    Step 1: Unblock all already downloaded PDF files. Open PowerShell as Administrator and run:

    Unblock-File -Path "C:\Users\admin\Downloads\*.pdf"
    

    Replace admin with the actual path where your files are downloaded. Usually, it's your user folder on drive C. You can check your exact user path by running this command in PowerShell:

    $home
    

    Step 2: Prevent Windows from setting the "file is blocked" flag for newly downloaded files. Open Registry Editor (Win + R > type regedit) and navigate to:

    Computer\HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\
    

    Create a new key named Attachments. Inside it, create a new DWORD (32-bit) value called SaveZoneInformation and set it to 1.

    Or paste this in PowerShell:

    New-Item -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Attachments" -Force | Out-Null
    New-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Attachments" -Name "SaveZoneInformation" -PropertyType DWord -Value 1 -Force | Out-Null
    

    Alternatively, you can do the same via Group Policy Editor (Win + R > type gpedit.msc): User Configuration > Administrative Templates > Windows Components > Attachment Manager > Do not preserve zone information in file attachments > Enabled

    Step 3: The same issue can happen when opening PDFs from shared network locations. In that case, do the following: Press Win + R, type inetcpl.cpl, and open the Security tab. Select Local intranet > click Sites > check Automatically detect intranet network. You can also click Advanced, then add the required network IP range manually — for example: 192.168.1.* > click Add.

    3 people found this answer helpful.

  3. Gajanan Narwade 10 Reputation points
    2025-10-16T10:54:51.76+00:00

    Uninstalling updates of 15 oct 2025, has resolve my preview pan issue.

    2 people found this answer helpful.

  4. Dkotes 5 Reputation points
    2025-10-18T19:40:25.42+00:00

    I'm also currently suffering from this problem and it is quite annoying. I have a large number of Scientific Journal Articles I need to organize based on their actual titles and other identifying information found in the preview, not found in their default file name.

    1 person found this answer helpful.
    0 comments No comments

  5. Paul L 15 Reputation points
    2025-10-20T13:16:54.1066667+00:00
    1 person found this answer helpful.
    0 comments No comments

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.