Skip to content

START Windows command

The Windows start command is a useful tool for opening a new command window, starting a program, or specifying options for how a program should be run. It allows you to launch applications and processes in a new window, enforcing different settings like the window title or priority. Understanding the syntax and available options of the start command can help you streamline your workflow and efficiently manage tasks on your Windows system.

Terminal window
start [options] [parameters]
OptionDescription
/MAXStart the window maximized
/MINStart the window minimized
/WAITWait for the started program to close
/BStart application without creating a new window
/SEPARATEStart 16-bit Windows-based program in separate memory space
/LOWStart application in the IDLE priority class
/NORMALStart application in the NORMAL priority class
/HIGHStart application in the HIGH priority class
/REALTIMEStart application in the REALTIME priority class
ParameterDescription
commandThe command, batch file, or executable to run
argumentsThe arguments to pass to the command
pathThe path to the file or folder to open
Terminal window
start explorer

Opens a new File Explorer window.

Terminal window
start https://www.google.com

Opens the URL in the default web browser.

Terminal window
start notepad.exe

Launches the Notepad application.

Terminal window
start cmd

Opens a new Command Prompt window.

Terminal window
start control

Launches the Control Panel interface.

Terminal window
start calc

Launches the Windows Calculator application.

{Questions}

To use the start command in Windows, execute the following command:

Terminal window
start --option <value>

How can I open a specific file with start in Windows?

Section titled “How can I open a specific file with start in Windows?”

To open a specific file using the start command in Windows, use the following command:

Terminal window
start filename.txt

Can I start a program with specific options using the start command?

Section titled “Can I start a program with specific options using the start command?”

Yes, you can start a program with specific options using the start command in Windows. Here is an example command:

Terminal window
start /D "C:\Program Files\Application" /MAX program.exe

How do I open a website URL in my default browser using the start command?

Section titled “How do I open a website URL in my default browser using the start command?”

To open a website URL in your default browser with the start command in Windows, use this command:

Terminal window
start https://www.example.com

Is it possible to start a program minimized with the start command in Windows?

Section titled “Is it possible to start a program minimized with the start command in Windows?”

Yes, you can start a program minimized using the start command. Here is an example command:

Terminal window
start /MIN program.exe

How do I open a new command prompt window using the start command?

Section titled “How do I open a new command prompt window using the start command?”

To open a new command prompt window with the start command in Windows, execute the following command:

Terminal window
start cmd

Can I run a batch script using the start command in Windows?

Section titled “Can I run a batch script using the start command in Windows?”

Yes, you can run a batch script using the start command. Here is an example command:

Terminal window
start script.bat

How can I list all available options for the start command in Windows?

Section titled “How can I list all available options for the start command in Windows?”

To list all available options for the start command in Windows, you can use the help command. Execute the following command:

Terminal window
start /?
  • Opening a file or program
  • Opening a website or URL
  • Running a batch script or command prompt command
  • Opening a specific folder or directory
  • Opening a Control Panel applet
  • Launching a program with specific parameters or options
  • Running multiple instances of a program