## Stop the DeltekVision process End-Process -Name "DeltekVision" -Force ## Set the path to Deltek Vision $APP_PATH = "${Env:UserProfile}\AppData\Local\Apps\2.0" ## Test to make sure it's installed for the current user before continuing If ( Test-Path $APP_PATH ) { ## Delete the existing installed app Try { Remove-Item $APP_PATH -Recurse -Force } Catch { LogErr $_.Exception.Message } } Else { LogMsg "${APP_PATH} does not exist!" }