diff --git a/bleachbit.ps1 b/bleachbit.ps1 index bf14b07..34b390d 100644 --- a/bleachbit.ps1 +++ b/bleachbit.ps1 @@ -46,17 +46,17 @@ $BleachBitCleaners = @( "zoom.cache", "zoom.logs" ) -Write-Log "Stopping Edge processes..." +Write-Host "Stopping Edge processes..." try { $EdgeProcesses = Get-Process -Name "*Edge*" -ErrorAction SilentlyContinue if ($EdgeProcesses) { $EdgeProcesses | Stop-Process -Force -ErrorAction Stop - Write-Log "Edge processes stopped successfully." + Write-Host "Edge processes stopped successfully." } else { - Write-Log "No Edge processes running." + Write-Host "No Edge processes running." } } catch { - Write-Log "Warning: Could not stop Edge processes: $($_.Exception.Message)" + Write-Host "Warning: Could not stop Edge processes: $($_.Exception.Message)" } $DownloadURL = "https://download.bleachbit.org/BleachBit-5.0.2-portable.zip"