how to delete some Data in regedit

Discussion forum for all Windows batch related topics.

Moderator: DosItHelp

Post Reply
Message
Author
Mohammad_Dos
Posts: 84
Joined: 08 Sep 2010 10:25
Location: Iran,Kashan
Contact:

how to delete some Data in regedit

#1 Post by Mohammad_Dos » 06 Sep 2011 01:27

Hi there
i want to delete all of data in regedit (reg_sz and reg_DWORD) that named for example "green"

how?

Ed Dyreen
Expert
Posts: 1569
Joined: 16 May 2011 08:21
Location: Flanders(Belgium)
Contact:

Re: how to delete some Data in regedit

#2 Post by Ed Dyreen » 06 Sep 2011 07:26

'
Download Regfind.CAB http://www.mediafire.com/myfiles.php#nk3paeav4918j

This code I use to change all references in registry from Administrator to ADMIN,
Maybe it can help to delete aswell.

Code: Select all

"!FullPathFile.RegFind!" -B -y "!SourceSTRING!" -r "!TargetSTRING!"
Brainstorming:
In DOS it may be possible querying the whole registry...

nitt
Posts: 218
Joined: 22 Apr 2011 02:43

Re: how to delete some Data in regedit

#3 Post by nitt » 07 Sep 2011 21:07

Ed Dyreen wrote:'
Download Regfind.CAB http://www.mediafire.com/myfiles.php#nk3paeav4918j

This code I use to change all references in registry from Administrator to ADMIN,
Maybe it can help to delete aswell.

Code: Select all

"!FullPathFile.RegFind!" -B -y "!SourceSTRING!" -r "!TargetSTRING!"
Brainstorming:
In DOS it may be possible querying the whole registry...


Can't you do this with the basic REG command? I know you can delete data. Although, I wouldn't even attempt learning to clear large portions of data. Because the only reason I see for doing that is for malicious purposes.

Post Reply