From daad1239ba09e9d836e14b718a6fa3fca4cc1942 Mon Sep 17 00:00:00 2001 From: Yorick Barbanneau Date: Fri, 23 Feb 2018 12:22:52 +0100 Subject: [PATCH] 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 }