modify the registry with a batch file

tbei25

Honorable
Oct 17, 2013
1
0
10,510
HI-

I am trying to create a batch file to modify a registry file. we have adobe reader X and need to change the reg file HKLM\software\policies\adobe\acrobat reader\10.0\featurelockdown\bprotectedmode the value is set to 1 and I need to change it to 0. this is what I have so far in my batch file.
@echo
reg add HKLM\SOFTWARE\Policies\Adobe\Acrobat Reader\10.0\featureLockDown /v bProtectedMode /t REG_DWORD /d 0x00000000 (0) /f

I try to run this but nothing changes, it looks like it worked with the cmd prompt but the value does not change. any suggestions would be helpful.

thanks