From fafdaa522ff2a3888dfceb0ab56911c4f8cdf48d Mon Sep 17 00:00:00 2001 From: Bob Arnson Date: Wed, 21 Jan 2026 21:20:40 -0500 Subject: Allow patched package to be uninstalled. Normally, a patched package is detected as superseded and therefore a normal uninstall takes no action. This change looks for applied patches and allows a normal uninstall to remove the package. Fixes https://github.com/wixtoolset/issues/issues/6350 --- src/test/sandbox/TestSandbox.wsb | 5 +++++ src/test/sandbox/startup.bat | 8 ++++++++ 2 files changed, 13 insertions(+) (limited to 'src/test/sandbox') diff --git a/src/test/sandbox/TestSandbox.wsb b/src/test/sandbox/TestSandbox.wsb index 01e11e6b..97c3c759 100644 --- a/src/test/sandbox/TestSandbox.wsb +++ b/src/test/sandbox/TestSandbox.wsb @@ -4,6 +4,11 @@ ..\..\..\build C:\build true + + + ..\..\..\build\logs + C:\logs + false .\ diff --git a/src/test/sandbox/startup.bat b/src/test/sandbox/startup.bat index 52f550ee..90f04f5f 100644 --- a/src/test/sandbox/startup.bat +++ b/src/test/sandbox/startup.bat @@ -1,5 +1,13 @@ @setlocal @echo off + + +::// Fix Sandbox glacial perf (24H2-???) +::// +REG ADD HKLM\SYSTEM\CurrentControlSet\Control\CI\Policy /v VerifiedAndReputablePolicyState /t REG_DWORD /d 0 /f +CITOOL -r -j + + SET DOTNET_VERSION=8.0 SET SANDBOX_FILES=C:\sandbox -- cgit v1.2.3-55-g6feb