Skip to content

Commit

Permalink
Upgraded preferred WPT version to Windows 10 1903
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
randomascii committed Oct 27, 2019
1 parent 4ccaa87 commit b1771bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions UIforETW/UIforETWDlg.cpp
Expand Up @@ -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;
Expand Down

0 comments on commit b1771bf

Please sign in to comment.