scriptdll/dllscript
执行脚本 DLL。
参数
arg1
脚本 DLL 的文件名和路径。如果未提供完整路径,x64dbg 将在 DLL 的 scripts
目录中查找。
结果
此命令不设置任何结果变量。但是,脚本 DLL 可以设置任何变量。
备注
A script DLL is a DLL that exports either AsyncStart()
或 Start()
function.
If the DLL exports AsyncStart()
function, then x64dbg will call this function on a separate thread. If the DLL exports Start()
function, then x64dbg will call this function on the current thread, blocking any further command execution until the script DLL finishes execution. If both AsyncStart()
and Start()
are exported, only AsyncStart()
will be executed. Any return value of AsyncStart()
and Start()
will not be used by x64dbg.
After AsyncStart()
或 Start()
finishes, the script DLL will be unloaded from the process.