This is BS. I am certaintly not writing scripts etc to fix this issue. Microsoft needs to get this update out asap so I can view my files in the explorer. I am willing to take the risk! This is crazy it is taking me forever to open up every file to view and/or changing properties to allow me to view it.
Windows preview pane stopped working with 10/15/2025 update -preview could harm computer
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
16 answers
Sort by: Most helpful
-
Kirill P 55 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
adminwith 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:$homeStep 2: Prevent Windows from setting the "file is blocked" flag for newly downloaded files. Open Registry Editor (
Win + R> typeregedit) 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 calledSaveZoneInformationand set it to1.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-NullAlternatively, you can do the same via Group Policy Editor (
Win + R> typegpedit.msc):User Configuration > Administrative Templates > Windows Components > Attachment Manager > Do not preserve zone information in file attachments > EnabledStep 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. -
Restee Miranda 14,095 Reputation points Independent Advisor2025-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:
- 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.
- 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.
- 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).
- 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.
-
poiu qwerty 20 Reputation points
2025-10-21T21:23:02.3333333+00:00 I uninstalled the recent update KB5066835 and the preview pane now works.
Hope this helps
-
Dave mettetal 15 Reputation points
2025-10-23T15:26:29.9533333+00:00 This fix only works on a per folder basis. If you are working with multiple folders on a given drive is there a way to input a global fix for all folders?
:
Unblock-File -Path "C:\Users\admin\Downloads*.pdf"