Open text file and program shortcut in a Windows batch file

后端 未结 12 1342
暗喜
暗喜 2020-12-13 17:59

I have two files in the same folder that I\'d like to run. One is a .txt file, and the other is the program shortcut to an .exe. I\'d like to make

12条回答
  •  [愿得一人]
    2020-12-13 18:34

    You can also do:

    start notepad "C:\Users\kemp\INSTALL\Text1.txt"
    

    The C:\Users\kemp\Install\ is your PATH. The Text1.txt is the FILE.

提交回复
热议问题