Files
management-scripts/Remove-DeltekVision.ps1
T

16 lines
635 B
PowerShell
Raw Normal View History

2020-10-15 13:22:55 -04:00
. $([Scriptblock]::Create((New-Object Net.WebClient).DownloadString('https://dev.emberkom.com/emberkom/management-scripts/raw/branch/master/Tools.ps1')))
## Stop the DeltekVision process
2020-08-14 14:19:37 -04:00
Remediation-StopProcess -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 { Write-Output $_.Exception.Message }
2020-08-18 16:20:20 -04:00
} Else { Write-Output "${APP_PATH} does not exist!" }