About 344,000 results
Open links in new tab
  1. How do I open a program via the command prompt in Windows 8?

    Direct invocation This is when you directly specify a program name (without a path). For example, if you run cmd (cmd.exe) or ipconfig (ipconfig.exe) at the prompt, you are directly calling the …

  2. How do I launch a program from command line without opening a …

    For example call "Example File/Input File/My Program.bat" [This is also capable with calling files that have a .exe, .cmd, .txt, etc. NOTE: THIS COMMAND DOES NOT ALWAYS WORK!!! Not …

  3. cmd - How do I run a Java program from the command line on …

    Apr 22, 2013 · You should then see your program output. If the system cannot find javac, check the set path command. If javac runs but you get errors, check your Java text. If the program …

  4. How to start a program with command line arguments on …

    command/program If it is an internal cmd command or a batch file then the command processor is run with the /K switch to cmd.exe. This means that the window will remain after the command …

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

    Feb 12, 2015 · open a command prompt (Start -> Run -> cmd.exe), navigate to the location of your folder using the command prompt cd command, run the .exe from there

  6. How to run cmd with Admin privileges using command line

    Jul 21, 2015 · 11 Is there a way to run/start cmd as administrator through the command line or a batch file programming in Windows 8? I want to create a batch file which has administrative …

  7. Running CMD command in PowerShell - Stack Overflow

    I am having a bunch of issues with getting a PowerShell command to run. All it is doing is running a command that would be run in a CMD prompt window. Here is the command: "C:\\Program …

  8. cmd - How do you run a command as an administrator from the …

    May 10, 2011 · I'm trying to run the script with elevated, administrative privileges from within the Windows shell (cmd.exe)--just as if I'd right-clicked it and chosen Run as Administrator, but …

  9. How to run program from command line with elevated rights

    Oct 15, 2009 · Is there a way to run a program or command with elevated rights when I am already in a non-elevated command line? Exactly the same action that would be performed …

  10. How can I run a program from a batch file without leaving the …

    May 4, 2018 · Use the start command to prevent the batch file from waiting for the program. Just remember to put a empty double quote in front of the program you want to run after "Start". …