mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2024-11-14 14:45:52 -06:00
18 lines
349 B
PowerShell
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
|
|
} |