문제

Windows Performance Analyser has a graph called "Window in Focus". What provider/trace flag should I specify in xperf command line to get such a graph?

도움이 되었습니까?

해결책

"Window in Focus" information is provided by Microsoft-Windows-Win32k provider. For example:

xperf -start uisession -on Microsoft-Windows-Win32k

다른 팁

I use this, which also captures the required data:

xperf -start perf!GeneralProfiles.InBuffer && timeout -1 && xperf -stop perf!GeneralProfiles.InBuffer Trace.etl

This captures most data you need.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top