Tuesday, 14 September 2010

Find IP address of any site

Many times we think about finding out the IP address of a given site.Say for example google.com,yahoo.com,microsoft.com etc.But how to do this? For this there are some websites that can be used to find out the IP address of a given site.But in Windows we have an inbuilt tool to do this job for us.It is nslookup.Yes this tool can be used for resolving a given domain name into it’s IP address (determine the IP of a given site name).Not only this it can also be used for reverse IP lookup.That is if the IP address is given it determines the corresponding domain name for that IP address.

open command prompt and write
cd\

Syntax:
C:>nslookup google.com

A List Of File Formats


Here is a list of the most common file formats found on the internet:

au/aiff    Common sound file format
asp        Active server pages
avi        Audio-video file format
bin        Macbinary II encoded file
cda        Compact disk audio
doc        Microsoft word document
exe        Windows executable file
gif        Graphical interchange format
gz         Gnu version of zip. Common on Unix systems
htm/html   Hyper text markup language, web pages
jpg/jpeg   24 bit graphic format
mid/midi   Musical instrument file
mim        Multipurpose internet mail extensions
mpg/mpeg   Standard movie format
mov/qt     QuickTime movie. Apple's movie format
pdf        Portable document format. Used to publish documents
png        Graphics format similar to gif
ppt        Power Point presentation
ps         Postscript file. Used for printing documents
ra/ram     Real Audio file
rm         Real movie file
rar        Compressed file format similar to zip
sea        Stuffit self-extracting file
shtml      HTML with server side includes
sit        Stuffit archive. Compressed file
tar        Compressed files common with Unix
tiff       High quality image format
txt        Plain text file
uu/uue     Unix file used to send binary files through email
wav        Windows sound file
z          Unix compressed file format
zip        Windows compressed file format

Friday, 10 September 2010

Disable AutoPlay

To temporay disable AutoPlay from automatically playing a CD, Hold down the Shift key for a few seconds after inserting a CD into the CD-Rom drive

A Desktop Shortcut To Hibernation

The Shutdown.exe command can shut down or restart your computer, optionally forcing it to shut down even if some programs attempt to prevent it. But it does not include an option to to hibernate. To create a shortcut, right-click on an empty space on the Desktop and select 'New->Shortcut'. In the 'Type the location of the item' box copy this text:

rundll32.exe PowrProf.dll SetSuspendState

Click on the Next button. In the 'Type a name for this shortcut' box type 'Hibernate' then click on the Finish button. If the shortcut does not work, then you will probably need to configure your computer to enable hibernation. Click on the Start button and select 'Settings'. click on 'Control Panel' then double-click on the 'Power Options' icon. Click on the 'Hibernate' tab and make sure the 'Enable Hibnernate' checkbox is checked.

Wednesday, 8 September 2010

Single click shutdown

In Windows XP you can you can shut down your computer with a single mouse click by using a shortcut on the Desktop. To create a shortcut, right-click on the Desktop and select 'New->Shortcut'. Type 'Shutdown' in the line and press 'Next'. Type in a name for your new shortcut and click 'Finish'. You must add a line switch from below to the shortcut to tell your system what to do when shutting down. Just add them in when typing in 'Shutdown' in the Command line. Make sure to add a space between the line switches. Example: Shutdown -r



-f   Force running applications to close without warning
 -i   Display the shutdown interface
 -l   Log off the current user of the local computer
 -s   Shutdown the computer
 -r   Shutdown and restart the computer

Change The Size & Font Of Desktop Icons

You can make your desktop icons and text as big or as small as you want by follow these steps:

  • Right click on an empty space on the desktop and select 'Properties'
  • Click on the 'Appearance' tab then click on the 'Advanced' button
  • In the 'Item' drop down box select 'Icon'  (u can choose menu, message box, window etc for change their size or font)
  • Change the number in the 'Size' box to make your icons bigger or smaller
  • Do the same in the 'Font' drop down box to change the font and size of the icon text
  • Click on the OK button then click 'Apply' on the Properties window

how to clean temp folder at startup in windowXP

Open notepad just write the below code

rd %temp% /s /q

md %temp%



Save the file to your Desktop as 'cleantemp.bat'. Now click on the Start button and go to Programs then right-click on Startup. Select 'Open' to open the Startup folder then drag and drop the 'cleantemp.bat' file into this folder.

Now every time you reboot your computer, Windows will automatically delete all the files in your Temp folder. You should not, however, use this file to clean out your Temp folder at shutdown as this could cause problems with a newly installed program that requires you to reboot your computer.