Answers for "cmd batch file commands"

0

bat file cmd commands

Make an actual batch file:
open up notepad, type the commands you want to run,
and save as a .bat file.Then double click the .bat file to run it.
Try something like this for a start:

c:
cd c:Program filesIIS Express
start iisexpress /path:"C:FormsAdmin.Site" /port:8088 /clr:v2.0
start http://localhost:8088/default.aspx
pause
Posted by: Guest on October-20-2021
1

run batch file from cmd

Command Prompt
To run a batch file with Command Prompt, use these steps.

Open Start.
Search for Command Prompt, right-click the top result, and select the Run as administrator option.
Type the path and name of the batch file, and press Enter:

C:PATHTOFOLDERBATCH-NAME.bat
Posted by: Guest on March-05-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language