Can someone please help me create a batch file to disable the Windows 7 auto restart on system error. I cant find one anywhere.
Thanks.
Batch File- Disable Restart on Error
Moderator: DosItHelp
Re: Batch File- Disable Restart on Error
[mean-mode]
You could always try what what google says...
Or you could do this:
put the following code in a file, name it whateveryouwant.reg and then double-click it
[/mean-mode]
or if you don't want to have to look for yourself:
ps: yay! i could finally use lmgtfy.com
You could always try what what google says...
Or you could do this:
put the following code in a file, name it whateveryouwant.reg and then double-click it
Code: Select all
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CrashControl]
“AutoReboot”=dword:00000000
[/mean-mode]
or if you don't want to have to look for yourself:
Code: Select all
@echo off
reg add HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CrashControl /v AutoReboot /t REG_DWORD /d "0" /f
ps: yay! i could finally use lmgtfy.com

Re: Batch File- Disable Restart on Error
OMG. LOL. I never knew that site existed. That is hilarious.
Re: Batch File- Disable Restart on Error
I know how to google. no sarcasm needed, (although the site is funny). I just did not find any useful info. Thanks anyways.