TiPs AnD TrIcKs........

kpg

Well-known member
  • Jun 3, 2008
    3,445
    1,805
    113
    In My Home
    {10}

    Did you know that the flight number of the plane that had hit WTC ...on
    9/11 was Q33N ....Open your Notepad in ur computer and type the flight
    number i.e Q33N...
    Increase the Font Size to 72, Change the Font to
    Wingdings.
    U will be amazed by the findings.

    Hows That
    rolleyes.gif
    rolleyes.gif

     
    • Like
    Reactions: ac2000

    kpg

    Well-known member
  • Jun 3, 2008
    3,445
    1,805
    113
    In My Home
    INCREASE THE BANDWIDTH OF UR COMPUTER :

    WE ALL GET A FIXED BANDWIDTH FROM OUR ISP(INTERNET SERVICE PROVIDER) , be it MTNL,BSNL,AIRTEL,etc...
    but our OS keeps 20% of this bandwidth reserved for itself, which is unrequired n can be reduced to 0% safely......

    to do this:


    • go to run type: gpedit.msc enter
    • a window named "group policy will pop up" here double click on computer configuration
    • double click on administrative templates n then network
    • then double click on the QoS folder icon
    • here u'll get an icon titled as "limit reservable bandwidth".double click on it (or go to its properties)
    • in the settings tab select "enabled" n reduce the bandwidth limit to 0%. click on ok n close the window.


     

    kpg

    Well-known member
  • Jun 3, 2008
    3,445
    1,805
    113
    In My Home
    Different ways to shutdown ur pc There are so many different ways to turn off your Windows XP computer, let's look at some of them: 1. The standard approach - click the Start Button with your mouse, then select the Turn Off menu and finally click the Turn Off icon on the Turn Off computer dialog. blink.gif 2. Press Ctrl+Esc key or the Win key and press u two times - the fastest approach. 3. Get the Shutdown utility from Download.com - it add the shut down shortcuts for you. Else create them yourself using approach 4. 4. Create a shutdown shortcut on your desktop. Right click on the desktop, choose New Shortcut and type shutdown -s -t 00 in the area where you are asked to specify the location of the program file. Now you can just double click this icon to turn off the computer. The best location would be your quick launch bar. 5. Press the Win key + R key to open the run window. Type shutdown -s -t 00. [s means shutdown while t means the duration after which you want to initiate the shutdown process]. If some open processes or application won't let you turn off, append a -f switch to force a shut down by closing all active processes. 6. Win+M to minimize all windows and then Alt+F4 to bring the Turn Off computer dialog. 7. Open Windows Task manager (by right clicking the Windows Task bar or Alt+Ctrl+Del) and choose Shut down from the menu. Useful when the Windows are not responding. 8. open task manager--->click on shutdown--->hold the ctrl key and click on Turn off::::::: pc will be turned off in 3 secs.. fastest method other than hard shutdown
     
    Last edited:

    kpg

    Well-known member
  • Jun 3, 2008
    3,445
    1,805
    113
    In My Home
    Different ways to shutdown ur pc

    There are so many different ways to turn off your Windows XP computer, let's look at some of them:


    1. The standard approach - click the Start Button with your mouse, then select the Turn Off menu and finally click the Turn Off icon on the Turn Off computer dialog. blink.gif

    2. Press Ctrl+Esc key or the Win key and press u two times - the fastest approach.

    3. Get the Shutdown utility from Download.com - it add the shut down shortcuts for you. Else create them yourself using approach 4.

    4. Create a shutdown shortcut on your desktop. Right click on the desktop, choose New Shortcut and type shutdown -s -t 00 in the area where you are asked to specify the location of the program file. Now you can just double click this icon to turn off the computer. The best location would be your quick launch bar.

    5. Press the Win key + R key to open the run window. Type shutdown -s -t 00. [s means shutdown while t means the duration after which you want to initiate the shutdown process].

    If some open processes or application won't let you turn off, append a -f switch to force a shut down by closing all active processes.



    6. Win+M to minimize all windows and then Alt+F4 to bring the Turn Off computer dialog.

    7. Open Windows Task manager (by right clicking the Windows Task bar or Alt+Ctrl+Del) and choose Shut down from the menu. Useful when the Windows are not responding.


    8. open task manager--->click on shutdown--->hold the ctrl key and click on Turn off::::::: pc will be turned off in 3 secs.. fastest method other than hard shutdown


     

    kpg

    Well-known member
  • Jun 3, 2008
    3,445
    1,805
    113
    In My Home
    Hide ur drives
    How to Hide the drives(c:,d:,e:,a:...etc)
    How to Hide the drives(c:,d:,e:,a:...etc)
    This is a great trick you can play on your friends. To disable the display of local or networked drives when you click My Computer.



    1.Go to start->run.Type regedit.Now go to:

    HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer

    Now in the right pane create a new DWORD item and name it NoDrives(it is case sensitive). Now modify it's value and set it to 3FFFFFF (Hexadecimal) .Now restart your computer. So, now when you click on My Computer, no drives will be shown(all gone...). To enable display of drives in My Computer, simply delete this DWORD item that you created.Again restart your computer.You can now see all the drives again.

     

    kpg

    Well-known member
  • Jun 3, 2008
    3,445
    1,805
    113
    In My Home
    Amezing trick to lock folder

    this 1 is amezing trick to lock u r folder
    using this trick not only lock u r folder but also hide it
    here it is

    copy following program:-

    cls
    @ECHO OFF
    title Folder Locker
    if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
    if NOT EXIST Locker goto MDLOCKER
    :CONFIRM
    echo Are you sure u want to Lock the 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 Locker "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
    attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
    echo Folder locked
    goto End
    :UNLOCK
    echo Enter password to Unlock folder
    set/p "pass=>"
    if NOT %pass%==type your password here goto FAIL
    attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
    ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Locker
    echo Folder Unlocked successfully
    goto End
    :FAIL
    echo Invalid password
    goto end
    :MDLOCKER
    md Locker
    echo Locker created successfully
    goto End
    :End





    now go for following few steps
    1>copy above folder into notepad.
    2>the text which is written in bold letters delete it & type u r password there.
    3>save that file by extension .bat ( name is u r choice)
    4>now on ur screen there is a bat file appear.
    5>double click on that file.
    6>u will see the locker folder.
    7>save the files in that folder.
    8>double click on that folder & lock that folder
    9>after lock that folder it will become hidden.
    10>to open that folder double click on that bat file
    11>type ur password & open that folder


     

    kpg

    Well-known member
  • Jun 3, 2008
    3,445
    1,805
    113
    In My Home
    Moving your Temporary folder to a new location

    You can easily move your Internet Explorer Temporary folder to your Start menu, or a completely new location. To place it on your Start menu:

    Click the start button.
    Select programs
    Click Windows Explorer
    From here, you must locate your Temporary Internet Files folder.
    Once you do, click and drag the folder onto the Start button.

    To place the folder in another location:

    From Internet Explorer, open the View menu.
    Click Options.
    Click the Advanced tab.
    Click on Settings.
    Click on Move Folder.
    Select the new folder and click OK to save your settings.

    You must restart your computer for changes to take effect.



     
    • Like
    Reactions: C$K

    kpg

    Well-known member
  • Jun 3, 2008
    3,445
    1,805
    113
    In My Home
    Hidden User Account

    Normally when you log into XP, you see the startup screen where you see all the icons for the users who can access. What this tip does is allow you to hide a desired account from this screen. If you want to log on as this user you have to press Cntrl+Alt+Del twice at the Welcome screen to make a Windows Security dialog box appear.
    Here you can type in the user name and password of the hidden account and log in. Limited Users shouldn't be able to see any sign of you except for the listing in the Documents and Settings folder. Other administrative users will be able to see your hidden account in Control Panel/User Accounts, so keep this in mind when you're planning this out.



    All right, now down to the good stuff. If having a hidden account sounds like your cup of tea, and you have no problem with small Registry augmentation, then let's go:

    * First we need to open up the Registry Editor. Go to Start/Run and type "regedit" and click OK

    * You should be looking at the Registry editor, and what we need to do now is navigate to H-KEY\Software\Microsoft\Windows NT\CurrentVersion\Winlogon\SpecialAccounts\Userlist . You will not see this folder if you do not have "show hidden system files" turned on.

    * Once here we need to create another DWORD value. This is easier than it sounds, right click on the User list label file on the left side of the screen and select New>DWORD . You'll see the new entry in the right pane of the window, rename this value the name of the user account you want hidden (exactly how it is listed in the Startup screen, case sensitive) and leave the value at 0.

    * Close your Registry Editor and restart the PC. When the Welcome screen comes up you'll notice that there's no icon for the user you just concealed. So how do you log in? This is where you press Cntrl+Alt+Del 2x's and the Windows Security Dialog box will come asking you to authenticate (name/password) after this the system should log you in.

    Here's one more thing you might want to keep in mind—Windows logon screen. This is the screen where you see the available users you can choose to log in as. You can turn this option on/off in the User Accounts ( Start/Control Panel/User Accounts then "Change the way Users log in or off" and "Use Windows Welcome Screen" and you need to turn it off if you plan on using a hidden account and there are no other accounts on the system. The reason why is that the Windows doesn't have any user accounts to display in the Welcome screen, so it will continuously reboot. Now if you do run into this or any problems simply enter Safe mode at the next boot, this will allow you to go to the User Accounts Window and fix any problems.

    If you find that you can't log in at all with your hidden account go back and look at the registry value you created. Make sure you're spelling the user name is correct and that it's in the right location in the registry.


    Ko Ape YaLuWonta Epa WAge..... :no:
     

    Rafiya

    Member
    Mar 6, 2011
    608
    10
    0
    Amezing trick to lock folder



    this 1 is amezing trick to lock u r folder
    using this trick not only lock u r folder but also hide it
    here it is

    copy following program:-

    cls
    @ECHO OFF
    title Folder Locker
    if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
    if NOT EXIST Locker goto MDLOCKER
    :CONFIRM
    echo Are you sure u want to Lock the 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 Locker "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
    attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
    echo Folder locked
    goto End
    :UNLOCK
    echo Enter password to Unlock folder
    set/p "pass=>"
    if NOT %pass%==type your password here goto FAIL
    attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
    ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Locker
    echo Folder Unlocked successfully
    goto End
    :FAIL
    echo Invalid password
    goto end
    :MDLOCKER
    md Locker
    echo Locker created successfully
    goto End
    :End





    now go for following few steps
    1>copy above folder into notepad.
    2>the text which is written in bold letters delete it & type u r password there.
    3>save that file by extension .bat ( name is u r choice)
    4>now on ur screen there is a bat file appear.
    5>double click on that file.
    6>u will see the locker folder.
    7>save the files in that folder.
    8>double click on that folder & lock that folder
    9>after lock that folder it will become hidden.
    10>to open that folder double click on that bat file
    11>type ur password & open that folder
    where we have to put the password????
    All are bolded
    please tell!!!!!!!!!!!