Add a tab before package name for output in remove_shitty_modern_app()
This commit is contained in:
parent
541b81bed9
commit
daad1239ba
1 changed files with 1 additions and 1 deletions
|
@ -141,7 +141,7 @@ function disable_shitty_feature {
|
||||||
# $pkg : Package (Object)
|
# $pkg : Package (Object)
|
||||||
function remove_shitty_modern_app {
|
function remove_shitty_modern_app {
|
||||||
param($pkg)
|
param($pkg)
|
||||||
Write-Host -NoNewLine "$($pkg.Name) :"
|
Write-Host -NoNewLine "`t$($pkg.Name) :"
|
||||||
try {
|
try {
|
||||||
$pkg | Remove-AppxPackage
|
$pkg | Remove-AppxPackage
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue