2013-05-03 73 views
1

windbg - 我怎樣才能避免「按Enter鍵繼續」?windbg - 我怎樣才能避免「按Enter鍵繼續」?當執行.shell

0:031> .shell "${$arg2}" ProcessDV "${$arg1}" 
<.shell waiting 1 second(s) for process> 
.shell: Process exited 
Press ENTER to continue 
<.shell process may need input> 

我不想使用shell -x,因爲我想確保等待進程退出。但是,流程退出後,我想繼續我的腳本,無需用戶干預。

回答

2

您可以重定向進程的標準輸入。

語法:

.shell -ci "windbg command/s separated by ;" windows_command arg1 arg2 ... 

原油意義上來說,有點相當於:

windbg_commands | windows_command args1 arg2 

其中|代表pipe

.shell -ci "*" "${$arg2}" ProcessDV "${$arg1}" 

記住,*代表評論:


如果您windows_command不採取任何輸入,如下使用此語法。因此它不會創建任何輸出。

相關問題