调用 system32 以外的文件夹中的 dll
Call dll which is in folder other than system32
我想通过快捷方式调用我的dll,但我需要确定dll所在的当前目录。
目前我只能这样称呼它:
C:\Windows\System32\rundll32.exe C:\Users\Public\BUS.dll, 打印
我想这样称呼她:
C:\Windows\System32\rundll32.exe BUS.dll, 打印
我需要一个命令 returns 当前目录并调用 dll
假设你当前的目录是bus.dll
所在的目录,你可以修改命令如下:
C:\Windows\System32\rundll32.exe %cd%\BUS.dll
%cd%
是当前目录 (Reference) 的 Windows cmd 变量。
我想通过快捷方式调用我的dll,但我需要确定dll所在的当前目录。
目前我只能这样称呼它: C:\Windows\System32\rundll32.exe C:\Users\Public\BUS.dll, 打印
我想这样称呼她: C:\Windows\System32\rundll32.exe BUS.dll, 打印
我需要一个命令 returns 当前目录并调用 dll
假设你当前的目录是bus.dll
所在的目录,你可以修改命令如下:
C:\Windows\System32\rundll32.exe %cd%\BUS.dll
%cd%
是当前目录 (Reference) 的 Windows cmd 变量。