Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to delete the one application's registry key from the regedit using python script?

Tags:

python

regedit

I'm new to python. I want to delete the key which is in the regedit using python script.

regedit tree view for my application key

HKEY_CURRENT_USER
|
|_Software
        |
        |_Applications
                   |
                   |_Application
                             |_Test1
                             |_Test2

In this, I want to delete Test1 key using python script.

I've used below script

import _winreg
Key_Name=r'Software/Applications/Application/Test1'
Key=_winreg.OpenKey(_winreg.HKEY_CURRENT_USER, Key_Name, 0, _winreg.KEY_ALL_ACCESS)
_winreg.DeleteKey(key)

Error:

Traceback (most recent call last):
  File "C:\Users\Test\workspace\Test\DeletePreferences.py", line 9, in <module>
    key=_winreg.OpenKey(_winreg.HKEY_CURRENT_USER, r'Software/Applications/Application/Test1', 0, _winreg.KEY_ALL_ACCESS)
WindowsError: [Error 2] The system cannot find the file specified

can anybody suggest solution for this?

like image 598
cgsabari Avatar asked Oct 18 '13 12:10

cgsabari


1 Answers

Use backslash(\), not forward slash(/). And _winreg.DeleteKey requires at least two argument.

import _winreg
Key_Name = r'Software\Qube Cinema\QubeMaster Pro'
key = _winreg.OpenKey(_winreg.HKEY_CURRENT_USER, Key_Name, 0, _winreg.KEY_ALL_ACCESS)
_winreg.DeleteKey(key, 'Test1')
like image 186
falsetru Avatar answered Sep 20 '22 18:09

falsetru