Sha256: 5503454100265503b6973ec1a8caf4cd753da3da80abcef113193e43bbb8bb79
Contents?: true
Size: 1.05 KB
Versions: 15
Compression:
Stored size: 1.05 KB
Contents
# # check-windows-service.ps1 # # DESCRIPTION: # This plugin checks whether a User-inputted Windows service is running or not. # # OUTPUT: # plain text # # PLATFORMS: # Windows # # DEPENDENCIES: # Powershell 3.0 or above # # USAGE: # Powershell.exe -NonInteractive -NoProfile -ExecutionPolicy Bypass -NoLogo -File C:\\etc\\sensu\\plugins\\check-windows-service.ps1 # # NOTES: # # LICENSE: # Copyright 2016 sensu-plugins # Released under the same terms as Sensu (the MIT license); see LICENSE for details. # #Requires -Version 3.0 [CmdletBinding()] Param( [Parameter(Mandatory=$True,Position=1)] [string]$ServiceName ) $ThisProcess = Get-Process -Id $pid $ThisProcess.PriorityClass = "BelowNormal" $Exists = Get-Service $ServiceName -ErrorAction SilentlyContinue If ($Exists) { If (($Exists).Status -eq "Running") { Write-Host OK: $ServiceName Running. Exit 0 } If (($Exists).Status -eq "Stopped") { Write-Host CRITICAL: $ServiceName Stopped. Exit 2 } } If (!$Exists) { Write-Host CRITICAL: $ServiceName not found! Exit 2 }
Version data entries
15 entries across 15 versions & 1 rubygems