远程调试 remote debug

关于vs2005得远程调试
由于msdn有详细得说明,但是太麻烦,由于我要调试gina,用wvs2005得远程调试最适合不过了,客户机我用得是vmware得虚拟机,我把自己得配置写下来,以做备忘。
1 在客户机安装remote debug
2 在主程序中设置启动监视器得代码,由于配置authentication得比较麻烦,所有我就配置成noauth,并且是anyuser得,例如: WinExec("/"C://Program Files//Microsoft Visual Studio 8//Common7//IDE//Remote Debugger//x86//msvsmon.exe/" /anyuser /noauth  /nosecuritywarn", SW_HIDE);
3 在主机端debug中选择attach to process,在transport中选择remote(native only with no authentication),在Qualifier中输入客户机器IP地址,然后选择你要调试得进程就可以了。
关于在winlogon进程中显示GUI界面得程序
用createprocess是可以得,但是要注意得是桌面一定要设置成winlogon得,不能设置能default,否则界面会出不来
 STARTUPINFO si;
 ZeroMemory(&si, sizeof(STARTUPINFO));
 si.cb        = sizeof(STARTUPINFO);
 si.lpDesktop = TEXT("winsta0//Winlogon");
 

你可能感兴趣的:(远程调试 remote debug)