Mathias Bynens
Mathias Bynens

Reputation: 149704

Command to list all available commands in Windows Command Prompt

I’d like to programmatically get a list of all the available commands in Windows Command Prompt (cmd.exe). Is there something like compgen -c in Bash, but for Windows?

Upvotes: 6

Views: 10060

Answers (1)

foxidrive
foxidrive

Reputation: 41244

This provides CMD specific commands.

help

and to page the output use this

help | more

Upvotes: 2

Related Questions