From 58178971fb6ce89bee385cbeccbc30371954e87f Mon Sep 17 00:00:00 2001 From: dsn1321 <37174087+dsn1321@users.noreply.github.com> Date: Wed, 5 Nov 2025 11:43:29 +0100 Subject: [PATCH] Fix betaHighConfidenceTesting assignment in script --- Install/Autopilot/Get-IsInProvisioningMode.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Install/Autopilot/Get-IsInProvisioningMode.ps1 b/Install/Autopilot/Get-IsInProvisioningMode.ps1 index f6d0ffd..69523bc 100644 --- a/Install/Autopilot/Get-IsInProvisioningMode.ps1 +++ b/Install/Autopilot/Get-IsInProvisioningMode.ps1 @@ -27,7 +27,7 @@ You assume all risks and responsibilities associated with its usage #> # Enable the script to test an undocumented registry value for high confidence testing -$betaHighConfidenceTesting -eq $false +$betaHighConfidenceTesting = $false # Create a PSCustomObject array to store the registry tests $registryTests = @() @@ -419,4 +419,4 @@ else { else { return 'Applicable' } -} \ No newline at end of file +}