From 0864295ed1a82e5b08d8679649f54eb857ba3a71 Mon Sep 17 00:00:00 2001 From: zoicware <118035521+zoicware@users.noreply.github.com> Date: Mon, 26 May 2025 14:26:14 -0400 Subject: [PATCH] Fix Removing Packages Infinite Loop --- RemoveWindowsAi.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RemoveWindowsAi.ps1 b/RemoveWindowsAi.ps1 index 05ed136..20d8e7e 100644 --- a/RemoveWindowsAi.ps1 +++ b/RemoveWindowsAi.ps1 @@ -18,7 +18,7 @@ function Run-Trusted([String]$command) { sc.exe start TrustedInstaller | Out-Null #set bin back to default sc.exe config TrustedInstaller binpath= "`"$DefaultBinPath`"" | Out-Null - Stop-Service -Name TrustedInstaller -Force -ErrorAction SilentlyContinue + # Stop-Service -Name TrustedInstaller -Force -ErrorAction SilentlyContinue }