From 9444fef8b0f54a9a28fb0a5f0a00733f1312e73e Mon Sep 17 00:00:00 2001 From: David Yoder Date: Mon, 25 Oct 2021 09:41:10 -0400 Subject: [PATCH] update some logging messages --- Remove-DeltekVision.ps1 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Remove-DeltekVision.ps1 b/Remove-DeltekVision.ps1 index c900182..f5cc1e9 100644 --- a/Remove-DeltekVision.ps1 +++ b/Remove-DeltekVision.ps1 @@ -8,7 +8,8 @@ $APP_PATH = "${Env:UserProfile}\AppData\Local\Apps\2.0" If ( Test-Path $APP_PATH ) { ## Delete the existing installed app + LogMsg "Deleting ""${APP_PATH}""" Try { Remove-Item $APP_PATH -Recurse -Force } Catch { LogErr $_.Exception.Message } -} Else { LogMsg "${APP_PATH} does not exist!" } \ No newline at end of file +} \ No newline at end of file