- The computer
- Windows Operating System
Methods/steps
Start the BAT syntax of the program
start /d "D:\Program Files (x86)\Tencent\QQ\Bin" QQ.exe
Copy the code
Start q.exe Program in D:\Program Files (x86)\Tencent\QQ\Bin directory.
Note: the /d argument follows the path of the program. If there are Spaces in the path, enclose the entire path in double quotes
Complete sample
Create a new file that ends in.bat (for example, start.bat) and write the following code to it:
start /d "D:\Program Files (x86)\Tencent\QQ\Bin" QQ.exe
start /d "D:\Program Files (x86)\Tencent\QQMusic" QQMusic.exe
Copy the code
After completion, double-click the bat file, Tencent QQ and QQ Music will be launched at the same time.