From 5c22816e618fc28b69eca545383c52c8ed6adc9e Mon Sep 17 00:00:00 2001 From: CodingWonders <101426328+CodingWonders@users.noreply.github.com> Date: Wed, 2 Oct 2024 15:26:32 +0200 Subject: [PATCH] Exclude Recall from feature listings This fixes problems people were experiencing where the file explorer would go back to the Windows 10 layout --- functions/private/Invoke-WinUtilMicroWin-Helper.ps1 | 1 + 1 file changed, 1 insertion(+) diff --git a/functions/private/Invoke-WinUtilMicroWin-Helper.ps1 b/functions/private/Invoke-WinUtilMicroWin-Helper.ps1 index 4b01d159..716ed73d 100644 --- a/functions/private/Invoke-WinUtilMicroWin-Helper.ps1 +++ b/functions/private/Invoke-WinUtilMicroWin-Helper.ps1 @@ -99,6 +99,7 @@ function Remove-Features() { $_.FeatureName -NotLike "*NFS*" -AND $_.FeatureName -NotLike "*SearchEngine*" -AND $_.FeatureName -NotLike "*RemoteDesktop*" -AND + $_.FeatureName -NotLike "*Recall*" -AND $_.State -ne "Disabled" }