cleared some warnings in the IDE
This commit is contained in:
@@ -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 }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user