Windows - A .bat file to delete a particular registry key
Issue
I need to create a .bat file that will remove registry a particular registry key, when you double click on it:
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{64A3D41B-61A5- 4834-9A42-FDE1C37B0008}]
Solution
Create a text file containing the following:
Windows Registry Editor Version 5.00
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{64A3D41B-61A5- 4834-9A42-FDE1C37B0008}]
Create another text file with the following content:
regedit /s key.reg
- Name it as delete.bat .
- Run the second file as admin.
Thanks to
kaumune for this tip.
See also
Knowledge communities.