有没有办法让我可以使用当前目录而不是指定的文件?
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\LostSagaLA]
"Path"="D:\Fantasy LS"
"URL Protocol"=""
[HKEY_CLASSES_ROOT\LostSagaLA\shell]
[HKEY_CLASSES_ROOT\LostSagaLA\shell\open]
[HKEY_CLASSES_ROOT\LostSagaLA\shell\open\command]
@="D:\\Fantasy LS\\lswebbroker.exe %1"
答案1
哪个“当前目录”?每个正在运行的程序的每个实例都可以有自己的目录。您可以运行一个批处理文件来设置所需的“当前目录”,然后使用 写入 .reg 文件echo <text containing %CD% psuedo-variable at appropriate location> >> yourregfile.reg
。然后批处理文件将调用 regedit.exe 来处理 .reg 文件。