From bf05a7bbfc760eabd3ba281241fb3eac8c58bffa Mon Sep 17 00:00:00 2001 From: Tommy Date: Sun, 14 Apr 2024 01:08:28 -0700 Subject: [PATCH] Typo Fix Signed-off-by: Tommy --- Debloat/README.md | 2 +- Scripts/DeBloat.ps1 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Debloat/README.md b/Debloat/README.md index f6c0810..77adbd9 100644 --- a/Debloat/README.md +++ b/Debloat/README.md @@ -22,4 +22,4 @@ As such, if you want to make sure all of the annoying APPX/MSIX apps are gone, i - Open the terminal and run `winget list` to see the remaining packages (note that this will not exclude Framework packages). Remove the remaining undesirable apps with `winget remove `. In most cases, this will just be OneDrive. -- For some reason, the Remote Desktop Connection app doesn't show up with both `Get-AppxPackage` and `winget`. Remove it with `mstsc /uninstall`. https://learn.microsoft.com/en-us/windows-server/remote/remote-desktop-services/clients/uninstall-remote-desktop-connection?tabs=command-prompt#uninstall-remote-desktop-connection +- For some reason, the Remote Desktop Connection app doesn't show up with both `Get-AppxPackage` and `winget`. Remove it with `mstsc /uninstall`. https://learn.microsoft.com/en-us/windows-server/remote/remote-desktop-services/clients/uninstall-remote-desktop-connection?tabs=command-prompt#uninstall-remote-desktop-connection \ No newline at end of file diff --git a/Scripts/DeBloat.ps1 b/Scripts/DeBloat.ps1 index 0009ba6..de3077a 100644 --- a/Scripts/DeBloat.ps1 +++ b/Scripts/DeBloat.ps1 @@ -1,4 +1,4 @@ $Bloat = 'MicrosoftTeams|Microsoft.ScreenSketch|Microsoft.Paint|Microsoft.549981C3F5F10|Microsoft.MicrosoftOfficeHub|Microsoft.WindowsFeedbackHub|Microsoft.People|Clipchamp.Clipchamp|Microsoft.GetStarted|MicrosoftCorporationII.QuickAssist|Microsoft.WindowsAlarms|Microsoft.WindowsSoundRecorder|Microsoft.YourPhone|Microsoft.WindowsMaps|Microsoft.MicrosoftSolitaireCollection|Microsoft.Windows.DevHome|Microsoft.OutlookForWindows' -Get-AppxPackage -AllUsers | Where-Object {$_.Name -Match $Bloat} | Remove-AppxPackage +Get-AppxPackage -AllUsers | Where-Object {$_.Name -Match $Bloat} | Remove-AppxPackage -AllUsers mstsc /uninstall \ No newline at end of file