WJunction's official - Computer Tricks Thread!

Status
Not open for further replies.
Trick Number?

And Anyways, I Have Given A Clean Title To All The Tricks... Still, Ready To Say. ;)

----

Trick #7 One Of My Favorite's Added... :D
 
Last edited:
Thanks Both of you, I Am Sharing Only The Ones I Know. :P So Doing it slowly... :)

----

Trick #8 Added... ;)

Want Some Come & Get Some! :P
 
Last edited:
You can restore the boot.ini file by inserting a windows 7 disc and running something like fixboot fixmbr in the command line. (Off the top of my head)
 
Locker For Your Computer

1.)Open a notepad
2.)Copy & Paste


Code:
@ECHO OFF 
title Folder Locker 
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK 
if NOT EXIST Locker goto MDLOCKER 
:CONFIRM 
echo Are you sure u want to Lock the folder(Y/N) 
set/p "cho=>" 
if %cho%==Y goto LOCK 
if %cho%==y goto LOCK 
if %cho%==n goto END 
if %cho%==N goto END 
echo Invalid choice. 
goto CONFIRM 
:LOCK 
ren Locker "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" 
attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" 
echo Folder locked 
goto End 
:UNLOCK 
echo Enter password to Unlock folder 
set/p "pass=>" 
if NOT %pass%==type your password here goto FAIL 
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" 
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Locker 
echo Folder Unlocked successfully 
goto End 
:FAIL 
echo Invalid password 
goto end 
:MDLOCKER 
md Locker 
echo Locker created successfully 
goto End 
:End

3.) save with a .bat extension
4.) double click the bat file if will create a folder named locker
5.)Move any files you want to be hidden in your locker
6.)double click the bat again and you will be asked to lock when the folder is locked it will dissapear
7.)to unlock the folder double click the bat file enter any pass


:sun: ENJOY!!!! :sun:
 
Search Options Opens When I Click On My Drives

If search opens when you double click on any windows drive, then try this


  • Open Start >> Run or press Window key + r
  • Type regsvr32 /i shell32.dll ( without quotes ) and press Enter
  • After the command run successfully, you will see a message saying DllRegisterServer and DllInstall in Shell32.dll succeeded.
Enjoy !!! :sun:
 
Status
Not open for further replies.
Back
Top