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?