Open application by path

The code format of this batch file is as follows:

@echo off
start /d "D:\Ditto\" Ditto.exe
exit

@echo off and exit can have multiple lines of start

And the entire batch file can execute the start command of all lines at once


start format: start /d + absolute path + executable file name

Such as: start /d “D:\Ditto” Ditto.exe


You can define the batch code of all the programs that you need to open with one click according to your needs, and store the code as a file with a .bat suffix. Start with the name and run it as an administrator.

Guess you like

Origin blog.csdn.net/qq_43808700/article/details/112599262