10 amazing windows command Line


Recommended Posts

10 Amazing Windows Command Line Tricks

Whatever eye candy the graphical interface of windows may offer but it could never match the functionality that could be achieved with command line. Here we?ve listed 10 useful commands and tricks for Windows command line.

1. Super Hide your files

Besides normal hidden files, windows file system provides another attribute for files that makes them super hidden so that they aren?t visible form explorer or with normal dir command. Use the command

attrib +s +h pathtofile

to super hide a file. Replace + symbol with - to remove super hidden attribute from file.

You can also use this command to show hidden files in usb drives, simply use

attrib -s -h *.* c command.

2. Join multiple mp3 files

Here?s a nice trick that otherwise would require some software to perform. You can join multiple mp3 files to form a single mp3 file. Simply move to the folder in command line where mp3 files are stored that you want to combine and run the command

copy /b *.mp3 newfile.mp3

The wildcard *.mp3 will combine all mp3 files to form a newfile.mp3 file. You can control which files are combined using wildcard parameters.

Here?s a nice trick using this method to embed mp3 file in a jpg image file.

3. Map a Drive Letter to a Folder

Most of the time, our hard drives get filled with huge amount of data folder, files etc that moving to a folder you occasionally use becomes a heck. However, there?s a dos command that lets you map a drive letter to a folder. e.g. to map the folder C:\windows to M drive use the command:

subst M: C:\Windows

However the mapped drive gets lost once you restart your pc, you can then create a batch file including the above command and schedule it to run at system startup.

4. Change colors of command Window

Perhaps you need to take a print out of dos window and don?t want to waste ink on black background of dos window. Windows command line provides a command to change background and text color of dos window in a snap.

Simply use color bf to change colors. b is the code for background color and f is code for text color. To know color codes type color /? at command line.

5. Use previously entered Command

Just typed a long command moments ago and need to run that again but the effort involved to type again is making you sick! But don?t worry as command line keeps track of your previously entered commands which are accessible by pressing F7 key.

Alternatively you can use Up Arrow key to use earlier commands you used.

F1 & F2 also offer similar kind of functionality but in a different way, try them out.

6. Run Multiple commands at once

Multiple commands can be concatenated using && and run at once with single press of Enter. Simply type in your commands and concatenate them with && at once.

e.g. color f8 && dir && time

would run all the three commands one after another with a single press of Enter.

7. Filter output of commands

Some commands like systeminfo provide a whole bunch of information about your pc but what if you need info only about updates installed or Processor or Virtual Memory. You can filter the output using find. Here?s how to get only updates list from systeminfo.

systeminfo | find "Update"

This will only show updates installed on your system.

8. Drag Drop Folder paths

No need to type in long folder paths at command line, simply drag n drop that file or folder from explorer onto command line window to copy its path.

9. Move selected files to another folder

If you need to move only doc files to another folder or project documents created this month to another folder from a folder containing large number of files, you would rather end up using Ctrl+click to select individual file in Windows Explorer. But thanks to command line, you can use wildcards to move selected files.

Use move *.doc newfolderpath

to move only doc files to new folder. Any wildcard combination can be used here.

10. Take screenshots of webpages

To take screenshots of web pages, you would need a tiny utility called IEcapt.exe and then place it in c:\Windows directory, now go to command line and type in

iecapt urltocapture pathofoutputimage

to get a screenshot of the webpage.

Link to comment
Share on other sites

why is this in the Windows Beta section? This pretty much applies to all versions of Windows

ya! this is for all versions.

pls try it................!!!

Link to comment
Share on other sites

Theres some good things in there but its so hard to read because your formattings terrible. Each thing should be seperated by a blank line at least.

Link to comment
Share on other sites

1. Super Hide your files

Besides normal hidden files, windows file system provides another attribute for files that makes them super hidden so that they aren?t visible form explorer or with normal dir command. Use the command

attrib +s +h pathtofile

I stopped reading after this. Your first point completely misses the reason for a file being marked as "system" - it has NOTHING to do with "super hiding" it.

Link to comment
Share on other sites

Doesn't the first command make the file a system file?

EDIT: It seems I took a bit too long to reply. njlouch confirmed my suspicion.

Link to comment
Share on other sites

quite outdated stuff ... this belongs to 9x to wXP era :) ...

e.g. speaking of substs while they were replaced in Vista/Seven by reparse points (symlinks, junctions, hardlinks) natively and works also in XP (simply NTFS feature)

Link to comment
Share on other sites

I stopped reading after this. Your first point completely misses the reason for a file being marked as "system" - it has NOTHING to do with "super hiding" it.

Agreed. I set Explorer to display all files so I see 'em anyway. However, great blast from the past!

Link to comment
Share on other sites

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.