WinReg-Python-Utils is a Python script for interacting with the Windows Registry. This utility simplifies tasks such as creating, reading, and deleting registry keys and values under the HKEY_CURRENT_USER hive.
- Easily manage application settings in the Windows Registry.
- Set or remove startup configurations.
- Python script example for Windows Registry operations.
- Suitable for system administrators and developers.
- Clone or download the repository.
- Run the
winreg_utils.py
script to perform Windows Registry operations. - Follow the prompts to create, read, delete keys/values, or the whole registry subkey.
Add a new startup setting
set_value("startup", "1")
Read the startup setting
value = get_value("startup")
print("Startup setting:", value)
Delete the startup setting
delete_value("startup")
Delete the whole registry subkey
delete_subkey()
This project is licensed under the MIT License - see the LICENSE file for details.
Prajwal J