winutil/functions/private/Get-WinUtilInstallerProcess.ps1
2023-10-04 10:08:10 -05:00

18 lines
349 B
PowerShell

function Get-WinUtilInstallerProcess {
<#
.DESCRIPTION
Meant to check for running processes and will return a boolean response
#>
param($Process)
if ($Null -eq $Process){
return $false
}
if (Get-Process -Id $Process.Id -ErrorAction SilentlyContinue){
return $true
}
return $false
}