我有一个batch file启动一个.exe文件有问题。
该程序被称为“ck.exe”,作为PC游戏“Myst III Exile”的DVD-RW的一部分存在于E:\驱动器中,
如果你想看,Myst III Cover Art
我想这样做是因为游戏没有很好的方式从桌面运行程序
该文件夹看起来像:
Computer > DVD RW Drive (E:) Exile DVD > ... ck.exe ...
这是我的代码:
@echo off REM a batch file that starts Exile or tells you if the disc is in IF EXIST E: GOTO Start PAUSE>nul :Start CD \ ECHO found the front drive CD E: ECHO found E: drive E:\ck.exe ECHO began program PAUSE>nul EXIT
我的操作系统是Windows 7,cmd.exe正在以pipe理员权限运行
注意 :此程序不会返回错误,但是命令提示符显示:
found the front drive E:\ found E: drive began program
如果要在e:\当前目录上创建目录,请更改当前驱动器以及目录:
cd /d E:\
只有cd E:
是不够的。