File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ REM Test system processes that should always be running
12win-witr winlogon.exe
23win-witr lsass.exe
34win-witr win-witr.exe
@@ -9,11 +10,42 @@ win-witr fontdrvhost.exe
910win-witr svchost.exe
1011win-witr smss.exe
1112win-witr services.exe
12- win-witr MsMpEng.exe
1313win-witr powershell.exe
1414win-witr Runner.Listener.exe
1515win-witr cmd.exe
1616win-witr pwsh.exe
1717win-witr Runner.Worker.exe
1818win-witr hosted-compute-agent
19+ win-witr conhost.exe
20+ win-witr dwm.exe
21+ win-witr RuntimeBroker.exe
22+ win-witr SearchIndexer.exe
23+ win-witr spoolsv.exe
24+ win-witr taskhostw.exe
25+ win-witr dllhost.exe
26+
27+ REM Start notepad and test it, then close
28+ start /B notepad.exe
29+ timeout /t 1 /nobreak > nul
30+ win-witr notepad.exe
31+ taskkill /F /IM notepad.exe > nul 2 >& 1
32+
33+ REM Start calc and test it, then close
34+ start /B calc.exe
35+ timeout /t 1 /nobreak > nul
36+ win-witr calc.exe
37+ taskkill /F /IM calc.exe > nul 2 >& 1
38+
39+ REM Start mspaint and test it, then close
40+ start /B mspaint.exe
41+ timeout /t 1 /nobreak > nul
42+ win-witr mspaint.exe
43+ taskkill /F /IM mspaint.exe > nul 2 >& 1
44+
45+ REM Start PowerShell and test it, then close
46+ start /B powershell.exe -NoProfile -Command " Start-Sleep -Seconds 5"
47+ timeout /t 1 /nobreak > nul
48+ win-witr powershell.exe
49+ taskkill /F /IM powershell.exe > nul 2 >& 1
50+
1951
You can’t perform that action at this time.
0 commit comments