bat 脚本打开 win10 exe程序
时间: 2023-06-27 19:02:30 浏览: 178
要在 Windows 10 上通过批处理脚本打开一个可执行文件,你可以使用以下命令:
```
start /d "path_to_exe_file" "exe_file_name.exe"
```
其中,`path_to_exe_file`是可执行文件所在的路径,`exe_file_name.exe`是要打开的可执行文件的名称。例如,如果你要打开桌面上的 `hello.exe` 文件,那么命令可能是这样的:
```
start /d "%userprofile%\Desktop" "hello.exe"
```
注意:如果可执行文件路径中包含空格,则应将路径用引号括起来。
阅读全文