Recover un-saved notepad document after Windows Update reboot

5

Windows did some updates last night and rebooted my PC :(

How can I, if at all, recover and un-saved notepad document that was sitting open?

Paul Brown

Posted 2011-03-09T09:05:54.153

Reputation: 273

Answers

5

Notepad doesn't auto-save its open file so unfortunately you have lost your work.

ChrisF

Posted 2011-03-09T09:05:54.153

Reputation: 39 650

6

As pointed out by ChrisF, your data is lost because of the reboot. Sorry.

To prevent such problems in the future, I'd recommend disabling the automatic reboot. Microsoft claims this is "by design", but do provide a way to disable it, by editing the registry:

HKEY_LOCAL_MACHINE \Software\Policies \Microsoft\Windows \WindowsUpdate\AU

Change the "NoAutoRebootWithLoggedOnUsers" DWord value to the required number.

0 = False (Allow auto-reboot) 1 = True (Disallow auto-reboot)

http://support.microsoft.com/kb/555444/en-us

Of course you should still reboot as soon as possible to avoid problems (with unpatched security holes, and with problems because of outstanding changes), but you can now do so at your leisure.

Note:

This should only be an issue for Windows XP SP1 and below; apparently in XP SP2 and later versions, Windows will no longer reboot on its own. It will still pop up reminders prompting you to restart, but it will only restart if you click the button in the popup.

sleske

Posted 2011-03-09T09:05:54.153

Reputation: 19 887