This repository was archived by the owner on May 29, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -437,8 +437,8 @@ BOOL CUIforETWDlg::OnInitDialog()
437
437
438
438
auto xperfVersion = GetFileVersion (GetXperfPath ());
439
439
constexpr int64_t requiredXperfVersion = (10llu << 48 ) + 0 + (10586llu << 16 ) + (15llu << 0 );
440
- // Windows 10 spring 2019 version, 10.0.18362.1 - requires Windows 8 or higher?
441
- constexpr int64_t preferredXperfVersion = (10llu << 48 ) + 0 + (22000llu << 16 ) + (194llu << 0 );
440
+ // Windows 11 22H2 version, requires Windows 8 or higher?
441
+ constexpr int64_t preferredXperfVersion = (10llu << 48 ) + 0 + (22621llu << 16 ) + (755llu << 0 );
442
442
443
443
wchar_t systemDir[MAX_PATH];
444
444
systemDir[0 ] = 0 ;
@@ -454,8 +454,8 @@ BOOL CUIforETWDlg::OnInitDialog()
454
454
{
455
455
const std::wstring installPath10[] =
456
456
{
457
- CanonicalizePath (GetExeDir () + L" ..\\ third_party\\ wpt10\\ WPTx64 (OnecoreUAP)-x86_en -us.msi" ),
458
- CanonicalizePath (GetExeDir () + L" ..\\ third_party\\ wpt10\\ WPTx64 (DesktopEditions)-x86_en -us.msi" ),
457
+ CanonicalizePath (GetExeDir () + L" ..\\ third_party\\ wpt10\\ WPTx64 (OnecoreUAP)-x64_en -us.msi" ),
458
+ CanonicalizePath (GetExeDir () + L" ..\\ third_party\\ wpt10\\ WPTx64 (DesktopEditions)-x64_en -us.msi" ),
459
459
};
460
460
if (PathFileExists (installPath10[0 ].c_str ()) && PathFileExists (installPath10[1 ].c_str ()))
461
461
{
Original file line number Diff line number Diff line change 5
5
// that is included hundreds of times.
6
6
// constexpr might help avoid that, but then it breaks my fragile upgrade-needed
7
7
// detection code, so this should be left as const.
8
- const float kCurrentVersion = 1.56f ;
8
+ const float kCurrentVersion = 1.57f ;
9
9
10
10
// Put a "#define VERSION_SUFFIX 'b'" line here to add a minor version
11
11
// increment that won't trigger the new-version checks, handy for minor
Original file line number Diff line number Diff line change @@ -17,9 +17,9 @@ mkdir %destdir%\third_party
17
17
mkdir %symboldir%
18
18
19
19
@ rem Prerequisite for the WPT installer
20
- set wptredistmsi1 = Windows Performance Toolkit\Redistributables\WPTx64 (OnecoreUAP)-x86_en -us.msi
20
+ set wptredistmsi1 = Windows Performance Toolkit\Redistributables\WPTx64 (OnecoreUAP)-x64_en -us.msi
21
21
@ rem The WPT installer
22
- set wptredistmsi2 = Windows Performance Toolkit\Redistributables\WPTx64 (DesktopEditions)-x86_en -us.msi
22
+ set wptredistmsi2 = Windows Performance Toolkit\Redistributables\WPTx64 (DesktopEditions)-x64_en -us.msi
23
23
24
24
set wpt10 = c:\Program Files (x86)\Windows Kits\10\
25
25
if not exist " %wpt10%%wptredistmsi1% " goto nowpt10
You can’t perform that action at this time.
0 commit comments