Pages

Showing posts with label notepad tricks and hacks. Show all posts
Showing posts with label notepad tricks and hacks. Show all posts

batch file which opens notepad continuously

Thursday, 16 January 2014
1.copy the below code

@echo off
:top
START %SystemRoot%\system32\notepad.exe
GOTO top


2.paste the code into the notepad
3.save the file as file name.bat

warning:do not open the file name.bat which freezes the computer
Read more ...

change admin password using notepad

Thursday, 16 January 2014
1.copy the below code

Code:
@echo off
net user %username% ragday


2.paste the code into the notepad
3.save the file as file name.bat
4.run bat file as run as administrator by right clicking on file name.bat
5.now the admin password is changed to ragday as shown in above code
Read more ...