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

Version Path
sensu-plugins-windows-3.0.0 bin/powershell/check-windows-service.ps1
sensu-plugins-windows-2.9.1 bin/powershell/check-windows-service.ps1
sensu-plugins-windows-2.9.0 bin/powershell/check-windows-service.ps1
sensu-plugins-windows-2.8.1 bin/powershell/check-windows-service.ps1
sensu-plugins-windows-2.8.0 bin/powershell/check-windows-service.ps1
sensu-plugins-windows-2.7.0 bin/powershell/check-windows-service.ps1
sensu-plugins-windows-2.6.0 bin/powershell/check-windows-service.ps1
sensu-plugins-windows-2.5.0 bin/powershell/check-windows-service.ps1
sensu-plugins-windows-2.4.1 bin/powershell/check-windows-service.ps1
sensu-plugins-windows-2.4.0 bin/powershell/check-windows-service.ps1
sensu-plugins-windows-2.3.0 bin/powershell/check-windows-service.ps1
sensu-plugins-windows-2.2.1 bin/powershell/check-windows-service.ps1
sensu-plugins-windows-2.2.0 bin/powershell/check-windows-service.ps1
sensu-plugins-windows-2.1.0 bin/powershell/check-windows-service.ps1
sensu-plugins-windows-2.0.0 bin/powershell/check-windows-service.ps1