使用批处理文件启动程序时,显示 "Cannot find 'example.exe' "

When using Batch file to start a program, it says "Cannot find 'example.exe' "

我 100% 确定我有 exe 应用程序。 exe 应用程序是 DriverBooster.exe。它不会用命令 `

启动程序
@echo off
start DriverBooster.exe

`。我搜索了我的电脑,在 C:\Program Files\IObit\Driver Booster 中找到了确切的文件,带有 exe,所以我写了

@echo off
start C:\Program Files\IObit\Driver Booster\DriverBooster.exe

` 但是还是显示Windows找不到程序“DriverBooster.exe”,尝试修复拼写错误。我还检查了拼写及其 100% 正确。我正在使用批处理文件并使用“记事本”(是的普通记事本)对其进行编辑。请有人 help.I 非常感谢任何帮助的人,谢谢!

可能是文件位置的space,试试这个:

@echo off
start "" "C:\Program Files\IObit\Driver Booster\DriverBooster.exe"

编辑:按照 Squashman 的建议添加了额外的引号集 - 自从我完成 bash :)

以来已经有一段时间了