From b1771bf982861a213d7ee689351bb645ce7c45a4 Mon Sep 17 00:00:00 2001 From: Bruce Dawson Date: Sun, 27 Oct 2019 15:13:17 -0700 Subject: [PATCH] Upgraded preferred WPT version to Windows 10 1903 I've been using the 1903 version of Windows Performance Toolkit, 10.0.18362.1, since it was released. There won't be a 1909 SDK so it is past time to start pushing 1903 as the default that comes with UIforETW. The main change I have noticed is that adding and removing columns is slightly nicer in this version. --- UIforETW/UIforETWDlg.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/UIforETW/UIforETWDlg.cpp b/UIforETW/UIforETWDlg.cpp index d308a6e3..32919066 100644 --- a/UIforETW/UIforETWDlg.cpp +++ b/UIforETW/UIforETWDlg.cpp @@ -437,8 +437,8 @@ BOOL CUIforETWDlg::OnInitDialog() auto xperfVersion = GetFileVersion(GetXperfPath()); const int64_t requiredXperfVersion = (10llu << 48) + 0 + (10586llu << 16) + (15llu << 0); - // Windows 10 fall 2018 version, 10.0.17763.132 - requires Windows 8 or higher? - const int64_t preferredXperfVersion = (10llu << 48) + 0 + (17763llu << 16) + (132llu << 0); + // Windows 10 spring 2019 version, 10.0.18362.1 - requires Windows 8 or higher? + const int64_t preferredXperfVersion = (10llu << 48) + 0 + (18362llu << 16) + (1llu << 0); wchar_t systemDir[MAX_PATH]; systemDir[0] = 0;