Hi there,
my suggestion is to create a reg.file as follows:
Find the keys you want to get rid of. IMHO this is the easiest way.
Use notepad or wordpad to write registry files, you just save them with a .reg extension.
The first line in the registry file for XP or 2000 has to be:
Windows Registry Editor Version 5.00
NOTE: For windows 98, ME, NT 4.0 replace with:
REGEDIT4
Put a line in between Windows Registry Editor 5.00 and the next entry.
EXAMPLE:
To delete the key
[HKEY_CURRENT_USER\Key\Subkey]
create the following:
[-HKEY_CURRENT_USER\Key\Subkey]
If you want to delete a value set the value equal to a minus.
EXAMPLE:
To delete the value:
[HKEY_CURRENT_USER\Key\Subkey]"whatever"="whenever"
create the following:
[HKEY_CURRENT_USER\Key\Subkey]"whatever"=-
You may save all changes into one .reg file and deploy it to the desired machines.
Hope this helps.
Regards
Uwe |