From ada6252b112909eecefeae915c24477458de3d20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20QUEROL?= <2+kawa@not.obvious> Date: Tue, 21 Jul 2026 10:00:46 +0200 Subject: [PATCH] Upload files to "/" --- Scan-Bloatware.ps1 | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Scan-Bloatware.ps1 b/Scan-Bloatware.ps1 index 9681c23..c1aec84 100644 --- a/Scan-Bloatware.ps1 +++ b/Scan-Bloatware.ps1 @@ -66,7 +66,7 @@ $AppCount = 0 foreach ($Mfg in $MfgsToCheck) { $MfgCount = 0 Write-Host "" - Write-Host " $Mfg:" -ForegroundColor Cyan + Write-Host " ${Mfg}:" -ForegroundColor Cyan foreach ($Pattern in $Patterns[$Mfg]) { try { @@ -99,7 +99,7 @@ foreach ($Mfg in $MfgsToCheck) { $MfgAppx = Get-AppxPackage -Name "*$Mfg*" -AllUsers -ErrorAction SilentlyContinue if ($MfgAppx) { Write-Host "" - Write-Host " $Mfg:" -ForegroundColor Cyan + Write-Host " ${Mfg}:" -ForegroundColor Cyan foreach ($App in $MfgAppx) { Write-Host " - $($App.Name)" -ForegroundColor Red $GlobalResults.AppxPackages += @{Manufacturer = $Mfg; Name = $App.Name } @@ -128,7 +128,7 @@ $ServiceCount = 0 foreach ($Mfg in $MfgsToCheck) { $MfgServices = 0 Write-Host "" - Write-Host " $Mfg:" -ForegroundColor Cyan + Write-Host " ${Mfg}:" -ForegroundColor Cyan foreach ($ServiceName in $ServicePatterns[$Mfg]) { try { @@ -160,7 +160,7 @@ foreach ($Mfg in $MfgsToCheck) { $MfgTasks = Get-ScheduledTask -TaskPath "*$Mfg*" -ErrorAction SilentlyContinue if ($MfgTasks) { Write-Host "" - Write-Host " $Mfg:" -ForegroundColor Cyan + Write-Host " ${Mfg}:" -ForegroundColor Cyan foreach ($Task in $MfgTasks) { Write-Host " - $($Task.TaskName)" -ForegroundColor Red Write-Host " Path: $($Task.TaskPath)" @@ -191,7 +191,7 @@ $DirCount = 0 foreach ($Mfg in $MfgsToCheck) { $MfgDirs = 0 Write-Host "" - Write-Host " $Mfg:" -ForegroundColor Cyan + Write-Host " ${Mfg}:" -ForegroundColor Cyan foreach ($Dir in $DirPatterns[$Mfg]) { if (Test-Path $Dir) {