I have a VB.net program in which I call the Shell function. I would like to get the text output that is produced from this code in a file. However, this is not the return va
Just pipe the output to a text file?
MyCommand > "c:\file.txt"
Then read the file.