蝙蝠和Com,文件。 Init尝试启动exe文件时出错

时间:2012-04-14 02:43:36

标签: windows-7 batch-file

我正在尝试从Bat文件运行exe。 错误是弹出 Init Error Genre Unknown。 游戏运行得很好。但是想要使用bat文件./ 是什么导致这个?我花了3天时间没有关于Init错误类型未知的事情 在谷歌雅虎Dogpile甚至webferret 我确实检查了所有注册表站点,以确保我的设置对于Bat文件是正确的。

    @echo off
    START "" "C:\01Game\1aedit\1aedit.exe" "-i"
    rem start /wait C:\01Game\1aedit\1aedit.exe
    pause
    if not errorlevel 0 goto :ERR1
    goto :STEP2
    :STEP2

    START "" "..\2atop\2atop.exe" "-i"
    rem start /wait C:\01Game\2atop\2atop.exe
    pause
    if not errorlevel 0 goto :ERR2
    goto :ALLOK
   :ERR1
    echo **** Warning: file1 did not work properly! ****
    echo.
    echo Press any key to terminate job ...
    pause>nul
    goto :END
    :ERR2
    echo **** Warning: file2 did not work properly! ****
    echo.
    echo Press any key to terminate job ...
    pause>nul
    goto :END
   :ALLOK
    echo ****** Job completed successfully *****
    echo.
    goto :END
    :END
    EXIT /B

1 个答案:

答案 0 :(得分:0)

我想,在您的情况下,您只需要CD到工作目录。

cd /d C:\01Game\1aedit\files\audio
start /wait C:\01Game\1aedit\1aedit.exe

顺便说一下。我看不出start /wait的原因,C:\01Game\1aedit\1aedit.exe也应该没有它。