From 42455ff9031d200eca04533d2b2b292f6bc0170e Mon Sep 17 00:00:00 2001 From: Zachary Gorman Date: Tue, 6 May 2025 15:25:08 -0700 Subject: [PATCH] Added hostname to appdiff warning --- Get-PC/Private/AppDiff.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Get-PC/Private/AppDiff.ps1 b/Get-PC/Private/AppDiff.ps1 index c03ff25..1a33ab7 100644 --- a/Get-PC/Private/AppDiff.ps1 +++ b/Get-PC/Private/AppDiff.ps1 @@ -49,7 +49,7 @@ function Get-AppDiff { } Write-Progress -Activity "Filtering out standard apps from $pc" -Status "Checking $app" -PercentComplete (($appi * 90 / $apps.Length) + 10) -ParentId 1 - if ($output.Length -eq 0) { Write-Warning "No non-standard apps found" } + if ($output.Length -eq 0) { Write-Warning "No non-standard apps found on $pc" } if($TableView){ $output | Out-GridView -Title "Get-PC Apps - $pc"