batch file run windows code example
Example 1: windows how to execute bat file
go to the file location:
>cd file_location
write file name + extension:
>file.cmd
Example 2: batch file cmd command
c:\
cd c:\Program files\IIS Express
start iisexpress /path:"C:\FormsAdmin.Site" /port:8088 /clr:v2.0
start http://localhost:8088/default.aspx
pause