EvilZone

Programming and Scripting => Other => : Xedafen November 29, 2014, 02:32:15 AM

: Scanning the Registry with Batch
: Xedafen November 29, 2014, 02:32:15 AM
Does anyone know if there is a way to search the registry using the find command and then delete all of those keys in batch? I am trying to make an easier way to clean all the reg files in a key with batch, but dont know how.
:
set /p key= Key:
I only posted that bit of code to help understand what I am trying to do, I would like for when the user inputs that variable it searches th registry for that key and deletes it. is this possible?
: Re: Scanning the Registry with Batch
: Kulverstukas November 29, 2014, 08:48:06 AM
If you know the key, and you need to delete every entry in the key, then just use a wildcard.
A quick google search shows me http://domainwebcenter.com/?p=1392 and http://www.edugeek.net/forums/windows-7/83511-delete-registry-key-wildcard.html

Using VBS might be a bit easier tho.
: Re: Scanning the Registry with Batch
: iTpHo3NiX November 29, 2014, 06:35:12 PM
VBS would work better. You can have it open regedit, do the search ie Ctrl+f then have it enter your search screen, delete the key and f3 to search again
: Re: Scanning the Registry with Batch
: Kulverstukas November 29, 2014, 09:20:06 PM
VBS would work better. You can have it open regedit, do the search ie Ctrl+f then have it enter your search screen, delete the key and f3 to search again
Ugh... what? why go the macro way? VBS is capable of interacting with Registry on his own.
: Re: Scanning the Registry with Batch
: iTpHo3NiX November 30, 2014, 03:20:32 AM
Ugh... what? why go the macro way? VBS is capable of interacting with Registry on his own.

Really didn't know that
: Re: Scanning the Registry with Batch
: Kulverstukas November 30, 2014, 09:51:04 AM
Really didn't know that
I've done it in one of my scripts: https://evilzone.org/scripting-languages/%28vbscript%29-change-windows-wallpaper-programatically/
: Re: Scanning the Registry with Batch
: Deque December 01, 2014, 07:47:57 AM
reg query is what you are looking for.
Please, have a look here for examples and explanation: http://www.robvanderwoude.com/regsearch.php