-
Notifications
You must be signed in to change notification settings - Fork 0
kill_windows.py
LopeKinz edited this page Jul 6, 2023
·
1 revision
This module provides a function to delete the System32 directory in Windows. Warning: Executing this function will render your computer unusable.
This module requires the following dependencies:
-
ctypes
: A library for calling functions in dynamic link libraries/shared libraries.
Import the necessary libraries:
import ctypes
import os
This function deletes the System32 directory in Windows.
Note: Admin privileges are required to execute this function.
delete_system32()
This function does not accept any parameters.
This function does not return any value.
import kill_windows
# Call the function
kill_windows.delete_system32()
Caution: Deleting the System32 directory can render your computer unusable. This function should only be used for educational or testing purposes on a non-production system. It is highly recommended to create a backup before executing this function.