我用代码检查应用程序的启动。这是它开始崩溃的代码的一部分,之后它为其他两个应用程序提供了类似的代码
set imagename=TaskbarX.exe
tasklist /fi "IMAGENAME eq %imagename%" | find /i "%imagename%"
if errorlevel 1 (
cd C:\Program Files (x86)\TaskbarX
start TaskbarX.exe
goto :b
) else (
goto :b
)
我用代码检查应用程序的启动。这是它开始崩溃的代码的一部分,之后它为其他两个应用程序提供了类似的代码
set imagename=TaskbarX.exe
tasklist /fi "IMAGENAME eq %imagename%" | find /i "%imagename%"
if errorlevel 1 (
cd C:\Program Files (x86)\TaskbarX
start TaskbarX.exe
goto :b
) else (
goto :b
)
这支球队
由于路径中的空格,被读取为多个。试试这样写:
https://www.computerhope.com/issues/ch001267.htm