I like the way command-line tools can be adapted for automating complex tasks.For instance, if you had to populate the list of names of computers in your LAN in a combo box, the net.exe command can be utilized with the Process.Start() method in C#Process netsend = new Process(); netsend.StartInfo.FileName...
