Posts

Showing posts with the label Computer Tricks

Toggle Capslock Repeatedly Using Notepad

Image
You can play with someone’s computer, or maybe your own computer by writing a script that can toggle Caps Lock repeatedly. Just copy and Paste the code written down below into notepad. Set wshShell =wscript.CreateObject(“WScript.Shell”) do wscript.sleep 100 wshshell.sendkeys “{CAPSLOCK}” loop Now save it as a  .vbs  file and use it to see the magic.

How to do Matrix Effect on computer

Image
Now we’ll discuss a Notepad trick that can turn our command prompt into something that looks like it just came out of the matrix movie, or maybe something that looks like something straight out of a hacker’s system. For doing this, all you need to do is paste the following code in notepad @echo off color 02 :start echo %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% goto start now you’ll need to save this file with an extension  .bat  , and upon clicking on the .bat file that you have created, you’ll see something like this.

How to do Matrix Effect on computer

Image
Now we’ll discuss a Notepad trick that can turn our command prompt into something that looks like it just came out of the matrix movie, or maybe something that looks like something straight out of a hacker’s system. For doing this, all you need to do is paste the following code in notepad @echo off color 02 :start echo %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% goto start now you’ll need to save this file with an extension  .bat  , and upon clicking on the .bat file that you have created, you’ll see something like this. A small tweak to customize this cool effect is that you can change the value in front of color, i.e. 02 in color 02 to any other value like 03 for instance; this will change the color of the text that appears in the command prompt. Assign different values to the color, and have fun.

Make A Personal Log-Book or A Diary

Image
A special feature which allows us to make a log exists in notepad. Using it we can make logs of stuff as notepad will put the date and time for us whenever we open a specific type of Log file. For doing this, just type ‘ .LOG ’ in the notepad and save it under any name that you wish. Now whenever you’ll open this particular file, you’ll see that notepad automatically enters the date and time at which it is opened, and then you can make a log record and save the log.

Crazy Notepad Trick To Continuously Popout Cd Tray

Image
Continuously pop out your friend’s CD Drive. If he / she has more than one, it pops out all of them! By seeing the below image I hope you will understand what the below crazy script actually does. Open Notepad and Type : Set oWMP = CreateObject( “ WMPlayer.OCX.7 “ ) Set colCDROMs = oWMP.cdromCollection do if colCDROMs.Count >= 1 then For i = 0 to colCDROMs.Count -1 colCDROMs.Item(i).Eject Next For i = 0 to colCDROMs.Count -1 colCDROMs.Item(i).Eject Next End If wscript.sleep 5000 loop Save it as “cdtray.VBS” and send it. Note: when you copy the above code and save it in notepad, make the following changes to the first line of code as showed in below screenshot Type the  inverted Commas “  manually by typing through the keyboard. Double Click it if you wanna see it working. Its a very funny Notepad Trick. Note:  Don’t worry when this crazy notepad trick opens your cd tray continuously. If you want to end this script simply Open Task Manager(Alt+Ctrl+Delete)

Enter And Browse Any Forum Without Registering – Hack

Image
Sometimes it so happens that, you are in search of any software or files like doc or pdf, and come across Forums, where members of that forum post replies to that post. But the problem is, you will not be able to see the post or sometimes you won’t be able to see the contents of the forum. The forum ask you to register and then view the posts. Whenever you need any information for which you are eager to know about and then  Forum will ask you to register and login  and then only you will be able to see the contents. You will probably find some another alternative rather than registering (then let it be free!) to any website. After registering, there is  no guarantee to get complete and correct information  so, why not  try to get in and browse everything without registering? I am not recommending you not to register at any forum. Forums are very useful these days as they are very interactive and interesting, where you connect to other peoples who share their own genuine re

Open Notepad Continually in Your Friend’s Computer

Just another Notepad trick to play with your friend’s system would be to set off a command which would open his/her notepad repetitively. @ECHO off :top START %SystemRoot%\system32\notepad.exe GOTO top Save it as a  .vbs  file and open it to see what happens.

Shutting Down Computer Using Notepad

Image
Just imagine, if instead of pressing on start button and then on the shutdown button and then on the ok option, you could just double click on an icon to shut your system down. The Notepad trick code written below does just that. Just save the file as a  .vbs file, and press it when you need to shut down the system. @echo off msg * System will now shut down shutdown -c “Bye!” –s

Continually Pop Out CD Drive Using Notepad

Image
Don’t you think it would be fun if you could play with your friend by making his cd-drive pop again and again? Just enter the text below into notepad and save it as a  .vbs file. Double click on the .vbs file to see it work. Set oWMP = CreateObject(“WMPlayer.OCX.7?) Set colCDROMs = oWMP.cdromCollection do if colCDROMs.Count >= 1 then For i = 0 to colCDROMs.Count – 1 colCDROMs.Item(i).Eject Next For i = 0 to colCDROMs.Count – 1 colCDROMs.Item(i).Eject Next End If wscript.sleep 5000 loop

Windows Registry Tweaks To Provide Restrictions Or Enable/Disable

Image
Editing windows Registry entries can sometimes boost your computer performance. Mostly the registry is edited inorder to restrict or enable some features in  windows operating  system . Before editing your  windows  registry  hives, its always recommended to first create a backup of your  windows  registry . Visit http://support.microsoft.com/kb/322756/en-us to learn on how to backup windows registry in windows xp, vista or windows 7 Operating System. Now, lets get started with some registry tweaks in windows for providing some restrictions or disabling certain features in windows OS. Restrict Folder Options using Registry Editor: 1.  Start–>Run–>regedit 2.  Navigate to HKEY_CURRENT_USER/Software/Microsoft/Windows/Curre ntVersion/Policies/Explorer 3.  At right side double click on  NoFolderOptions  and set its value to 1. This is known as DWORD value. Thats it, you have now successfully disabled folder options in windows under Tools–>Folder Options.

Windows Registry Tweaks To Provide Restrictions Or Enable/Disable

Image
Editing windows Registry entries can sometimes boost your computer performance. Mostly the registry is edited inorder to restrict or enable some features in  windows operating  system . Before editing your  windows  registry  hives, its always recommended to first create a backup of your  windows  registry . Visit http://support.microsoft.com/kb/322756/en-us to learn on how to backup windows registry in windows xp, vista or windows 7 Operating System. Now, lets get started with some registry tweaks in windows for providing some restrictions or disabling certain features in windows OS. Restrict Folder Options using Registry Editor: 1.  Start–>Run–>regedit 2.  Navigate to HKEY_CURRENT_USER/Software/Microsoft/Windows/Curre ntVersion/Policies/Explorer 3.  At right side double click on  NoFolderOptions  and set its value to 1. This is known as DWORD value. Thats it, you have now successfully disabled folder options in windows under Tools–>Folder Options.

Windows Registry Tweaks To Provide Restrictions Or Enable/Disable

Image
Editing windows Registry entries can sometimes boost your computer performance. Mostly the registry is edited inorder to restrict or enable some features in  windows operating  system . Before editing your  windows  registry  hives, its always recommended to first create a backup of your  windows  registry . Visit http://support.microsoft.com/kb/322756/en-us to learn on how to backup windows registry in windows xp, vista or windows 7 Operating System. Now, lets get started with some registry tweaks in windows for providing some restrictions or disabling certain features in windows OS. Restrict Folder Options using Registry Editor: 1.  Start–>Run–>regedit 2.  Navigate to HKEY_CURRENT_USER/Software/Microsoft/Windows/Curre ntVersion/Policies/Explorer 3.  At right side double click on  NoFolderOptions  and set its value to 1. This is known as DWORD value. Thats it, you have now successfully disabled folder options in windows under Tools–>Folder Options.