Skip to content

SDF-OBS-02 โ€” get-service.ps1

Purpose:
To list all Windows services and check their current status.


๐Ÿงญ Script Example

Get-Service | Where-Object {$_.Status -eq 'Running'}

๐Ÿ“Š What It Shows

  • Service name
  • Display name
  • Status (Running, Stopped, Paused)
  • Dependent services

๐Ÿง  Reflection

  • Did you find any unknown services running?
  • Are all critical services active?