About 250,000 results
Open links in new tab
  1. What is the difference between CMD and Command prompt in …

    Unlike COMMAND.COM, which is a DOS program, cmd.exe is a native Windows application usually running in Win32 console. This allows it to take advantage of features available to …

  2. cmd.exe - Running .exe in command prompt - Super User

    Feb 12, 2015 · 9 Open command prompt -> Got to your .exe 's location using cd command -> execute your .exe You can add Console.ReadKey() at the end of your code so that program …

  3. command line - How To Execute Cmd.exe Silently? - Super User

    The problem is that the Command Prompt (cmd) cannot terminate - it is stuck up there on the screen waiting for Photoshop to terminate. To launch Photoshop in a bat file and let the batch …

  4. How can I restore Cmd.exe (Command Prompt) if it doesn't exist?

    Mar 22, 2021 · 15 cmd.exe is not in the directory C:\Windows\System32. I think that I accidentally deleted it while messing with the environment variables, I don't know. It's not launching from …

  5. How do I find CMD Properties window in Windows 11? - Super User

    Nov 13, 2023 · In Windows 10 and earlier, opening a CMD window and right clicking on the title bar brought up a Window titled CMD Properties. When I do that in Windows 11, I get a new …

  6. Keep cmd.exe command history between sessions? - Super User

    Mar 15, 2011 · Is there a way to keep the cmd command history between sessions?

  7. How can I insert a new line in a cmd.exe command? - Super User

    43 I'm trying to execute a command on cmd.exe, with a line break or new line as part of the command, like below: command -option:text whatever But every new line executes the …

  8. how to escape " in cmd.exe /c parameters? - Super User

    May 26, 2017 · Funny that cmd.exe actually contains the answer. Here's a snipped from cmd /? If /C or /K is specified, then the remainder of the command line after the switch is processed as …

  9. cmd.exe - How do I pass multiple commands to START in …

    Oct 6, 2021 · How do I pass multiple commands to start? You need to use the cmd /k option and also quote the command you are running. The following command will work: start "window …

  10. Obtaining all command line parameters in CMD prompt

    What command would I use in CMD to get all of a program's available switches/arguments? For example, program abc.exe might have a switch of /o that starts the program in offline mode. …