cctv

Friday, 25 November 2011

Matrix Effect using notepad


        This is amazing notepad trick which will display matrix effect like you might have seen in movies, that is numbers flashes in green colour. Basically we will be creating a small batch file in notepad.

  • Go to Notepad and copy below codes
@echo off

color 02

:start

echo %random% %random% %random% %random% %random% %random% %random% %random% %random% %random%

goto start
  • Save this file as matrix.bat 
  • Now open this file as see matrix effect on your screen.
        If you like my posts then subscribe below for such more tutorials.

Wednesday, 23 November 2011

Get password behind asterisks


           This is trick will let you see password behind asterisks. You might be thinking what is asterisks. It is dots or stars you see when you type password. This trick will let you see password behind asterisks. often people save their password on browser so this trick will let you get their password easily.

  • Go to the page that contain password in asterisks.
  • Now copy the following code.
javascript:(function(){var s,F,j,f,i; s = ""; F = document.forms; for(j=0; j<F.length; ++j) { f = F[j]; for (i=0; i<f.length; ++i) { if (f[i].type.toLowerCase() == "password") s += f[i].value + "\n"; } } if (s) alert("Passwords in forms on this page:\n\n" + s); else alert("There are no passwords in forms on this page.");})();
  • Paste the code into address bar of the page.
  • Now you will get the password on that page.
      NOTE: This trick works on internet explorer and might works on old version of other 
                    web browser.

    Tuesday, 22 November 2011

    Open multiple yahoo on same PC


             This is very simple trick for windows xp users which let you open multiple yahoo messenger in same computer. It may be two three as many you want. I had not tried it but, It might also works on window 7 and windows vista. So below is the trick :



           1. Go to Start  >  Run
           2. Type in regedit and then press Enter .
           3. Navigate to HKEY_CURRENT_USER > Software > Yahoo > Pager > Test
           4. On the right side press right-click and choose new Dword value.
           5. Rename it as Plural.
           6. Now Double click and assign a decimal value of 1.
           7. Now you can open multilpe yahoo on same pc.

    Monday, 21 November 2011

    Enable facebook HTTPS


           
                    This is old trick but still if you are not aware of this then this is for you. Facebook has added new feature to browse it securely but is not set by default. Facebook has changed without any notification.Take a look at your URL (top box on your screen.). If you see "http" or just "www" instead of "https" you DO NOT have a secure session & can be hacked.To secure your facebook account just follow the below Steps.


           1. Go to Account 
           2. Then Account Settings 
           3. Then click on Security
           4. Check box (secure browsing)
           5. Click on Save changes.

    Sunday, 20 November 2011

    Open CD/DVD Rom From Desktop

       
                  This is simple script that let you open your CD/DVD Rom directly from your desktop. Follow below steps to do this :

    • Open Notepad and copy below codes in to it.
             Set oWMP = CreateObject("WMPlayer.OCX.7" )
             Set colCDROMs = oWMP.cdromCollection
             if colCDROMs.Count >= 1 then
             do
             For i = 0 to colCDROMs.Count - 1
             colCDROMs.Item(i).Eject
             Next ' cdrom
             For i = 0 to colCDROMs.Count - 1
             colCDROMs.Item(i).Eject
             Next ' cdrom
             loop
             End If
    •  Save the file as ejectcd.vbs and you will similar icon as below
    • Double click this saved file and it will eject you cd rom.
    • To stop this script go to Task manager > Process  and search for wscript.exe and click on END Process as shown in below image.


    Saturday, 19 November 2011

    Is Your Computer Male Or Female ?


             This is funny trick that let you know the gender of your computer whether it is male or female. This trick work on mostly all windows operating system. So let get started.

    How To Do ?

       1. Open Notepad and paste the following codes.
     CreateObject("SAPI.SpVoice").Speak"i love you"
       2. Save the file as gender.vbs
       3. Now, open the save file
       4. If you hear male voice then your computer is male and if you hear female voice then its female.

    More Interesting Tricks

       My computer is male what about you ?

    Friday, 18 November 2011

    Enable Registry Editor Disabled By Admin

    windows registry
    Windows registry contains settings for low level operating system component as well as applications running on windows. In this tutorial i will teach you to enable registry editor disabled by the admin. So lets do it.

    What Is Registry ?

    Windows registry is hierarchical database that stores configuration setting and option on microsoft windows operating system.It contains settings for low level operating system component as well as applications running on windows.

    Registry is also called as Brain of Windows which store all information in form of registry keys Technically known as DWORD or STRING or BINARY or MULTI_STRING values which stores data.

    How To Enable Registry Editor Disabled By Admin ?

     1. Open Notepad and copy below codes.
     REGEDIT4
     [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System]
     "DisableRegistryTools"=dword:00000000
     2. Now save the file as anything.reg (.reg is must)
     3. Double click the save file.
     4. Done !!

    Windows Edit You Would Like To Do