Hi again!
I am just asking what are the commands that contains its own "console"? For example, FTP has its own "console/command line." I am just currently experimenting on them.....
Thanks!
Meerkat
Commands with "Console"
Moderator: DosItHelp
Re: Commands with "Console"
telnet
diskpart
powershell
wmic
maybe more. What aspects are you testing?
diskpart
powershell
wmic
maybe more. What aspects are you testing?
Re: Commands with "Console"
powershell - ??
netsh
netsh
Re: Commands with "Console"
foxidrive wrote:telnet
diskpart
powershell
wmic
maybe more. What aspects are you testing?
I am just experimenting on automating commands in those "consoles" (with or without temp files).
CMD, PowerShell, and WMIC has well-known ways in automating commands (ex. PowerShell has -C option).
I will add NSLOOKUP and DEBUG (but there is no debug in x64 ).
Are there more commands?
Meerkat
Re: Commands with "Console"
If you consider DEBUG, then you should also consider EDLIN that still works in my Windows 8.1 32-bits modern computer!
Antonio
Code: Select all
C:\Users\Antonio>ver
Microsoft Windows [Versión 6.3.9600]
C:\Users\Antonio>edlin test.txt
New file
*?
Edit line line#
Append [#lines]A
Copy [startline],[endline],toline[,times]C
Delete [startline][,endline]D
End (save file) E
Insert [line]I
List [startline][,endline]L
Move [startline],[endline],tolineM
Page [startline][,endline]P
Quit (throw away changes) Q
Replace [startline][,endline][?]R[oldtext][CTRL+Znewtext]
Search [startline][,endline][?]Stext
Transfer [toline]T[drive:][path]filename
Write [#lines]W
*q
Abort edit (Y/N)? y
C:\Users\Antonio>
Antonio
Re: Commands with "Console"
Aacini wrote:If you consider DEBUG, then you should also consider EDLIN that still works in my Windows 8.1 32-bits modern computer!Code: Select all
C:\Users\Antonio>ver
Microsoft Windows [Versión 6.3.9600]
C:\Users\Antonio>edlin test.txt
New file
*?
Edit line line#
Append [#lines]A
Copy [startline],[endline],toline[,times]C
Delete [startline][,endline]D
End (save file) E
Insert [line]I
List [startline][,endline]L
Move [startline],[endline],tolineM
Page [startline][,endline]P
Quit (throw away changes) Q
Replace [startline][,endline][?]R[oldtext][CTRL+Znewtext]
Search [startline][,endline][?]Stext
Transfer [toline]T[drive:][path]filename
Write [#lines]W
*q
Abort edit (Y/N)? y
C:\Users\Antonio>
Antonio
Yeah, I'll consider that (even though I do not know how to use that), as long as it contains something like an another "console/commandline/something similar".
Is there a link that lists them all?
Meerkat