2011-11-01 53 views
3
c:\WinDDK\7600.16385.1\Debuggers>kdsrv.exe tcp:port=60001 
c:\WinDDK\7600.16385.1\Debuggers>kd -remote tcp:server=\\127.0.0.1,port=60001 

DebugConnect failed, HRESULT 0x80010007 
"The callee (server [not server application]) is not available and disappeared; 
all connections are invalid. The call may have executed." 

我使用Win7並且還設置了bcedit debug on和net使用WinDbg設置遠程內核調試器

回答

1

你有錯誤的命令。看看MSDN的確切語法。這是例如發射kdsrv的:

kdsrv -t tcp:port=1027 

然後遠程調試啓動這樣的:

windbg -k kdsrv:[email protected]{tcp:server=127.0.0.42,port=1027},[email protected]{com:port=com1,baud=57600} 

通知,即kdsrv.exe僅與 「3機設置」 使用:a調試對象,一個本地調試器機器和遠程調試器機器。那是你想要完成的嗎?無論如何,你應該從普通的「2機器」設置開始:一個調試對象和一個調試器。在完成這個工作之後,您可以將多臺機器放到您的環境中進行遠程調試。