Commands with "Console"

Discussion forum for all Windows batch related topics.

Moderator: DosItHelp

Post Reply
Message
Author
Meerkat
Posts: 89
Joined: 19 Jul 2015 02:27
Location: Philippines

Commands with "Console"

#1 Post by Meerkat » 15 Aug 2015 23:47

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! :D

Meerkat

foxidrive
Expert
Posts: 6031
Joined: 10 Feb 2012 02:20

Re: Commands with "Console"

#2 Post by foxidrive » 16 Aug 2015 00:27

telnet
diskpart
powershell
wmic

maybe more. What aspects are you testing?

npocmaka_
Posts: 516
Joined: 24 Jun 2013 17:10
Location: Bulgaria
Contact:

Re: Commands with "Console"

#3 Post by npocmaka_ » 16 Aug 2015 03:05

powershell - ??
netsh

Meerkat
Posts: 89
Joined: 19 Jul 2015 02:27
Location: Philippines

Re: Commands with "Console"

#4 Post by Meerkat » 16 Aug 2015 03:30

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

Aacini
Expert
Posts: 1914
Joined: 06 Dec 2011 22:15
Location: México City, México
Contact:

Re: Commands with "Console"

#5 Post by Aacini » 16 Aug 2015 06:22

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

Meerkat
Posts: 89
Joined: 19 Jul 2015 02:27
Location: Philippines

Re: Commands with "Console"

#6 Post by Meerkat » 16 Aug 2015 06:33

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

Post Reply