From 6a47fb6a64c62638953d84e2edba717d40d0c78f Mon Sep 17 00:00:00 2001 From: David Yoder Date: Fri, 11 Aug 2023 11:27:30 -0400 Subject: [PATCH] fixed typo --- Track-InstalledSoftware.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Track-InstalledSoftware.ps1 b/Track-InstalledSoftware.ps1 index 454ffca..70f2269 100644 --- a/Track-InstalledSoftware.ps1 +++ b/Track-InstalledSoftware.ps1 @@ -122,7 +122,7 @@ If ( (Test-Path $C_FILE) -and (Test-Path $P_FILE) ) { $uninstalled = Compare-Object -ReferenceObject $current -DifferenceObject $previous -Property Name,Version -PassThru | Where-Object { (![string]::IsNullOrEmpty($_.Name)) -and ($_.SideIndicator -eq '=>') } # Alert trigger for Atera - If ( $installed -or $uninstalled ) { Write-Output "Application changed detected" } + If ( $installed -or $uninstalled ) { Write-Output "Application change detected" } # Display installed apps If ( $installed ) {