Home » Tech Tricks

Male or Female?

Posted by on October 12, 2011
Want to know the gender of your PC? (I know you are like wtf?). Try this little trick to find it out ^^ Open notepad and paste the following piece of text in the file and SAVE IT AS computerGender.vbs or whatever you want to but make sure the file format is .vbs CreateObject("SAPI.SpVoice").Speak"I know how to dance" After saving the file, open it....
Filed in: Tech Tricks

Keyboard Trick

Posted by on October 7, 2011
Ever wanted to try something cool with the Keyboard LED’s? Here is something you will love to! Keyboard LED’s can dance. What you need to do is: Open notepad and paste the following piece of text in the file and SAVE IT AS techNoodles.vbs or whatever you want to but make sure the file format is .vbs Set wshShell =wscript.CreateObject("WScript.Shell") do wshshell.sendkeys...
Filed in: Tech Tricks

Rename Recycle Bin

Posted by on October 5, 2011
Tired of looking an the same old name for the THE RECYCLE BIN!! Here is a trick to rename it. Step 1: Go to Start , Run and type “Regedit”   Step 2: Press Ctrl+F and search for Recycle Bin   Step 3: Change the value data to whatever you want to name the bin!   Step 4: Press F3 to search again and change the value data with the same...
Filed in: Tech Tricks

Block Webistes

Posted by on October 2, 2011
Are you tired of using software’s to block websites on your computer? Well there is an easy way to do it without installing software. Open Run and type or just copy the following line and press Enter: C:\WINDOWS\system32\drivers\etc Locate the file “hosts” and open it with Notepad or any other text editor. Under the last line write this: 127.0.0.2             ...
Filed in: Tech Tricks

Shutdown Computer

Posted by on October 2, 2011
If you don’t like to shut down your computer by going to start menu, then there is an easy way to do it. Type the following command in notepad and save it as .bat shutdown –s –t 30 The line explains itself.  shutdown –s is the command that shutdowns the computer. -t is used to specify the amount of time in seconds after which you want the computer...
Filed in: Tech Tricks

Steganography: An Example

Posted by on September 30, 2011
The task is to hide a “rar” file inside a jpg image. Requirements: Image File Data to be hidden(Compressed Form (rar)) In the image above you can see that we have the two required files. Note: Before hiding the data, the size of the image file is 1.36mb. Steps  Open command prompt and go where your files are located.  Write the following command copy...
Filed in: Tech Tricks