|
请教:批处理所建快捷键不能使用相对路径问题。
任务:用批处理1.bat把另一批处理2.bat拷贝到指定路径,并在桌面建立2.bat的快捷键。
问题是,由于2.bat里有执行相对路径的命令,执行时提示找不到。
请教:这个问题如何解决?
下面是我使用的工具和相关部分代码。
1,建立快捷键工具:Shortcut.exe
2,代码:
-------------
1.bat
rem 在桌面创建快捷键
tools\shortcut.exe /f:"%userprofile%"\桌面\2.lnk /a:c /t:\boot\grub\greenghost\2.bat >nul
rem 拷贝文件到c:\boot\grub\greenghost
md c:\boot\grub\greenghost >nul
md c:\boot\grub\greenghost\tools >nul
copy *.* c:\boot\grub\greenghost /y >nul
copy tools\*.* c:\boot\grub\greenghost\tools /y >nul
--------------
2.bat
rem 运行ghost32.exe -dd
tools\ghost32.exe -dd -dfile=c:\GHSTSTAT.TXT >nul
=============
问题:不能执行ghost32.exe -dd ,
改用c:\boot\grub\greenghost\tools\ghost32.exe -dd -dfile=c:\GHSTSTAT.TXT >nul 的话可执行。
请问如何解决建快捷键的问题?
[ 本帖最后由 lianjiang 于 2006-12-15 09:39 PM 编辑 ] |
|