vote up 0 vote down star
1

What are some of the lesser-known but useful features and techniques of the windows command line interpreter?

(Please, one feature per answer.)

flag
I'm sick of people asking these "Hidden features" questions just to gain rep. – Landon Oct 1 '08 at 7:46
@Landon: sorry i'm really eager to get to know those things i missed. there are some pearls there. If you need "rep" vote it down. – pointernil Oct 1 '08 at 8:28
@pointernil: I'm not sure i understand:"If you need 'rep' vote it down." Care to clarify? – Landon Oct 1 '08 at 19:49
@Landon: my point was, that you should not jump that quick to conclusions. i find those "hidden-feat." lists quite interesting and i could not care less about those rep numbers, but do really care to find those yet unknown features and actually i don't know if you gain rep. for voting quest. down.;) – pointernil Oct 3 '08 at 11:33
this one isn't programmery enough though, IMO. Sorry. – Jeff Atwood Oct 16 '08 at 9:35
show 5 more comments

closed as not programming related by Adam Davis Oct 1 '08 at 12:03

5 Answers

vote up 0 vote down check
FOR /F "eol=; tokens=2,3* delims=, " %i in (myfile.txt) do @echo %i %j %k

Would parse each line in myfile.txt, ignoring lines that begin with a semicolon, passing the 2nd and 3rd token from each line to the for body, with tokens delimited by commas and/or spaces.

link|flag
vote up 2 vote down

fsutil hardlink create newLink oldFile

Creates a junctionpoint called newLink of oldFile at the NTFS partition. This is something linke a linux hardlink. It works well. I just used it some times.

But be careful with this command. It is implemented by Microsoft only for the purpose of POSIX compatibility, but it is not officially supported by Microsoft. I think - they know why. Read this warning: http://en.wikipedia.org/wiki/NTFS_junction_point#Warning

link|flag
Wrong. A hardlink is not a junction point. – Hugh Allen Oct 1 '08 at 8:26
vote up 0 vote down

ipconfig /renew

I use this command when I switched on my Windows before switched on my router. I do not know, why every OS in the world, but Windows, can handle this problem automatically...

link|flag
1  
It's because windows instead attempts to set up a private network if no DHCP is setup. This is so users can form ad-hoc networks without any knowledge of TCP/IP and no servers whatsoever - connect abunch of windows computers and share files and printers with abandon. It's not a bad idea. – Adam Davis Oct 1 '08 at 7:36
1  
Considering their audience, it was a good decision. What would be nice, however, is if it checked for a DNS every few minutes to see if one became available later. – Adam Davis Oct 1 '08 at 7:37
vote up 1 vote down

mklink in Vista to create symbolic links to files and directories.

link|flag
vote up 1 vote down

When you want to execute a program or browse to a dir, just type the TAB key for auto completion (multiple times for other files/dirs).

For linux users this is pretty standard, but if you've only used windows, it's a nice surprise :)

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.