Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
场景:我们的程序在启动时启动 adplus 以监控崩溃。所以有一个 cdb.exe 进程正在运行。
在某些时候,我们想要分离 cdb.exe 但让程序继续运行。
有没有办法做到这一点?cdb 进程没有 UI。
我正在寻找某种从命令行执行此操作的方法。
目前,如果我们杀死 cdb,它也会杀死我们的进程。
也许它只是-lcqd命令行选项,导致最后一个命令是qd.
-lcqd
qd
如果这不是您想要的,您可以让 AdPlus 生成它与-gs开关一起使用的脚本
-gs
adplus -crash -o T:\ -gs
当你有开关时,你可以添加
.ocommand LetMeTakeControl
作为最后一个命令(就在 之前g)。然后,您将cdb使用-cf命令行开关运行并运行该脚本。
g
cdb
-cf
然后,从您的应用程序中,使用
OutputDebugString("LetMeTakeControl qd");
退出和分离。