A,

Every day after starting up, we have to open many applications and files, which need to be clicked with the mouse, which is very tedious. We hope to be able to start with one click of the mouse

“Address”

  • Can, oneself in the computer custom define astart.bat, == The name must be arbitrary and the suffix must be.bat, just write a few lines of command inside.

Second, preparation

1. Tools for writing files

  • .batFiles cannot be opened with text documents, we need to download oneEditplus (Recommended)ornotepadUsed to edit.batfile
  • The specific use method is: right mouse click on this.batFile, selecteditplusornotepadOpen it and edit our content.

2. Display the file suffix

  • Win10 display file extension

3. Command writing

[start command]

  • Specify the application.exe fileOpen: start “” “.exe file path”
start "" "D:\Program Files (x86)\Tencent\QQ\Bin\QQ.exe"
start "" "D:\Program Files (x86)\Tencent\WeChat\WeChat.exe"
Copy the code
  • Open the specified folder: start “” “file path”
start "" "E:\word\flow"
Copy the code

Content of BAT file

  • I’ll just double click on this.batFiles can be opened with one clickapplication,folder
  • If you want to add comments, do your own browser searchBat Content annotationTo learn more
start "" "D:\Program Files (x86)\Tencent\QQ\Bin\QQ.exe"
start "" "D:\Program Files (x86)\Tencent\WeChat\WeChat.exe"
start "" "E:\word\flow"
Copy the code