This example shows how to manage Windows services using PowerShell commands Get-Service, Start-Service, and Stop-Service. First, the script gets the status of the 'wuauserv' service. If the service is stopped, it starts it. Otherwise, it stops the service. The execution table traces each step, showing the service status and commands run. The variable tracker follows the service status change from running to stopped. Key moments clarify why the status is checked twice and what happens if the service is running. The quiz tests understanding of the service status at each step and the commands executed based on conditions.