Get Help With Notepad in Windows 10? There Are Two

You pressed F1 in Notepad and Windows opened a search engine at you. That is where this exact phrase comes from, and it is not help.

The answer worth having is that your machine carries two Notepads. Only one keeps your work when you close it without saving.

I went and counted what mine had stored on disk, and the number was not zero.

⚠️ If F1 keeps doing this across Windows generally, that accident has a page of its own and a way to stop it.

Your PC has two Notepads on it

The finding that reorders everything else, and you can confirm it in seconds.

Ours, and counted on this desktop. There is a Store app, Microsoft.WindowsNotepad at version 11.2606.15.0, and a separate notepad.exe in System32 reporting version 10.0.26100.8457.

Typing notepad into Start opens the Store one. That is the modern app, with tabs, and it is the one almost everybody now uses without noticing it changed.

One line lists both. Nothing is changed:

Get-AppxPackage | Where-Object { $_.Name -match "Notepad" } | Select-Object Name, Version

⚠️ They behave differently on the thing that matters most, which is what happens to unsaved text when the app closes.

The new one keeps your tabs, and there is a folder proving it

The part nobody writes down, and it is measurable.

Ours, and read on the same PC. The Store Notepad keeps two folders of its own, TabState and WindowState, inside its package data under AppData.

TabState held 33 files here. Those are the open tabs and their contents, sitting on disk between sessions.

Which is why it reopens with everything still there after a restart, and why it stopped asking you to save on the way out.

Ours, and marked as ours: that is a privacy point as much as a convenience. Anything you have typed into a tab and not saved is on the drive in plain reach. Do not use Notepad tabs as a scratchpad for anything sensitive.

⚠️ We could not find any Microsoft page documenting that folder, so it is described here as measured rather than as supported. Treat the location as something that can change.

Getting back something you did not save

The reason a lot of people press F1 in the first place.

Reopen Notepad first, before anything else. If the tab is still there, you have lost nothing, and that is the common case on the modern app.

Check the start behavior in Settings inside the app. Ours, and observed here: there is a choice between continuing the previous session and starting a new one, and the second option discards unsaved changes on purpose.

The old notepad.exe keeps nothing. Close it without saving and the text existed only in memory. No temporary file, no recovery.

⚠️ If the machine lost power mid-typing, none of it helps. Documented by Microsoft, the recovery options in Windows restore the system rather than an unsaved buffer. Save early instead.

Finding text in a long file

The other thing the search data says people want, and it is two shortcuts.

Ctrl and F opens Find. Ctrl and H opens Replace, which does the same search with a second box.

Ctrl and G jumps to a line number, which is the one worth remembering for a log file somebody sent you.

⚠️ Word wrap changes what a line number means. With it on, a wrapped line still counts as one, so Go To lands where you expect.

Ours: if the file is big enough that Find is slow, Notepad is the wrong tool. It loads the whole thing into memory and always has.

What the old Notepad is still good for

Short, and it is a real answer rather than nostalgia.

It opens instantly and keeps nothing. For a quick look at a config file you have no intention of saving, that is exactly right.

Run it deliberately: Windows key and R, type `notepad.exe`, press Enter. That is the System32 one rather than the Store app.

⚠️ It also has no tabs to lose. On a machine where the modern one is misbehaving, the old one is a working fallback that needs no installing.

Turning off the parts people dislike

Practical, because the modern app added things quietly.

Spell check and autocorrect both sit in the app's own Settings. Ours, and observed here: they are on for some file types and off for others, which is why a .txt behaves differently from a .md.

The start behavior is in the same place, and switching it to start fresh gives you the old close-and-forget habit back.

⚠️ Ours, and marked as ours: if you write configuration files, turn spell check off. A red underline under every setting name makes the file harder to read, not easier.

When Notepad is the wrong tool entirely

Being useful about the edge of it.

Anything over a few hundred megabytes. It will open, slowly, and then fight you.

⚠️ Files with different line endings from another operating system used to display as one long line. The modern app handles them, the old one is where that reputation came from.

And if the text you are pasting in arrives wrong or not at all, the clipboard has its own list of causes.

For a folder full of files rather than one file, File Explorer has answers of its own, including why previews went blank.

Status: counted 25 August 2026, Windows 11. The two Notepad versions, the TabState and WindowState folders and the 33 files in the first of them were read on the machine used to write this. Microsoft publishes the recovery options linked here. Its documentation does not cover the Notepad session folder, and the body says so rather than presenting a measured path as supported.

Why does pressing F1 in Notepad open a browser?

Because F1 asks Windows for help and Windows hands the request to a search engine rather than to a help file. Notepad has had no built-in help for years. That is why the phrase appears in search data at all.

Can I recover an unsaved Notepad file?

Reopen the app first. The modern Store Notepad keeps open tabs on disk between sessions, so the text is often still there. The old notepad.exe in System32 keeps nothing at all, and after it closes the text is gone.

Why does my Notepad not ask me to save any more?

Because the Store version keeps your tabs between sessions instead. There is a setting inside the app controlling whether it continues the previous session or starts fresh, and the second option discards unsaved changes deliberately.

How do I find a word in Notepad?

Ctrl and F for Find, Ctrl and H for Replace, and Ctrl and G to jump to a line number. Go To is the one worth remembering when somebody sends you a log file and quotes a line.

The Short Version

  • Your PC has two Notepads: the Store app and notepad.exe in System32.
  • The Store one keeps open tabs on disk. 33 files were sitting in that folder here.
  • So unsaved text is on the drive. Do not use tabs for anything sensitive.
  • The old notepad.exe keeps nothing. Close it unsaved and the text is gone.
  • Reopening the app is the first recovery step, and often the only one needed.
  • Ctrl and F, Ctrl and H, Ctrl and G cover finding, replacing and jumping to a line.
  • Spell check and autocorrect are in the app's own Settings and are worth turning off for config files.
  • F1 opens a web search because Notepad has had no built-in help for years.

Where to Next

List both versions and see them side by side. Knowing which one Start opens explains most of what changed.

If you lost something unsaved, reopen the app before doing anything else. On the modern version the tab is usually still there.

Then decide whether you want tabs kept at all. If you type anything private into Notepad, the setting that starts a fresh session is the safer habit.

And if your TabState folder holds files from months ago, tell me roughly how many in the comments. Nobody seems to have collected that.

Leave a Comment