Dec 16, 2006 #1 605 Instructor May 18, 2003 3,283 DE Hi, is there a way to log all input and output which appears in a CMD window? I know that you can "Select All" but this is limited to the size of the window (max. 10000 lines) - i would need more. Thanks
Hi, is there a way to log all input and output which appears in a CMD window? I know that you can "Select All" but this is limited to the size of the window (max. 10000 lines) - i would need more. Thanks
Dec 16, 2006 1 #2 LWComputingMVP IS-IT--Management Jul 3, 2005 870 US Turn your command sequence into a batch file and redirect the output to a file. Upvote 0 Downvote
Dec 17, 2006 Thread starter #3 605 Instructor May 18, 2003 3,283 DE Thanks. Sometimes you don't see the forest among the trees. Upvote 0 Downvote
Dec 17, 2006 #4 LWComputingMVP IS-IT--Management Jul 3, 2005 870 US Don't forget to get standard error - example: mybatch >mylog.txt 2>&1 Upvote 0 Downvote