Files
management-scripts/dbiarchitects/Kill-DeltekVision.ps1
T
2019-11-11 19:22:39 -05:00

9 lines
267 B
PowerShell

$ProcessName = "DeltekVision"
$Process = Get-Process -Name $ProcessName -ErrorAction SilentlyContinue
If ( $Process ) {
Write-Host "Stopping ${ProcessName}"
Stop-Process -Name $ProcessName
} Else { Write-Host "${ProcessName} is not currently running." }