WaitStart
WaitStart 選項會使 VSPerfCmd.exe Start 子命令只在分析工具初始化時或經過指定的秒數後傳回。 預設情況下,Start 命令會立即傳回。 如果 Start 子命令傳回而不初始化分析工具,會傳回錯誤。 如果沒有指定秒數,Start 命令會無限期地等待。
WaitStart 選項非常適用於批次檔案,可以確保分析工具已經初始化。
VSPerfCmd.exe /Start:Method /Output:FileName[Options] /StartWait[:Seconds]
參數
- Seconds
從啟動子命令傳回之前要等候的秒數。
必要選項
WaitStart 選項僅搭配 Start 子命令使用。
- **Output:**filename
指定輸出檔名稱。
範例
在此批次檔範例中,Start 命令將等待 5 秒,讓分析工具初始化。
VSPerfCmd.exe /Start:Sample /Output:TestApp.exe.vsp /WaitStart:5
if not %errorlevel% 0 goto :error_tag
VSPerfCmd.exe /Launch:TestApp.exe
goto :end
:error_tag
@echo Could not start Profiler!
@echo Error %errorlevel%
:end