Microsoft Finally Fixes One of Windows 11’s Most Frustrating File Explorer Security Changes

Listen to this Post

Featured ImageA Small Button That Could Make Windows 11 Feel Normal Again

Few Windows features are as simple—or as useful—as the File Explorer Preview pane. You click a document, image, PDF, or other supported file, and its contents appear instantly on the side of the window. No second application. No waiting for Adobe Acrobat, Microsoft Word, or a browser to launch. Just a quick look and you know whether you found the file you were searching for.

That convenience changed dramatically after Microsoft introduced a security restriction in October 2025. Files downloaded from the internet could suddenly refuse to appear in the Preview pane, leaving users with a warning instead of the instant preview they had relied on for years.

At first glance, it looked like another Windows 11 annoyance. But Microsoft had a serious reason for making the change: the preview process could potentially expose NTLM authentication hashes when specially crafted files referenced external resources. Microsoft therefore chose security over convenience and disabled previews for files carrying the Mark of the Web (MotW) security indicator.

Now Microsoft appears to have found a much better compromise.

Windows 11 is adding a “Preview anyway” button that allows users to acknowledge the warning and preview a downloaded file when they trust both the file and its source. Microsoft officially documented the feature in its April 2026 Windows Insider release notes for Windows 11 24H2 and 25H2.

It is a tiny interface change, but it represents something much bigger: Microsoft is trying to restore convenience without simply throwing away the security protection that caused the problem in the first place.

The Preview Pane Was Never Just a Luxury

For many Windows users, the Preview pane is part of their everyday workflow.

A person managing hundreds of PDFs does not necessarily want to open every document just to discover whether it contains the right page. Someone working with photographs may want to identify an image without launching a full editing application. A business employee might receive dozens of documents in a single day and need to scan them rapidly.

The Preview pane turns that process into a simple selection.

The Details pane provides information about the selected file, such as its size, dates and metadata. The Preview pane, by contrast, attempts to display the contents themselves.

That distinction matters.

The Preview pane can save considerable time because it removes the need to repeatedly open and close applications simply to identify files.

Then October 2025 Changed Everything

Microsoft’s October 2025 security updates introduced a fundamental change to this behavior.

Starting with Windows security updates released on or after October 14, 2025, File Explorer began automatically disabling previews for files downloaded from the internet. Microsoft later documented the change in KB5070960 and explained that it was specifically designed to reduce the risk of NTLM hash leakage.

The result was confusing for ordinary users.

You could download a completely legitimate PDF from your own cloud storage, select it in File Explorer and expect to see its contents. Instead, File Explorer could display a warning saying that the file might harm your computer.

The file might be perfectly safe.

The source might be completely trusted.

Yet Windows would still refuse to preview it.

Why Microsoft Had to Take This Seriously

The security issue behind the change is not imaginary.

Microsoft explained that specially crafted files containing HTML-related references to external paths could potentially cause NTLM hash leakage when they were previewed. An attacker could theoretically use the mechanism to capture sensitive authentication information.

This is where Windows security becomes complicated.

A Preview pane sounds passive. Users often assume that simply looking at a document cannot be dangerous because they are not actually opening it.

But previews are not magic photographs.

To display a document, Windows and its associated preview handlers have to process the file. Depending on the file format and the components involved, that processing can create opportunities for unexpected behavior.

The attack surface is therefore larger than the simple visual interface suggests.

The Mark of the Web Is the Important Piece

The central concept behind

Windows can attach security information to files indicating that they originated from an internet security zone. Microsoft describes Attachment Manager as the Windows component that helps identify files originating from the internet or other potentially unsafe locations.

That information can influence how Windows handles the file.

A document created locally on your PC may behave normally.

A file transferred through certain local mechanisms may behave normally.

A file downloaded from a website, received through an email workflow or obtained from another internet-originated source can carry additional security information.

Windows then knows that the file did not originate inside the trusted local environment.

Why the Warning Appears

When File Explorer encounters a downloaded file carrying MotW, the Preview pane can display a warning instead of rendering the file.

Microsoft’s wording essentially tells the user that the file could potentially harm the computer and recommends opening it only when the file and its source are trusted.

The problem was not necessarily the warning itself.

The problem was what came next.

Previously, users had to right-click the file, select Properties, find the security section and choose Unblock before the preview would work.

That is reasonable for an administrator dealing with a suspicious executable.

It is much less reasonable when someone is trying to quickly preview a legitimate PDF they downloaded five minutes earlier.

The Old Workaround Was Buried in File Properties

The traditional solution was simple but unnecessarily cumbersome.

Right-click the file.

Open Properties.

Find the security-related option.

Select Unblock.

Apply the change.

Then return to File Explorer and attempt the preview again.

Microsoft itself documents this process as the supported way to remove the internet security block when the user is confident that both the file and its source are safe.

For one file, that is manageable.

For dozens or hundreds of files, it becomes a genuine productivity problem.

PowerShell Became the Escape Hatch

PowerShell also offered ways to automate unblocking in environments where users knew exactly what they were doing.

For example, administrators can inspect whether a file contains an alternate data stream associated with Zone Information:

Get-Item "C:\Downloads\document.pdf" -Stream Zone.Identifier

A trusted file can be unblocked with:

Unblock-File -Path "C:\Downloads\document.pdf"

Administrators can also process multiple files:

Get-ChildItem "C:\Downloads" -File | Unblock-File

However, that last command deserves a serious warning: do not blindly unblock everything in a Downloads folder.

The security restriction exists for a reason.

Automation should be based on a trusted source, controlled workflow or carefully selected files—not the assumption that everything downloaded from the internet is harmless.

Microsoft’s New Solution Is Much More Elegant

The new approach is far more intuitive.

Instead of forcing users to remove the security marker before they can see the document, File Explorer can warn them first and then offer a Preview anyway action.

Microsoft’s April 17, 2026 Release Preview announcement explicitly lists this functionality for Windows 11 24H2 and 25H2.

The sequence becomes much more logical:

Downloaded file → security warning → user confirms trust → Preview anyway → file preview

That is a dramatically better user experience than:

Downloaded file → security warning → search the web → Properties → Unblock → apply → return to File Explorer

Security and Convenience Finally Meet in the Middle

This is the most important part of the change.

Microsoft is not simply restoring unrestricted previews.

Instead, the security barrier remains.

The user is still warned.

The file is still identified as coming from an internet security zone.

The user must consciously decide whether to proceed.

The difference is that the decision can now be made directly inside the Preview pane.

That is a much more sensible security model for experienced users.

The April 2026 Insider Release Was the Turning Point

The feature was not merely a rumor.

Microsoft’s official Windows Insider release notes from April 17, 2026 list “preview anyway” as a new File Explorer feature for Windows 11 24H2 and 25H2.

The same release also included several other File Explorer improvements, including folder-view consistency, faster launch performance, reduced dark-mode flashing, expanded archive support and explorer.exe reliability improvements.

This suggests Microsoft is treating File Explorer as an actively evolving component rather than leaving the interface frozen while security changes accumulate around it.

This Is More Than a Cosmetic Button

It would be easy to dismiss “Preview anyway” as another tiny Windows interface adjustment.

That would miss the bigger picture.

Modern operating systems increasingly have to balance two conflicting expectations.

Users want computers to be fast, convenient and frictionless.

Security teams want computers to be suspicious, restrictive and cautious.

Neither side is wrong.

The problem occurs when one side completely overwhelms the other.

The October 2025 change prioritized security. The new button attempts to restore the missing usability layer.

The Security Model Is Actually Stronger Than “Just Let Me Preview It”

A common reaction to the original restriction was that Microsoft had become overly cautious.

But the better interpretation is that Microsoft discovered an attack surface in a feature most people never considered dangerous.

That is precisely how modern security incidents happen.

Attackers do not always need users to run an executable.

Sometimes they only need a feature to process a specially constructed file.

Sometimes the most dangerous functionality is the functionality users assume is passive.

Previewing a document sounds harmless.

From a security-engineering perspective, it is still code execution in the broad sense that software must parse and interpret the file to produce the preview.

What Users Should Do When the Button Appears

The new button should not become an excuse to ignore security warnings.

If you downloaded a PDF from a known government website, a trusted company portal or your organization’s approved cloud storage, the risk assessment may be straightforward.

If the file came from an unknown sender, a suspicious advertisement or an unexpected email attachment, the warning should make you stop.

The correct question is not:

“Can I preview this file?”

The correct question is:

“Do I trust this file and where it came from?”

Only after answering that question should you select Preview anyway.

Deep Analysis: What Is Happening Under the Hood?

The security chain can be simplified into several stages.

First, a file arrives from an internet-facing source.

Windows can record that origin through the Mark of the Web mechanism.

File Explorer detects the security context.

The Preview handler refuses to process the file automatically.

The user receives a warning.

The new interface provides a deliberate override.

This is essentially a user-mediated trust decision.

For administrators, you can inspect the Zone.Identifier stream with PowerShell:

Get-Content "C:\Downloadsxample.pdf" -Stream Zone.Identifier

A file carrying Mark of the Web may expose information similar to:

[ZoneTransfer]

ZoneId=3

The value 3 commonly corresponds to the Internet security zone.

You can also inspect the

Get-Item "C:\Downloadsxample.pdf" -Stream 

And, when you have independently verified the file and source, remove the block with:

Unblock-File -Path "C:\Downloadsxample.pdf"

To verify whether the block has been removed:

Get-Item "C:\Downloadsxample.pdf" -Stream Zone.Identifier

If the Zone.Identifier stream is no longer present, the file has been unblocked.

Again, the safest approach is not to eliminate MotW everywhere. The security marker provides useful information and participates in Windows’ broader protection model.

Why NTLM Hash Leakage Matters

NTLM is an older Windows authentication technology that still appears in many enterprise environments.

An NTLM hash is not simply a plaintext password, but possession of authentication material can still be valuable to attackers depending on the environment and the protections in place.

A successful credential-theft chain can potentially lead to lateral movement, privilege escalation or access to other systems.

That makes seemingly minor information leakage important.

A vulnerability that allows authentication material to leave a workstation may therefore become a stepping stone rather than the final objective.

Attackers Love Features Users Trust

The File Explorer situation illustrates an important cybersecurity principle.

Attackers do not necessarily need to convince users to click an obvious malicious executable.

They can target features that users naturally trust.

Previewing a document.

Generating a thumbnail.

Loading metadata.

Opening an archive.

Rendering an image.

Parsing a PDF.

Every one of these processes requires software to understand potentially hostile input.

That means every convenience feature can also become part of the attack surface.

The Downloads Folder Deserves More Respect

Windows users often treat Downloads as a temporary dumping ground.

That is understandable.

But from a security perspective, it is one of the most interesting directories on a typical PC because it contains content originating from outside the machine.

Executables, PDFs, archives, scripts, office documents and images can all arrive through this channel.

The Mark of the Web mechanism effectively gives Windows a way to remember that origin.

Removing that information indiscriminately can weaken useful security controls.

What the New Button Gets Right

The greatest strength of “Preview anyway” is that it does not pretend security warnings are unnecessary.

Instead, it gives the user a choice.

That is important because trust is contextual.

A file downloaded from a

A similarly named file downloaded from an unknown website may not be.

A security system cannot always make that distinction perfectly.

The user often has information the operating system does not.

The new interface gives that human judgment a controlled place in the process.

What Could Still Go Wrong

No security feature eliminates risk.

A user can still click Preview anyway on a malicious document.

Social engineering can still convince people that dangerous files are legitimate.

Attackers can still abuse trusted websites and compromised accounts.

And preview handlers themselves remain software that must safely process complex file formats.

The button therefore should be understood as a controlled exception, not a security bypass that makes dangerous files safe.

Why Microsoft’s Approach Is Better Than Removing the Restriction

Imagine Microsoft simply restored the old behavior.

Downloaded files would automatically preview again.

The interface would feel better.

But the underlying security problem would return.

That would be the wrong trade-off.

Instead, Microsoft has retained the protection and added a deliberate confirmation step.

This is a classic example of good security UX: protect the user by default, but provide a clear and understandable escape route when the user has enough context to make an informed decision.

The Broader Windows 11 Trend

The change also fits a wider pattern in Windows 11.

Microsoft has increasingly tried to make security protections more visible while reducing the number of confusing technical steps required to work with them.

That is particularly important because ordinary users should not need to understand NTLM, alternate data streams, security zones or Mark of the Web simply to preview a PDF.

The operating system should handle the complexity.

The user should receive a clear explanation and a sensible choice.

What Power Users Will Appreciate

Power users will probably welcome the new feature even more than casual users.

Administrators frequently process large collections of documents, troubleshoot downloaded files and move information between systems.

Having to repeatedly open Properties and manually unblock files is inefficient.

The direct Preview anyway control removes unnecessary friction while preserving the warning.

For enterprise environments, however, administrators may still want stricter policies depending on the sensitivity of the systems and the organization’s threat model.

A Better Security Philosophy for Windows

There is an important lesson here.

Security should not simply mean “No.”

Good security often means:

“Not automatically—but here is why, and here is a controlled way to proceed if you understand the risk.”

That philosophy makes technology safer without making it unnecessarily hostile to the people who use it.

Microsoft’s File Explorer change is a small example of that principle.

What Undercode Say:

  1. Security Was the Right Reason for the Original Restriction

Microsoft was justified in taking the NTLM leakage problem seriously.

  1. The User Experience Was the Weak Point

The original implementation protected users but made legitimate workflows unnecessarily painful.

  1. Previewing Is More Dangerous Than It Looks

A preview requires software to parse potentially hostile content.

4. Mark of the Web Is Valuable

MotW gives Windows useful context about where a file originated.

5. Security Context Matters

A locally created document and an internet-downloaded document should not necessarily receive identical treatment.

6. The Original Warning Was Incomplete

Telling users that a file may be dangerous without providing a convenient next action created unnecessary confusion.

7. Properties Was Too Deep

Requiring users to open Properties for a simple preview task was poor interface design.

8. PowerShell Was Powerful but Excessive

PowerShell solved the problem, but most ordinary Windows users should not need a command line for this task.

  1. The New Button Is a Better Compromise

Microsoft keeps the warning while allowing informed users to proceed.

10. Security Should Be Context-Aware

A trusted document from a known source is different from a random attachment.

  1. Users Often Have Better Context Than Windows

The operating system cannot always know whether a particular file is expected.

12. Humans Still Matter in Security

The best security architecture combines automated controls with informed user decisions.

  1. The Feature Should Not Become a Reflex

Clicking “Preview anyway” automatically defeats the purpose of the warning.

14. File Origins Deserve Attention

Knowing where a file came from is a critical part of assessing risk.

  1. Downloads Should Not Be Treated as Automatically Safe

Internet-originated content should always receive some level of suspicion.

16. Convenience Features Are Attack Surfaces

Previewing, thumbnail generation and metadata extraction all require file parsing.

17. Attackers Understand User Habits

They know people trust familiar Windows functionality.

  1. The Security Industry Has Learned This Lesson Repeatedly

Many attacks begin by abusing trusted components rather than obvious malicious programs.

19. Windows Has a Difficult Balancing Act

Microsoft has to serve both consumers and highly regulated enterprises.

20. One Default Cannot Satisfy Everyone

Home users and security-sensitive organizations may have very different risk tolerances.

21. Good Security UX Reduces Dangerous Workarounds

When official tools are inconvenient, users often invent their own shortcuts.

22. Those Shortcuts Can Be Worse

Blindly unblocking files is potentially more dangerous than using a controlled preview confirmation.

23. Microsoft Should Explain Security Changes Better

Major behavioral changes often surprise users because Windows does not always explain why they happened.

  1. The October 2025 Change Was Technically Important

It addressed a genuine security concern rather than being a random UI regression.

  1. The April 2026 Release Shows Microsoft Heard the Feedback

The Preview anyway control was officially documented in Microsoft’s Insider release notes.

26. This Is a Classic Security-UX Correction

The protection remains, but the workflow becomes much more practical.

27. Microsoft Is Not Removing the Guardrail

The user still has to acknowledge the warning.

28. That Is the Correct Direction

Security defaults should remain strong while legitimate overrides remain understandable.

29. Enterprise Administrators Should Be Careful

Security policy should determine whether users are allowed to override certain protections.

30. Home Users Need Simplicity

They should not have to understand alternate data streams to preview a document.

31. The Button Is Small but Meaningful

It fixes a disproportionate amount of frustration with a single interface element.

32. File Explorer Remains Central to Windows

Even as Microsoft adds cloud, AI and modern application experiences, users still spend enormous amounts of time managing files.

  1. Reliability Matters as Much as New Features

A beautiful interface means little if File Explorer becomes unreliable.

34. Security and Performance Must Evolve Together

Microsoft’s April release included broader File Explorer performance and reliability improvements alongside the new preview feature.

35. The Feature Could Reduce Support Requests

Fewer users should need help understanding why their downloaded documents suddenly stopped previewing.

  1. It Could Also Reduce Risky Unblocking Habits

Users can make a conscious decision instead of searching for scripts that disable security protections.

37. The Warning Should Remain Prominent

Microsoft should resist the temptation to make the security confirmation so subtle that users stop noticing it.

  1. Trust Should Be a Decision, Not a Habit

The safest user is not someone who never opens downloaded files, but someone who understands where those files came from.

39. Windows Security Is Becoming More Human-Centered

The ideal operating system protects users without constantly forcing them to fight its security mechanisms.

  1. “Preview anyway” Is the Right Kind of Fix

It does not erase

✅ The Preview Pane Was Disabled for Internet-Originated Files

Confirmed: Microsoft says Windows security updates released from October 14, 2025 onward automatically disable File Explorer previews for files marked with Mark of the Web.

Why it matters: The behavior was intentional and security-driven, not simply a random Windows 11 bug.

Verdict: The

✅ NTLM Hash Leakage Was the Security Concern

Confirmed: Microsoft explicitly states that the change mitigates a vulnerability involving potential NTLM hash leakage when unsafe files containing external HTML references are previewed.

Why it matters: This establishes that the restriction had a legitimate cybersecurity purpose.

Verdict: Accurate.

✅ “Preview anyway” Is an Official Windows Feature

Confirmed:

Why it matters: The feature is not merely an unofficial registry tweak or community rumor.

Verdict: Accurate.

❌ The Feature Should Not Be Described as Making Files Safe

Clarification: “Preview anyway” does not prove that a file is safe.

Why it matters: It simply gives the user an explicit opportunity to override the preview restriction after considering the warning.

Verdict: Any interpretation suggesting the button removes the underlying security risk would be misleading.

⚠️ The Original Rollout Timing Needs Updating

The original article suggested that the feature might begin rolling out in the coming weeks. That prediction has become outdated because Microsoft officially documented the feature in its April 2026 Release Preview build.

Verdict: The underlying feature is confirmed, but the article’s future-tense rollout language should be replaced with current 2026 context.

Prediction

(+1) Microsoft Will Continue Expanding the Trust-Based Preview Model

Microsoft is likely to continue refining File Explorer so that security restrictions become more contextual rather than simply blocking functionality outright.

The “Preview anyway” model provides a useful blueprint: Windows can maintain a secure default while allowing knowledgeable users to make deliberate decisions.

As Windows becomes more aggressive about protecting users from internet-originated content, similar confirmation-based controls could appear elsewhere.

(+1) File Explorer Will Become More Security-Aware

The distinction between local and internet-originated files is likely to remain important.

Future versions of Windows could provide even more detailed information about why a file has been restricted, where it originated and what risks are associated with overriding the protection.

(+1) Power Users Will Need Fewer Workarounds

The more security controls Microsoft exposes through understandable graphical interfaces, the less often users will need registry modifications or PowerShell scripts for everyday tasks.

That is a positive development for both usability and security.

(-1) Users May Still Click Through Warnings Too Quickly

There is also a potential downside.

If “Preview anyway” becomes a familiar button, some users may eventually click it without thinking.

Microsoft will therefore need to preserve meaningful warning language and avoid turning the security confirmation into another meaningless pop-up.

(+1) The Best Windows Security Features Will Become Invisible When They Work

The ideal outcome is simple: Windows quietly protects users in the background, but when legitimate work is blocked, it explains why and offers a controlled path forward.

That is exactly what the new File Explorer workflow is attempting to achieve.

Final Verdict: A Tiny Button With a Surprisingly Big Lesson

The story behind Windows 11’s “Preview anyway” button is bigger than File Explorer.

It is about the difficult balance between security and usability.

Microsoft discovered a legitimate security problem in 2025 and responded by restricting previews of internet-originated files. The decision improved security, but it also disrupted ordinary workflows and forced users toward manual unblocking procedures. Microsoft’s own documentation confirms both the reason for the restriction and the Properties-based workaround.

Now Microsoft is taking the next step.

Rather than abandoning the protection, it is giving users a controlled choice.

That is the smarter solution.

Security should not mean turning every trusted action into an obstacle course. At the same time, convenience should never mean silently processing potentially hostile content.

The “Preview anyway” button sits directly between those two extremes.

It tells Windows users something important: this file came from outside your trusted environment, so be careful—but if you know what you’re dealing with, you can make the final decision.

For a feature as ordinary as previewing a PDF, that may sound like a small improvement.

For Windows security, it represents a much more mature philosophy.

Protect first.

Explain clearly.

Then let informed users decide.

🕵️‍📝Let’s dive deep and fact‑check.

🎓 Live Courses & Certifications:

Join Undercode Academy for Verified Certifications

🚀 Request a Custom Project:

Secure, high-velocity infrastructure and disruptive technological engineering. Contact our engineering team for high-tier development and proprietary systems:
[email protected]
💎 Smart Architecture | 🛡️ Secure by Design | ⭐ Trusted by Thousands

References:

Reported By: www.windowslatest.com
Extra Source Hub (Possible Sources for article):
https://www.instagram.com
Wikipedia
OpenAi & Undercode AI

Image Source:

Unsplash
Undercode AI DI v2

🔐JOIN OUR CYBER WORLD [ CVE News • HackMonitor • UndercodeNews ]

💬 Whatsapp | 💬 Telegram

📢 Follow UndercodeNews & Stay Tuned:

𝕏 formerly Twitter 🐦 | @ Threads | 🔗 Linkedin | 🦋BlueSky | 🐘Mastodon | 📺Youtube