The original, sub-megabyte Notepad executable still hides in plain sight on most Windows 11 machines. And with a single toggle buried in Settings, you can make it your default plain-text editor again—while keeping Microsoft’s AI-powered modern app installed and available when you need it.

Windows 11’s revamped Notepad has pushed the venerable tool far beyond its roots. A formatting toolbar, Markdown preview, tabbed documents, spellcheck and autocorrect now ship as standard. Generative AI features—Rewrite, Summarize, and Write—are rolling out to more users, calling Microsoft’s cloud to transform selected text. For casual note‑takers, the additions remove friction. For developers, sysadmins, and anyone who handles raw configuration files, they risk altering data, phoning home, and adding latency to an app that was once the epitome of speed and predictability.

But Microsoft didn’t rip out the old Notepad. The classic binary—notepad.exe—typically sits at C:\Windows otepad.exe (and inside System32). The reason searching for “Notepad” launches the shiny new version is not that the old file is gone; it’s because the modern Notepad registers an App Execution Alias. That alias intercepts commands and directs them to the packaged app. Turn it off, and Windows falls back to the original on‑disk executable.

What Changed in Windows 11’s Notepad

The modern Notepad, delivered as a Store‑updatable package, now bundles:

  • Generative AI: Rewrite, Summarize, and Write tools that process text in Microsoft’s cloud. They require a Microsoft account and, in some commercial setups, draw from Copilot or Microsoft 365 AI credits.
  • Rich text and Markdown: A lightweight formatting toolbar and Markdown preview for quick notes without opening Word or a dedicated editor.
  • Spellcheck, autocorrect, tabs, auto‑save: Features that mirror a modern word processor, not a plain‑text scratchpad.

These conveniences come at a cost. Autocorrect can silently modify code or scripts. Cloud calls raise concerns about data residency, privacy, and network dependency. For regulated industries, even the presence of an app capable of sending text to Microsoft servers requires careful policy control.

How Microsoft Packages Notepad

The modern Notepad is a packaged app (often called the Store/UWP style) that can register one or more App Execution Aliases. On a fresh Windows 11 installation, the alias notepad.exe points to the new app. When you type notepad in Run, Search, or a command line, Windows resolves that alias first. The legacy binary at C:\Windows otepad.exe remains untouched, but it’s hidden from default invocation paths.

This design is deliberate: it lets Microsoft push feature updates through the Store pipeline while keeping the classic tool available for compatibility and administrative scenarios. IT admins and power users can therefore choose which version the system launches—without uninstalling anything.

The Safe, Reversible Steps to Restore Classic Notepad

Disabling the modern Notepad’s execution alias is the supported, non‑destructive way to make notepad.exe launch the legacy editor again. You don’t need to hack the registry, delete files, or copy binaries from other machines. Here’s the process:

  1. Open Settings (Win + I) and go to Apps.
  2. Click Advanced app settingsApp execution aliases.
  3. Scroll to the Notepad entry (it may appear as “Notepad.exe”) and toggle it Off.
  4. Open File Explorer, navigate to C:\Windows, and double‑click notepad.exe to verify the classic window appears. If you don’t see it there, look inside C:\Windows\System32.
  5. Right‑click the running classic Notepad and choose Pin to taskbar or Pin to Start. Alternatively, right‑click the executable in File Explorer and select Show more optionsCreate shortcut to place it on your desktop.

Once the alias is off, searching for “Notepad” or running notepad.exe will open the classic version. The modern app stays installed; you can still launch it from the Start menu’s app list or by navigating to its entry in the Apps section.

Why the Alias Toggle Works

App Execution Aliases are a feature of the modern app model. When enabled, they add the executable name to the system’s path resolution ahead of disk‑based binaries. Disabling the alias removes that override, so the command falls back to the standard Windows file search order—where C:\Windows otepad.exe takes precedence. This is the exact mechanism community guides and Microsoft documentation recommend for reverting to legacy tools without removing any components.

Making Classic Notepad the Default for .txt Files

If you want double‑clicked text files to open in the old editor, you’ll need to set file associations:

  • Right‑click any .txt file, choose Open withChoose another app.
  • Scroll down and click More apps, then Look for another app on this PC.
  • Browse to C:\Windows otepad.exe, select it, and check Always use this app to open .txt files.

Note that Windows 11’s modern Notepad is aggressive about reclaiming file associations, especially after updates. If the old association breaks, simply repeat the steps. In enterprise environments, administrators often deploy file association XML files through Group Policy or Intune to enforce the classic editor for all users.

Troubleshooting Common Scenarios

I don’t see notepad.exe in C:\Windows or System32
Some Windows editions or upgrade paths might omit the legacy binary. To reinstall it, go to Settings → System → Optional features → View features, search for “Notepad (system)”, and add it back. This restores the original executable through official Microsoft channels.

I disabled the alias but Win+R still opens the modern app
Double‑check you toggled the correct alias. Sometimes a session restart is needed for the change to propagate—sign out and back in, or reboot.

Can I just uninstall the modern Notepad?
Yes, you can right‑click it in the Start menu and select Uninstall. But that removes the managed update path for the new app, potentially leaving you without security patches for any remaining components. The alias toggle is preferred because it leaves everything intact and is instantly reversible. If you do uninstall, make sure you have a plan to reinstall via the Store if needed.

Is it safe to copy notepad.exe from another PC?
Don’t. Binary mismatches between Windows builds, locales, or architectures can cause crashes, missing DLL errors, or security vulnerabilities. Use the Optional Features method to obtain the correct version for your system.

Enterprise Controls: ADMX, Intune, and Policy

Organizations that need to block AI features across the estate should not rely on per‑user alias toggles. Instead, use the dedicated administrative template (ADMX) settings for Notepad:

  • Disable AI features in Notepad – a policy that removes the Rewrite, Summarize, and Write buttons machine‑wide. The corresponding registry value (DisableAIFeaturesInNotepad) can be deployed via Group Policy or Intune.
  • Platform‑wide generative AI control – the “Let Windows apps make use of text and image generative features” policy, found under App Privacy ADMX or Intune Settings Catalog, cuts off cloud generative services for all Windows apps, including Notepad.

Before enforcing these policies, verify them against the latest Microsoft Learn documentation and test on a limited set. Generative features often require authentication and can consume subscription‑based AI credits; review tenant licensing and cost implications.

For standardizing the classic Notepad experience across hundreds or thousands of devices:

  • Push a desktop shortcut to C:\Windows
otepad.exe via script or Intune.
  • Use a configuration profile to toggle the execution alias off if the built‑in policy doesn’t cover it (though the alias setting is user‑modifiable; enterprise admins often prefer removing the modern app entirely or hiding it through AppLocker).
  • Document rollback procedures and test after each feature update.

Security, Privacy, and Update Considerations

The modern Notepad’s cloud features mean that any text you run through AI becomes part of a server‑side processing pipeline. While Microsoft’s documentation states that input is not used to train models without consent, data still transits the internet and may be stored temporarily. For environments subject to GDPR, HIPAA, or other regulations, this data path is a compliance risk. Furthermore, the app’s ability to auto‑save and restore sessions could retain sensitive information in unexpected locations.

Classic Notepad avoids all these issues. It has no network stack beyond what Windows itself provides, no autocorrect that mutates data, and a tiny memory footprint. For editing firewall rules, .gitconfig, or batch files, it remains the safest choice.

A balanced approach: keep both versions. Use the modern Notepad for drafting emails or quick markdown notes; switch to classic when working on code, configs, or anything that must stay plain‑text. The alias toggle makes switching trivial.

When to Consider a Third‑Party Editor

If your needs outgrow plain text but you don’t want the AI baggage of the new Notepad, several alternatives fill the gap without relying on Microsoft’s cloud:

  • Notepad++ – open source, syntax highlighting, plugins, and extremely lightweight. It excels at code and log file analysis.
  • Visual Studio Code – a full‑featured editor with integrated terminal and extensions. Heavier than Notepad++ but far more capable for development.
  • Sublime Text / Pulsar (formerly Atom) – modern editors with clean interfaces and varied licensing.

None of these register the same execution alias as Notepad, so they coexist peacefully with both the classic and modern versions.

Future‑Proofing Your Setup

Microsoft’s packaging for Notepad could evolve. The UI path to the alias toggle may shift, or the name of the modern app’s executable may change. After major Windows 11 feature updates, re‑verify that the alias toggle and ADMX policies still produce the expected behavior. Monitor Microsoft Learn and the official Notepad administration documentation for any announcements about deprecation of the legacy binary.

For now, the classic executable remains a supported component. The Optional Features mechanism that installs it (Notepad (system)) is a sign that Microsoft intends to maintain backward compatibility. As long as that entry exists, the safe restoration path holds.

The Verdict: Revive Classic Notepad in Under a Minute

You don’t need to fight Windows 11 or run complex hacks to get back the editor that opens before the blink of an eye. Flip the execution alias off, pin the old binary, and both worlds coexist. The cost is zero, the risk is none, and you can flip back just as fast.

For IT teams, couple that with ADMX policies to lock down AI exposure, and you deliver a controlled experience that respects both productivity and privacy. In a landscape where AI keeps creeping into every click, the ability to say “no” without breaking the system is a rare and valuable lever—one that Microsoft, to its credit, left in plain sight.