The YouTube video "How to Check Running and Stopped Windows Services Using PowerShell" shows the presenter using PowerShell to identify running and stopped services on a Windows 11 machine. To view a list of currently running services, type "get-service | where-object {$_.status -eq 'running'}" in the PowerShell console. For services in a stopped state, use the keyword "stopped" instead. This simple PowerShell command allows users to quickly distinguish between running and stopped services, making it a useful tool for managing Windows services