Filed in: Tech Tricks
Home » Tech Tricks
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....
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
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
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
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
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