a computer (running Windows 3.1 or higher)
notepad or other simple text editing software
arms and legs are optional if you have speech recognition
keyboard
NOTE:This will not work on Macs (sorry macs)
Remove these ads by
Signing UpStep 1Open Notepad
Win 95-2000, Me
Start>Programs>Accesories>Notepad
Win XP and up
Start>All Programs>Accesories>Notepad
If you see the window shown below then you have notepad.
| « Previous Step | Download PDFView All Steps | Next Step » |











































taskkill explorer.exe
to freeze any background use
and in another file
start explorer.exe
to unlock the computer
Sorry if this doesn't work.
the only problem is that 7 is protected form killin the program so then i just restarts it self
@echo off
Title computer lock
cls
:Lock
echo "Please inter a password to lock your computer"
set/p "1Pass=>"
taskkill /IM explorer.exe
cls
echo "This Computer is locked."
:Locked
taskkill /IM explorer.exe
echo "Please type the password to unlock the computer"
set/p "2Pass=>" {this line needs to be skiped if nothing is enterd so it becomes a if enter key hit then take entered value and set it as varlable 2pass anyone know a way to do that?}
:Unlock
if %1pass%==%2pass% then goto End
goto Locked
:End
echo "Have a nice day!"
PAUSE