S Sul@MS NewsServer Aug 3, 2009 #1 is it possible to send the contents of a command prompt to a text file? the command prompt is "arp-a"
is it possible to send the contents of a command prompt to a text file? the command prompt is "arp-a"
C chas2209 Aug 3, 2009 #3 Sul@MS NewsServer said: is it possible to send the contents of a command prompt to a text file? the command prompt is "arp-a" Click to expand... Hi Create Blank Text Document Open the command prompt, Right click within the window >Select All Then Paste to text document chas2209
Sul@MS NewsServer said: is it possible to send the contents of a command prompt to a text file? the command prompt is "arp-a" Click to expand... Hi Create Blank Text Document Open the command prompt, Right click within the window >Select All Then Paste to text document chas2209
S Sul@MS NewsServer Aug 4, 2009 #4 thanks Anteaus said: New file each time: arp - a >arp.txt Add to existing file: arp -a >>arp.txt Click to expand...
thanks Anteaus said: New file each time: arp - a >arp.txt Add to existing file: arp -a >>arp.txt Click to expand...
R Ramesh Srinivasan, MS-MVP Aug 15, 2009 #5 Right-click anywhere in the Command Prompt, and click Select All Press {ENTER}. The output is now copied to the Windows clipboard. See also: Copy command-line output directly to the Clipboard using Clip.exe: http://www.winhelponline.com/articl...-directly-to-the-Clipboard-using-Clipexe.html
Right-click anywhere in the Command Prompt, and click Select All Press {ENTER}. The output is now copied to the Windows clipboard. See also: Copy command-line output directly to the Clipboard using Clip.exe: http://www.winhelponline.com/articl...-directly-to-the-Clipboard-using-Clipexe.html
T Tim Meddick Aug 16, 2009 #6 What "Anteaus" wrote was all that you needed to know about sending output to a file. However, I wanted to give you a little bit of general advice about the use of "switches". In your example "arp-a" the "-a" was the "switch". But you should *always* leave a space between the command and between any individual switches. e.g. : dir /a /o /p arp -a -g == Cheers, Tim Meddick, Peckham, London.
What "Anteaus" wrote was all that you needed to know about sending output to a file. However, I wanted to give you a little bit of general advice about the use of "switches". In your example "arp-a" the "-a" was the "switch". But you should *always* leave a space between the command and between any individual switches. e.g. : dir /a /o /p arp -a -g == Cheers, Tim Meddick, Peckham, London.