Regedit using batch file

Discussion forum for all Windows batch related topics.

Moderator: DosItHelp

Post Reply
Message
Author
newbie
Posts: 24
Joined: 29 Sep 2010 01:30

Regedit using batch file

#1 Post by newbie » 11 Jan 2011 02:22

Hello, I want to create a batch file that can add or delete value, for example i want to change this:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer \Advanced\Folder\Hidden\SHOWALL\CheckedValue set the value to 2, need help?????tq :wink:

ChickenSoup
Posts: 79
Joined: 13 Dec 2010 10:32

Re: Regedit using batch file

#2 Post by ChickenSoup » 11 Jan 2011 08:06

Try using:

Code: Select all

REG ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\Hidden\SHOWALL /v CheckedValue /t REG_DWORD /d 2 /f


More info
REG ADD /?
REG /?

Post Reply