From 541b81bed92cc65d59233fb608449ca0452ef73c Mon Sep 17 00:00:00 2001 From: Yorick Barbanneau Date: Fri, 23 Feb 2018 12:19:18 +0100 Subject: [PATCH 1/3] Correction for Internet Explorer feature --- lib/features.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/features.txt b/lib/features.txt index b6295d5..e92b9c5 100644 --- a/lib/features.txt +++ b/lib/features.txt @@ -1,4 +1,4 @@ -Internet-Explorer-Optional-amd64" +Internet-Explorer-Optional-amd64 FaxServicesClientPackage WindowsMediaPlayer -MediaPlayback \ No newline at end of file +MediaPlayback From daad1239ba09e9d836e14b718a6fa3fca4cc1942 Mon Sep 17 00:00:00 2001 From: Yorick Barbanneau Date: Fri, 23 Feb 2018 12:22:52 +0100 Subject: [PATCH 2/3] Add a tab before package name for output in remove_shitty_modern_app() --- cleanW10.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cleanW10.ps1 b/cleanW10.ps1 index ac844cf..980b9c2 100755 --- a/cleanW10.ps1 +++ b/cleanW10.ps1 @@ -141,7 +141,7 @@ function disable_shitty_feature { # $pkg : Package (Object) function remove_shitty_modern_app { param($pkg) - Write-Host -NoNewLine "$($pkg.Name) :" + Write-Host -NoNewLine "`t$($pkg.Name) :" try { $pkg | Remove-AppxPackage } From 19fd159002d3216d617aee29c89202dc9562e146 Mon Sep 17 00:00:00 2001 From: Yorick Barbanneau Date: Wed, 28 Feb 2018 11:53:23 +0100 Subject: [PATCH 3/3] Update output text --- cleanW10.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cleanW10.ps1 b/cleanW10.ps1 index 980b9c2..e947704 100755 --- a/cleanW10.ps1 +++ b/cleanW10.ps1 @@ -221,7 +221,7 @@ Write-Host -ForegroundColor White "`nRemove provisioned modern apps :" Get-AppxProvisionedPackage -Online | Where-Object { $_.DisplayName -in $(Get-Content "lib\apps.txt")} | foreach { remove_provisioned_shitty_modern_app $_ } - +Write-Host -ForegroundColor White "`nRemove tasks :" foreach ($line in Get-Content "lib\tasks.txt") {remove_shitty_tasks $line } #Remove all OneDrive Stuff thanks to https://github.com/W4RH4WK/Debloat-Windows-10/