Search This Blog

Tuesday 30 August 2011

REMOVE THE BLOG BANNER

To hide the Blogger Navbar :

1- Log in to blogger
2- On your Dashboard, select Layout. This will take you to the Template tab. Click Edit HTML. Under the Edit Template section you will see you blog's HTML.
3- paste the CSS definition in the top of the template code:

...
<b:skin><![CDATA[/*
-----------------------------------------------
Blogger Template Style
Name: Rounders
Designer: Sookhee Lee  
URL: www.plyfly.net
----------------------------------------------- */

#navbar-iframe {
display: none !important;
}


/* Variable definitions
====================
  <Variable name="keycolor" description="Main Color" type="color" default="#539bcd" value="#000000"/>
  <Variable name="mainTextColor" description="Text Color" type="color"
default="#333" value="#333333">
...

Remove the code to show it again.
......................................................................................................................... 

BLOCK WEBSITES WITHOUT ANY SOFTWARE


Go to C:\Windows\System32\Drivers\Etc
Find the File named "HOSTS"
Open the said file with the help of Notepad
Under "127.0.0.1 localhost" just add the site you want to block
e.g.
127.0.0.2 www.orkut.com 
127.0.0.3 www.santabanta.com


Save the file & exit notepad. (Restart your computer for changes.)
Now both website are blocked at all.
Just add anyother website you want to block but remember last number must increase in every website.
e.g.
127.0.0.1 localhost
127.0.0.2 www.orkut.com
127.0.0.3 www.santabanta.com
127.0.0.4 www.google.com
............................................................................................................................

Tuesday 23 August 2011

JAVA TRICKS

TRICK 1.
REVEAL PASSWORD USING JAVASCRIPT:
Reveal*****(Asterisk) Pasword Using Javascript.Follow the steps given below:

 1.  Open the Login Page of any website (Ex- http://www.gmail.com/)
 2.  Type "Username" & "Password"
 3. Copy & Paste the JavaScript Code given bellow into ur Broswer's add bar & hit Enter

javascript: alert(document.getElementById('Passwd').value);

OR

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.");})(); 

 4. As soon as u hit 'Enter',A window pops up showing Password typed by you.
........................................................................................................................

TRICK 2.
HOW TO EDIT/CHANGE ANY WEBSITE DESIGN:
1. Go to any website you want.
2. Then write in your the browser link this script

JavaScript:document.body.contentEditable='true'; document.designMode='on'; void 0

and hit enter
3. And now you can change what ever you want..
4. But the bad thing is that you cannot save it.
........................................................................................................................

TRICK 3.
IMAGES FLY OVER WEB PAGE: 
1. Go to any website you want.
2. Then write in your the browser link this script

javascript: R=0; x1=.1; y1=.05; x2=.25; y2=.24; x3=1.6; y3=.24; x4=300; y4=200; x5=300; y5=200; DI=document.getElementsByTagName("img"); DIL=DI.length; function A(){for(i=0; i-DIL; i++){DIS=DI[ i ].style; DIS.position='absolute'; DIS.left=(Math.sin(R*x1+i*x2+x3)*x4+x5)+"px"; DIS.top=(Math.cos(R*y1+i*y2+y3)*y4+y5)+"px"}R++}setInterval('A()',5); void(0);

4. As soon as u hit 'Enter' images fly over webpage.
........................................................................................................................



HIDA A FILE/FOLDER USING COMMAND PROMPT


If you want to hide a folder named ABC in your C drive.
Just follow the steps as given below :-
STEP 1: Goto Run and type cmd.
STEP 2: Type this code   attrib +s +h C:\ABC  and press ENTER

Where:
C:\ :Drive name
ABC: Folder name
+h = to hide the folder
+s = to list it as system file - so the hidden will be protected by system

STEP 3: If you want to make that folder appear then...
STEP 4: Type this code  attrib -s -h C:\ABC 
STEP 5: Enjoy.....
...................................................................................................................... 

NOTEPAD COOL TRICKS


  Most of you familiar with notepad. It is a simple text based editor. But today I am going to discuss some cool tricks which you can perform on your computer using notepad. You can also use these tricks to scare your friends.


TRICK 1.
NOTEPAD TRICK TO SHUTDOWN COMPUTER FORCEFULLY:
Open Notepad.
Paste the following code in it:


@echo off
msg * Its time to get some rest.
shutdown -c “Byeeeeee Sweet Dreams” -s


Save the file with any name but with .bat extension and close it. For eg. Sweetdreams.bat
......................................................................................................................

TRICK 2.
OPEN NOTEPAD CONTINUOUSLY:
Open Notepad.
Paste the following code in it:


@ECHO off
 :top
 START %SystemRoot%\system32\notepad.exe
 GOTO top


Save the file with any file name but with .bat as extension and close it. For eg. notepad.bat
.......................................................................................................................


TRICK 3.
NOTEPAD TRICK TO ANNOY YOUR FRIENDS:
Open Notepad.
Paste the following code in it:

@ECHO off
:Begin
msg * Hey
msg * I Love You
msg * I Love You 2
msg * I Love You 3
msg * I Love You soo much..
GOTO BEGIN

Save the file with any file name but with .bat as extension and close it. For eg. fun.bat
.........................................................................................................................


TRICK 4.
CONVERT TEXT INTO AUDIO:
Open Notepad.
Paste the following code in it:


Dim msg, sapi
msg=InputBox("Enter your text for conversion–http://xtremehackers.blogspot.com/","Xtreme Hackers Text-To-Audio Converter")
Set sapi=CreateObject("sapi.spvoice")
sapi.Speak msg


Save the file with any file name but with .vbs as extension and close it. For eg. voice.vbs
...........................................................................................................................


TRICK 5:
MATRIX FALLING CODE EFFECT
Open Notepad.
Paste the following code in it:


@echo off
 color 2
 :start
 echo %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random%
 goto start


Save the file with any file name but with .bat as extension and close it. For eg. matrix.bat
........................................................................................................................


TRICK 6:
OPEN COMMAND CONTINUOUSLY:
Open Notepad.
Paste the following code in it:


@echo off
color 2
:begin
start cmd
goto begin

Save the file with any file name but with .bat as extension and close it. For eg. command.bat

.............................................................................................................................


TRICK 7:
CONTINOUSLY EJECT CD/DVD DRIVES
Open Notepad.
Paste the following code in it:

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 the file with any file name but with .vbs as extension and close it. For eg. cd.vbs
.........................................................................................................................

TRICK 8:
TYPE ANY MESSAGE IN NOTEPAD AUTOMATICALLY:

Open Notepad.
Paste the following code in it:


WScript.Sleep 1800
 WScript.Sleep 1000
 Set WshShell = WScript.CreateObject("WScript.Shell")
 WshShell.Run "notepad"
 WScript.Sleep 100
 WshShell.AppActivate "Notepad"
 WScript.Sleep 500
 WshShell.SendKeys "Hel"
 WScript.Sleep 500
 WshShell.SendKeys "lo "
 WScript.Sleep 500
 WshShell.SendKeys ", ho"
 WScript.Sleep 500
 WshShell.SendKeys "w a"
 WScript.Sleep 500
 WshShell.SendKeys "re "
 WScript.Sleep 500
 WshShell.SendKeys "you"
 WScript.Sleep 500
 WshShell.SendKeys "? "
 WScript.Sleep 500
 WshShell.SendKeys "I a"
 WScript.Sleep 500
 WshShell.SendKeys "m g"
 WScript.Sleep 500
 WshShell.SendKeys "ood"
 WScript.Sleep 500
 WshShell.SendKeys " th"
 WScript.Sleep 500
 WshShell.SendKeys "ank"
 WScript.Sleep 500
 WshShell.SendKeys "s! "

Save the file with any file name but with .vbs as extension and close it. For eg. message.vbs
...........................................................................................................................

HIDE HARD DRIVE PARTITION

This trick is for all those people who want to hide tons of data into their box. So here it is, if you have very important data in your hard drive placed in some partition which you do not want anybody to access then this trick is only for you! 

1) Go to Start > Run > type "diskpart".
A DOS window will appear with following description.





DISKPART>

2) Then type "list volume"
The result will look something like one as shown below-


3) Suppose you want to hide drive E then type  "select volume 4"
Then a message will appear in same window { Volume 4 is the selected volume}

4) Now type "remove letter E"
Now a message will come { Diskpart Removed the Drive letter }




NOTE:
To access the content of hidden Drive repeat the process mentioned above. But in 4th step replace " remove" by "assign".
It means type "assign letter E".

ANOTHER METHOD:

Go to Start > Run > type "gpedit.msc">user configuration>administrative templates>windows components>windows explorer

Now double click on “Hide these specified drives in My Computer” modify it accordingly then just below you will find another option “Prevent access to drives from My Computer”, double click on this option and modify it accordingly.

To make it visible again select "disable" by double clicking on the “Hide these specified drives in My Computer” option.
................................................................................................................

SURF SITE WITHOUT ANY BROWSER

Open Notepad.
Paste the following code in it:

<html>
<body>
<iframe
src = "http://xtremehackers.blogspot.com/"
width = "100%" height = "100%">
</body>
</html>

Save the file with any name but with .html extension and close it. For eg. xtremehackers.html
.............................................................................................................................

HIDE USER ACCOUNT IN WINDOWS LOGIN

                                                     Go to Start > Run > type " regedit ".
 
Once in regedit go to HKEY_LOCAL_MACHINE\Software\Microsoft\WindowsNT\CurrentVersion\Winlogon
In the left panel, right click on Winlogon and click New and click Key.
Type SpecialAccounts and press Enter
In the left panel, right click on SpecialAccounts and click New and click Key.
Type UserList and press Enter.
In right panel of UserList, right click on a empty area and click New then click DWORD (32bit) Value.
Type in the name of the user account that you want to hide and press Enter.eg:  Account.
In the right panel, right click on the user account name and click Modify.
To hide the user account – Type 0 and click OK. (number zero not the letter)
Whenever you want to use the account just unhide the it by typing 1 instead of zero.
 .............................................................................................................. 

HIDE FOLDER WITHOUT ANY SOFTWARE

This trick is very interesting..
& its really easy...
This trick will allow you to hide folder without any software..
Just follow the steps as given below :-
1) Select any file or folder.
2) Right click on it, select 'Rename' or simply press 'F2'.
3) Press and hold the 'Alt' key. While holding the Alt key, type numbers '0160' from the numpad.
4) Press Enter and the nameless file or folder will be created. 
5) Right click it and select "Properties" select the tab "customize" and select "change icon" scroll along and you should a few blanc spaces click on any one and click ok and save it.
6)Now save your important files in this hidden folder..
.......................................................................................................................

DISABLE RIGHT CLICK ON DESKTOP

  • Go to Start > Run > type " regedit ". 
Once in regedit go to
     [HKEY_CURRENT_USER\Software\ Microsoft\Windows\CurrentVersion\Policies\ Explorer] which disables right click for only the current user or
   [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\ Explorer] which disables the right click for all users.
    Now either modify or create a new DWORD value named NoViewContextMenu and set the value data to 1.

Now, exit the registry, and restart your computer for the change to take effect.

ANOTHER METHOD: 
 Steps to resolve:
 1. Go to Start >Run >Type "gpedit.msc" click OK.
 2. Get to this location: User Configuration --> Administrative templates --> Windows Components --> Windows Explorer
 3. In the right pane double click on : Remove Windows Explorer's default context menu.
 4. Select Disable and click OK.
....................................................................................................................

CREATE FOLDER AND FILES WITH NO NAME

This trick will allow you to create files and folders without any name.
Just follow the steps as given below :-
1) Select any file or folder.
2) Right click on it, select 'Rename' or simply press 'F2'.
3) Press and hold the 'Alt' key. While holding the Alt key, type numbers '0160' from the numpad.
NOTE- Type the numbers '0160' from the numpad, that is, the numbers present on the right side of the keyboard.
Don’t type the numbers which are present on top of the character keys.
4) Press Enter and the nameless file or folder will be created.

REASON- The file or folder that seems nameless is actually named with a single space.

NOTE-  

Ø  If you want to create another nameless file or folder in the same directory ?
For this you will have to rename the file with 2 spaces.

Ø  Repeat step 3 to create as many nameless files or folders in the same directory.

Ø  You can also try 255 in place of 0160.
..............................................................................................

TRICK TO MAKE A SHUTDOWN TIMER

METHOD  1: (DESKTOP 
1.            Right click on your desktop and choose "New=>shortcuts".
2.            In the box that says "Type the location of the shortcut",
3.            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.
4.            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: (RUN)
Ø  Here is another trick to shutdown at a specific time, for example you wish to shutdown at 12:00am. Type this in..
Ø  start=>Run
Ø  Type Code: at 12:00 shutdown –s

TO ABORT:
Ø  Code:shutdown –a 

METHOD 3: ( BATCH FILE)
To create a batch file for this you can use notepad, and save the file as ( .bat )
Here are the most used batch files for shutdown:
1.      SHUTDOWN:
shutdown -s
2.      RESTART:
shutdown -r
3.      FORCEDOWN:
shutdown -f
4.      LOGOFF:
shutdown -l
5.      REMOTE SHUTDOWN:
(replace computername with the name of your computer  )
shutdown -s -m \\computername
Ø  Specify Time
shutdown -s -t 60
Ø  Give Us Some Info!
shutdown -s -t 120 -c "You better finish, because I shut you down foo!"
Ø  Shutdown A Remote Computer
shutdown -s -m \\desktop -t 60

LIST  OF SHUTDOWN COMMAND SWITCHES:
–i
Display a GUI. It must be the first switch
-l
Log off the user (This cannot be used on a remote machine: “-m” switch)
-s
Shutdown the computer
-r
Restart the computer
-a
Cancels a system shutdown already in progress
-f
Forces running applications to close without warning
Instruct a remote computer to shutdown (can be used with the restart & abort switches)
-t xx
Set a given time for shutdown, in seconds
-c “comment”
Shutdown comment (maximum of 127 characters)
  
HOW TO USE SHUTDOWN SWITCHES:
 You don’t have to use them all, but the switches you do use must be in the following order:
shutdown [-i | -l | -s | -r | -a] [-f] [-m \\computername] [-t xx] [-c "comment"]

......................................................................................................................... 

 

Monday 22 August 2011

HOW TO CREATE WINDOWS 7/VISTA BOOTABLE PENDRIVE

Pen drive installation process for windows 7/ Vista is much faster than DVD/CD. There are some simple steps to make bootable pen drive which can be used for installing windows 7 in future as well. For this you need a pen drive having minimum space of 4 Gb and a Installation DVD of Windows 7/Vista. Now just follow this steps:-

  1.  First off all you need to format the USB drive / Pendrive:-

  • Run the command prompt as an Administrator
  • Now to find the drive number of your USB Drive, you need to type this and press enter every time.
  • diskpart
  • list disk
  • Here you can see the disk listed.Note down the disk number of your pendrive for the next step. Assume that the number is 'A'.
  • Now type all these words to format the drive:
  • select disk A
  • clean
  • create partition primary
  • select partition A
  • active
  • format fs=NTFS
  • assign
  • exit
Now the disk partition program will exit and you’ll have a formatted USB flash drive ready to be made bootable.

 2.  Now to make the bootable pendrive, follow this steps:-
  • Now insert the Windows 7/Vista Installation DVD and to your DVD drive.
  • Now assume that DVD drive is G and Pendrive as F
  • Now type G:CD BOOT  
  • Now type CD BOOT 
  • Now type this command bootsect /nt60 F: to update your USB drive with bootmgr code.
  • Finally copy all the contents from the Windows 7/Vista DVD to your Pendrive.
  • Here you have created the bootable pendrive. Now what you need is to make your BIOS to boot from USB.So follow this steps:-
  • Insert your pendrive to the PC and reboot the system.
  • Now Enter the Bios system accordingly by pressing the key delete.This is where you’re on your own since every computer is different. Most BIOS’s allow you to hit a key at boot and select a boot option.
  • Now select the USB/ Pendrive as the first boot driver.
  • Now save the settings in Bios and restart and you will be able to Install Windows 7/Vista using that pendrive.  
 ...............................................................................................


ALL DOS COMMANDS

ALL DOS COMMANDS

ADDUSERS Add or list users to/from a CSV file
ARP Address Resolution Protocol
ASSOC Change file extension associations
ASSOCIAT One step file association
AT Schedule a command to run at a later time
ATTRIB Change file attributes

BOOTCFG Edit Windows boot settings
BROWSTAT Get domain, browser and PDC info

CACLS Change file permissions
CALL Call one batch program from another
CD Change Directory - move to a specific Folder
CHANGE Change Terminal Server Session properties
CHKDSK Check Disk - check and repair disk problems
CHKNTFS Check the NTFS file system
CHOICE Accept keyboard input to a batch file
CIPHER Encrypt or Decrypt files/folders
CleanMgr Automated cleanup of Temp files, recycle bin
CLEARMEM Clear memory leaks
CLIP Copy STDIN to the Windows clipboard.
CLS Clear the screen
CLUSTER Windows Clustering
CMD Start a new CMD shell
COLOR Change colors of the CMD window
COMP Compare the contents of two files or sets of files
COMPACT Compress files or folders on an NTFS partition
COMPRESS Compress individual files on an NTFS partition
CON2PRT Connect or disconnect a Printer
CONVERT Convert a FAT drive to NTFS.
COPY Copy one or more files to another location
CSVDE Import or Export Active Directory data

DATE Display or set the date
Dcomcnfg DCOM Configuration Utility
DEFRAG Defragment hard drive
DEL Delete one or more files
DELPROF Delete NT user profiles
DELTREE Delete a folder and all subfolders
DevCon Device Manager Command Line Utility
DIR Display a list of files and folders
DIRUSE Display disk usage
DISKCOMP Compare the contents of two floppy disks
DISKCOPY Copy the contents of one floppy disk to another
DNSSTAT DNS Statistics
DOSKEY Edit command line, recall commands, and create macros
DSADD Add user (computer, group..) to active directory
DSQUERY List items in active directory
DSMOD Modify user (computer, group..) in active directory

ECHO Display message on screen
ENDLOCAL End localisation of environment changes in a batch file
ERASE Delete one or more files
EXIT Quit the CMD shell
EXPAND Uncompress files
EXTRACT Uncompress CAB files

FC Compare two files
FDISK Disk Format and partition
FIND Search for a text string in a file
FINDSTR Search for strings in files
FOR Conditionally perform a command several times
FORFILES Batch process multiple files
FORMAT Format a disk
FREEDISK Check free disk space (in bytes)
FSUTIL File and Volume utilities
FTP File Transfer Protocol
FTYPE Display or modify file types used in file extension associations

GLOBAL Display membership of global groups
GOTO Direct a batch program to jump to a labelled line

HELP Online Help
HFNETCHK Network Security Hotfix Checker

IF Conditionally perform a command
IFMEMBER Is the current user in an NT Workgroup
IPCONFIG Configure IP

KILL Remove a program from memory

LABEL Edit a disk label
LOCAL Display membership of local groups
LOGEVENT Write text to the NT event viewer.
LOGOFF Log a user off
LOGTIME Log the date and time in a file

MAPISEND Send email from the command line
MEM Display memory usage
MD Create new folders
MODE Configure a system device
MORE Display output, one screen at a time
MOUNTVOL Manage a volume mount point
MOVE Move files from one folder to another
MOVEUSER Move a user from one domain to another
MSG Send a message
MSIEXEC Microsoft Windows Installer
MSINFO Windows NT diagnostics
MSTSC Terminal Server Connection (Remote Desktop Protocol)
MUNGE Find and Replace text within file(s)
MV Copy in-use files

NET Manage network resources
NETDOM Domain Manager
NETSH Configure network protocols
NETSVC Command-line Service Controller
NBTSTAT Display networking statistics (NetBIOS over TCP/IP)
NETSTAT Display networking statistics (TCP/IP)
NOW Display the current Date and Time
NSLOOKUP Name server lookup
NTBACKUP Backup folders to tape
NTRIGHTS Edit user account rights

PATH Display or set a search path for executable files
PATHPING Trace route plus network latency and packet loss
PAUSE Suspend processing of a batch file and display a message
PERMS Show permissions for a user
PERFMON Performance Monitor
PING Test a network connection
POPD Restore the previous value of the current directory saved by PUSHD
PORTQRY Display the status of ports and services
PRINT Print a text file
PRNCNFG Display, configure or rename a printer
PRNMNGR Add, delete, list printers set the default printer
PROMPT Change the command prompt
PsExec Execute process remotely
PsFile Show files opened remotely
PsGetSid Display the SID of a computer or a user
PsInfo List information about a system
PsKill Kill processes by name or process ID
PsList List detailed information about processes
PsLoggedOn Who's logged on (locally or via resource sharing)
PsLogList Event log records
PsPasswd Change account password
PsService View and control services
PsShutdown Shutdown or reboot a computer
PsSuspend Suspend processes
PUSHD Save and then change the current directory

QGREP Search file(s) for lines that match a given pattern.

RASDIAL Manage RAS connections
RASPHONE Manage RAS connections
RECOVER Recover a damaged file from a defective disk.
REG Read, Set or Delete registry keys and values
REGEDIT Import or export registry settings
REGSVR32 Register or unregister a DLL
REGINI Change Registry Permissions
REM Record comments (remarks) in a batch file
REN Rename a file or files.
REPLACE Replace or update one file with another
RD Delete folder(s)
RDISK Create a Recovery Disk
RMTSHARE Share a folder or a printer
ROBOCOPY Robust File and Folder Copy
ROUTE Manipulate network routing tables
RUNAS Execute a program under a different user account
RUNDLL32 Run a DLL command (add/remove print connections)

SC Service Control
SCHTASKS Create or Edit Scheduled Tasks
SCLIST Display NT Services
ScriptIt Control GUI applications
SET Display, set, or remove environment variables
SETLOCAL Begin localisation of environment changes in a batch file
SETX Set environment variables permanently
SHARE List or edit a file share or print share
SHIFT Shift the position of replaceable parameters in a batch file
SHORTCUT Create a windows shortcut (.LNK file)
SHOWGRPS List the NT Workgroups a user has joined
SHOWMBRS List the Users who are members of a Workgroup
SHUTDOWN Shutdown the computer
SLEEP Wait for x seconds
SOON Schedule a command to run in the near future
SORT Sort input
START Start a separate window to run a specified program or command
SU Switch User
SUBINACL Edit file and folder Permissions, Ownership and Domain
SUBST Associate a path with a drive letter

SYSTEMINFO List system configuration

TASKLIST List running applications and services
TIME Display or set the system time
TIMEOUT Delay processing of a batch file
TITLE Set the window title for a CMD.EXE session
TOUCH Change file timestamps
TRACERT Trace route to a remote host
TREE Graphical display of folder structure
TYPE Display the contents of a text file

USRSTAT List domain usernames and last login

VER Display version information
VERIFY Verify that files have been saved
VOL Display a disk label

WHERE Locate and display files in a directory tree
WHOAMI Output the current UserName and domain
WINDIFF Compare the contents of two files or sets of files
WINMSD Windows system diagnostics
WINMSDP Windows system diagnostics II
WMIC WMI Commands

XCACLS Change file permissions
XCOPY Copy files and folders
......................................................................................................................

ALL KEYBOARD SHORTCUTS


GENERAL KEYBOARD-ONLY COMMANDS
F1: Starts Windows Help
F10: Activates menu bar options
SHIFT+F10 Opens a shortcut menu for the selected item (this is the same as right-clicking an object
CTRL+ESC: Opens the Start menu (use the ARROW keys to select an item)
CTRL+ESC or ESC: Selects the Start button (press TAB to select the taskbar, or press SHIFT+F10 for a context menu)
CTRL+SHIFT+ESC: Opens Windows Task Manager
ALT+DOWN ARROW: Opens a drop-down list box
ALT+TAB: Switch to another running program (hold down the ALT key and then press the TAB key to view the task-switching window)
SHIFT: Press and hold down the SHIFT key while you insert a CD-ROM to bypass the automatic-run feature
ALT+SPACE: Displays the main window's System menu (from the System menu, you can restore, move, resize, minimize, maximize, or close the window)
ALT+- (ALT+hyphen): Displays the Multiple Document Interface (MDI) child window's System menu (from the MDI child window's System menu, you can restore, move, resize, minimize, maximize, or close the child window)
CTRL+TAB: Switch to the next child window of a Multiple Document Interface (MDI) program
ALT+underlined letter in menu: Opens the menu
ALT+F4: Closes the current window
CTRL+F4: Closes the current Multiple Document Interface (MDI) window
ALT+F6: Switch between multiple windows in the same program (for example, when the Notepad Find dialog box is displayed, ALT+F6 switches between the Find dialog box and the main Notepad window)

WINDOWS SYSTEM KEY COMBINATIONS
F1: Help
CTRL+ESC: Open Start menu
ALT+TAB: Switch between open programs
ALT+F4: Quit program
SHIFT+DELETE: Delete item permanently
Windows Logo+L: Lock the computer (without using CTRL+ALT+DELETE)

WINDOWS PROGRAM KEY COMBINATIONS
CTRL+C: Copy
CTRL+X: Cut
CTRL+V: Paste
CTRL+Z: Undo
CTRL+B: Bold
CTRL+U: Underline
CTRL+I: Italic

 MOUSE CLICK/KEYBOARD MODIFIER COMBINATIONS FOR SHELL OBJECTS 
SHIFT+right click: Displays a shortcut menu containing alternative commands
SHIFT+double click: Runs the alternate default command (the second item on the menu)
ALT+double click: Displays properties
SHIFT+DELETE: Deletes an item immediately without placing it in the Recycle Bin

 TO COPY A FILE
Press and hold down the CTRL key while you drag the file to another folder.

TO CREATE A SHORTCUT
Press and hold down CTRL+SHIFT while you drag a file to the desktop or a folder.

SHELL OBJECTS AND GENERAL FOLDER/WINDOWS EXPLORER SHORTCUTS
For a selected object:
F2: Rename object
F3: Find all files
CTRL+X: Cut
CTRL+C: Copy
CTRL+V: Paste
SHIFT+DELETE: Delete selection immediately, without moving the item to the Recycle Bin
ALT+ENTER: Open the properties for the selected object

GENERAL FOLDER/SHORTCUT CONTROL
F4: Selects the Go To A Different Folder box and moves down the entries in the box (if the toolbar is active in Windows Explorer)
F5: Refreshes the current window.
F6: Moves among panes in Windows Explorer
CTRL+G: Opens the Go To Folder tool (in Windows 95 Windows Explorer only)
CTRL+Z: Undo the last command
CTRL+A: Select all the items in the current window
BACKSPACE: Switch to the parent folder
SHIFT+click+Close button: For folders, close the current folder plus all parent folders

PROPERTIES CONTROL
CTRL+TAB/CTRL+SHIFT+TAB: Move through the property tabs

WINDOWS EXPLORER TREE CONTROL
Numeric Keypad *: Expands everything under the current selection
Numeric Keypad +: Expands the current selection
Numeric Keypad -: Collapses the current selection.
RIGHT ARROW: Expands the current selection if it is not expanded, otherwise goes to the first child
LEFT ARROW: Collapses the current selection if it is expanded, otherwise goes to the parent

ACCESSIBILITY SHORTCUTS
Press SHIFT five times: Toggles StickyKeys on and off
Press down and hold the right SHIFT key for eight seconds: Toggles FilterKeys on and off
Press down and hold the NUM LOCK key for five seconds: Toggles ToggleKeys on and off
Left ALT+left SHIFT+NUM LOCK: Toggles MouseKeys on and off
Left ALT+left SHIFT+PRINT SCREEN: Toggles high contrast on and off

WINDOWS NATURAL KEYBOARD KEYS
Windows Logo: Start menu
Windows Logo+R: Run dialog box
Windows Logo+M: Minimize all
SHIFT+Windows Logo+M: Undo minimize all
Windows Logo+F1: Help
Windows Logo+E: Windows Explorer
Windows Logo+F: Find files or folders
Windows Logo+D: Minimizes all open windows and displays the desktop
CTRL+Windows Logo+F: Find computer
CTRL+Windows Logo+TAB: Moves focus from Start, to the Quick Launch toolbar, to the system tray (use RIGHT ARROW or LEFT ARROW to move focus to items on the Quick Launch toolbar and the system tray)
Windows Logo+TAB: Cycle through taskbar buttons
Windows Logo+Break: System Properties dialog box
Application key: Displays a shortcut menu for the selected item

WINDOWS NATURAL KEYBOARD WITH INTELLITYPE SOFTWARE INSTALLED
Windows Logo+L: Log off Windows
Windows Logo+P: Starts Print Manager
Windows Logo+C: Opens Control Panel
Windows Logo+V: Starts Clipboard
Windows Logo+K: Opens Keyboard Properties dialog box
Windows Logo+I: Opens Mouse Properties dialog box
Windows Logo+A: Starts Accessibility Options (if installed)
Windows Logo+SPACEBAR: Displays the list of Microsoft IntelliType shortcut keys
Windows Logo+S: Toggles CAPS LOCK on and off 

DIALOG BOX KEYBOARD COMMANDS
TAB: Move to the next control in the dialog box
SHIFT+TAB: Move to the previous control in the dialog box
SPACEBAR: If the current control is a button, this clicks the button. If the current control is a check box, this toggles the check box. If the current control is an option, this selects the option.
ENTER: Equivalent to clicking the selected button (the button with the outline)
ESC: Equivalent to clicking the Cancel button
ALT+underlined letter in dialog box item: Move to the corresponding item 
................................................................................................................................ 


KEYBOARD SHORTCUT FOR MICROSOFT WORD

 Keyboard Shortcuts for Microsoft Word
CTRL and A Selects all in the current document.
CTRL and B Bold text.
CTRL and C Copies the item or text to the Clipboard and can be pasted using CTRL and V.
CTRL and D Displays the Font dialogue box.
CTRL and E Centre Alignment.
CTRL and F Displays the Find dialog box, to search the current document.
CTRL and G Displays the Go to dialog box, to go to a specific location in the current document.
CTRL and H Displays the Replace dialogue box.
CTRL and I Italic text.
CTRL and J Full Justification.
CTRL and K Create Hyperlink
CTRL and L Left Alignment
CTRL and M Tab
CTRL and N Creates a new document.
CTRL and O Displays the Open File dialogue box.
CTRL and P Displays the Print dialog box.
CTRL and R Right Alignment.
CTRL and S Displays the Save dialog box.
CTRL and U Underline text
CTRL and V Pastes the copied item or text from the Clipboard into the current position in the document.
CTRL and X Cuts the item or text selected to the Clipboard.
CTRL and Y Redo the last undone action.
CTRL and Z Undoes the last action.
CTRL and ENTER Insert Page Break.
CTRL and F2 Show Print preview.
CTRL and F4 Closes the active document window.
CTRL and F6 Opens the next document window.

Keyboard Shortcuts Result in Microsoft Word
F1 key Get help or use the Office assistant.
SHIFT and F1 Key Context sensitive help.
F2 Key Move text or image.
SHIFT and F2 Key Copy Text.
F3 Key Insert an autotext entry.
SHIFT and F3 Key Change the case of the selected text.
F4 Key Perform last action again.
SHIFT and F4 Key Perform a Find or Go to action again.
F5 Key Displays the Go to dialogue box, from here you can also Find and Replace.
SHIFT and F5 Key Move to a previous revision.
F6 Key Go to the next frame or pane.
SHIFT and F6 Key Go to the previous frame or pane.
F7 Key Launch the Spell checker.
SHIFT and F7 Key Launch the Thesaurus.
F8 Key Extend the current selection.
SHIFT and F8 Key Shrink the current selection.
F9 Key Update the selected fields.
SHIFT and F9 Key Switch between a field code and it's result.
F10 Key Activate the menu bar.
SHIFT and F10 Key Display a Shortcut Menu. Same as right clicking.
F11 Key Go to the next field.
SHIFT and F11 Key Go to the previous field.
F12 Key Save file As, equivalent to tools menu.
SHIFT and F12 Key Save document, equivalent to tools menu.