Created
February 22, 2016 16:54
-
-
Save bndabbs/4c7ca4408a3e8ce13e97 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Function CheckProcess | |
{ | |
$Service = $(Get-Service -ComputerName $Computer -Name $ServiceName -ErrorAction SilentlyContinue) | |
IF ($Service -eq $null) | |
{Write-Host "No service named" $ServiceName "on" $Computer "or the computer could not be reached."} | |
ELSE {Write-Host $Service "is" $Service.Status "on" $Computer.ToUpper()} | |
IF ($Service.Status -eq "Stopped") {StartService} # Call Start function if service is stopped | |
ELSEIF ($Service.Status -eq "StopPending") {KillProcess} # Forcefully kill the process | |
ELSEIF ($Service.Status -eq "Running" -and $count -lt 1) {KillProcess} | |
} | |
Function StartService | |
{ | |
Write-Host "Starting" $Service.Name "service on" $Computer.ToUpper() | |
$Service.Start() | |
Start-Sleep 5 | |
CheckProcess | |
} | |
Function KillProcess | |
{ | |
$Processes = (Get-WmiObject Win32_Process -ComputerName $Computer | Where { $_.ProcessName -match $ProcesesName }) | |
ForEach ($Process IN $Processes) | |
{ | |
Write-Host "Killing" $Process.ProcessName "on" $Computer.ToUpper() | |
$Process.Terminate() | Out-Null | |
Start-Sleep 5 | |
} | |
$count++ | |
CheckProcess | |
} | |
## Start of script ## | |
$ServiceName = "WinCollect" | |
$ProcesesName = "WinCollect*" | |
$Computers = Import-Csv C:\users\bdabbs\Desktop\restart.txt -Header Name | |
ForEach ($Computer IN $Computers) | |
{ | |
$Computer = $Computer.Name | |
$count = 0 | |
CheckProcess | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment