How do I abort a program that keeps shutting down the PC?
Moderator: DosItHelp
-
- Posts: 4
- Joined: 17 Nov 2013 06:28
How do I abort a program that keeps shutting down the PC?
My friend has made a program which logs you out and some how it has put him in a loop and now he can only get on his pc for 15 secs
can this be fixed
can this be fixed
Re: Help!!!!!
Is the program a batch file using the shutdown command?
Re: Help!!!!!
Login normally, after the batch has run press windows+R button
type cmd and press enter
type shutdown -a
If that don't work
press F8 at boot time, select boot into safe mode.
Login and rename the logout file.
Reboot and delete the autorun entrance for the logout file.
both require admin privileges
type cmd and press enter
type shutdown -a
If that don't work
press F8 at boot time, select boot into safe mode.
Login and rename the logout file.
Reboot and delete the autorun entrance for the logout file.
both require admin privileges
Re: Help!!!!!
Please post the code for the program, then maybe close the batch file?
Re: Help!!!!!
Hold down the shift key until the PC is booted. It bypasses the startup group.
You may also get the popup from the accessibility widget, which you can select no to.
You may also get the popup from the accessibility widget, which you can select no to.
-
- Posts: 22
- Joined: 18 Oct 2013 05:28
Re: Help!!!!!
1. Press "Ctrl Alt Del" once the PC has booted up.
2. Close the Batch File.
If that doesn't work or the File is not located in the tab follow these steps, but you'll have to be FAST to get it done!
1. Open 'CMD' in the Run/Search bar.
2. Type "-a shutdown". (Which stands for 'abort shutdown').
If both those steps Don't work, you may need to rebuild your PC.
2. Close the Batch File.
If that doesn't work or the File is not located in the tab follow these steps, but you'll have to be FAST to get it done!
1. Open 'CMD' in the Run/Search bar.
2. Type "-a shutdown". (Which stands for 'abort shutdown').
If both those steps Don't work, you may need to rebuild your PC.
Re: Help!!!!!
Windows reads the location of the startUp folders here
Then looks and executes any executables found ( usually shortcuts, not the executables themselves )
Windows also executes any links specified under these keys.
Killing a mosquito with a bullet
and clean the affected areas.
Code: Select all
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders\Startup
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders\Common Startup
Windows also executes any links specified under these keys.
Code: Select all
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\RunOnce
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnce
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run
Access the drive from another OS like a boot-able ROM version of windows and clean the affected areas. Load the registry fileBatch Artist wrote:If both those steps Don't work, you may need to rebuild your PC.
Code: Select all
reg.EXE /load "%USERPROFILE%\NTUSER.DAT"
Re: How do I abort a program that keeps shutting down the PC
Batch PROgrammers wrote:My friend has made a program which logs you out and some how it has put him in a loop and now he can only get on his pc for 15 secs
can this be fixed
With a friend like that - who needs enemies
Re: How do I abort a program that keeps shutting down the PC
Another simple way would be to boot into safe mode and remove the program.