cleared some warnings in the IDE

This commit is contained in:
2023-08-23 14:50:47 -04:00
parent 70a7ddb75d
commit c1c7681370
2 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -106,12 +106,12 @@ Function Run-Script {
If ( !(IsURLValid -URL $URL) ) { LogMsg "The specified script does not exist: ${LivePSScript}" ; Exit }
}
If ( $Path ) { If ( !(Test-Path $Path) ) { LogMsg "The specified script does not exist: ""${Path}""" ; Exit } }
If ( ($HaltIfRunning -ne $null ) -and ($ForceClose) -and ( !(IsAdmin) ) ) { LogMsg "Cannot close dependent apps because this task does not have administrative privileges" ; Exit }
If ( ($null -ne $HaltIfRunning ) -and ($ForceClose) -and ( !(IsAdmin) ) ) { LogMsg "Cannot close dependent apps because this task does not have administrative privileges" ; Exit }
If ( $HaltIfRunning ) {
$Halt = $false
LogMsg "Checking for running instances of the following dependent apps:"
ForEach ( $name in $HaltIfRunning) {
$RunningInstances = Get-Process | Where { $_.Name -like "${name}" }
$RunningInstances = Get-Process | Where-Object { $_.Name -like "${name}" }
If ( $RunningInstances ) {
If ( $ForceClose -eq $true ) {
Try { $name | Stop-Process -Force ; LogMsg " ""${name}"" (force closed)" }
@@ -428,7 +428,7 @@ Function End-Process
LogMsg "Cannot find the process '${item}'"
If ( $Match ) {
LogMsg "Attempting to match '${item}' to all running process names"
ForEach ( $proc in ((Get-Process | Where { $_.Name -match $item }).Name) ) {
ForEach ( $proc in ((Get-Process | Where-Object { $_.Name -match $item }).Name) ) {
If ( $Force ) { End-Process -Name $proc -Force } Else { End-Process -Name $proc }
}
}