LAB-PROC-06 - Safe Stop and Verify
Practice identifying a harmless target, stopping it deliberately, and verifying that only the intended process changed state.
PS Process Management
Safe Stop and Verify
Practice identifying a harmless target, stopping it deliberately, and verifying that only the intended process changed state.
30 min INTERMEDIATE BOTH Field-verified
Before this lab
What success looks like
- Practice identifying a harmless target, stopping it deliberately, and verifying that only the intended process changed state.
- Repeat the workflow without copy-paste or step-by-step prompting.
Safety notes
- Use only harmless lab processes you created yourself.
- Do not stop unknown services or shared processes while learning.
Part A: The Field Guide
This lab is about restraint.
The goal is not to prove that you can stop a process. The goal is to prove that you can stop the right process and verify the result.
Safety Rule
Create your own harmless target first. Never practice process stopping on unknown system work.
Part B: The Drill Deck
G Guided Step by step - type exactly this and compare the result >
Exercise G1: Create a harmless target
Start-Process notepad Get-Process -Name notepad
sleep 300 & pgrep sleep
Exercise G2: Verify before stopping
- note the exact process name and PID
- confirm it is the target you created
- confirm no other similar process should be preserved first
Exercise G3: Stop the target deliberately
Stop-Process -Id 1234
kill 1234
S Solo Task described, hints available - figure it out >
Exercise S1: Verify the result
- rerun your process listing
- confirm the target is gone
- confirm the system looks normal again
- explain what would have made the stop unsafe on a real workstation
M Mission Real scenario - no hints, combine multiple skills >
Mission M1: Choose the safest stop path
Explain in plain language:
- when stopping by PID is safer than stopping by name
- when a restart may be better than a stop
- when you should inspect logs or service state before you do either
What to do next
Best next step LearningReturn to the related lesson if you want the concept explained more deeply.