Page 1 of 1

Urgent Problem regedit

Posted: Fri Jan 23, 2015 9:15 am
by Silvio.Falconi
I must erase on 200 computers a value on Registry
because when on lan a user open Microsoft Office it reinstall the application or search any files into a folder
I allready tried and run ok
I thinked to create a exe to make fast the operation from each terminal

I must change a value into HKEY_LOCAL_MACHINE\Software\Microsoft\Office\11.0\Delivery\CdCache
from 2 to 0

I make this ...

local hKey
RegOpenKey( HKEY_LOCAL_MACHINE,;
"Software\Microsoft\Office\11.0\Delivery\CdCache", @hKey )
RegDeleteKey( hKey, "CdCache" )
RegCloseKey( hKey )

but it delete the value and I wish insert a "0" (zero) into this value
How I can do ?

thanks

Re: Urgent Problem regedit

Posted: Fri Jan 23, 2015 9:30 am
by hmpaquito

Re: Urgent Problem regedit

Posted: Fri Jan 23, 2015 11:10 am
by Silvio.Falconi
Function Esegui()
local hKey
RegOpenKey( HKEY_LOCAL_MACHINE,;
"Software\Microsoft\Office\11.0\Delivery", @hKey )

// RegDeleteKey( hKey, "CdCache" )

RegSetValue(hKey,"CdCache","0")

MsgInfo( RegQueryValue( hKey,"CdCache" ) )

RegCloseKey( hKey )


return nil


the function RegSetValue(hKey,"CdCache","0") NOT RUN good

the value is allways 2

Re: Urgent Problem regedit

Posted: Fri Jan 23, 2015 11:19 am
by hmpaquito
BTW: viewtopic.php?f=6&t=29937&p=170341&hilit=windows+vista#p170341

Re: Urgent Problem regedit

Posted: Sat Jan 24, 2015 8:09 am
by Silvio.Falconi
oReg:= TReg32():New(HKEY_LOCAL_MACHINE, Key1,lShowError)
cInfo:= oReg:Get(Name,valore)
MsgInfo(cInfo,"Delivery 1" )
oReg:Set(Name,valore)
oReg:Close()

It seem to run ok

Now the problem is on some computer the variable DWORD "CdCache"

not exist I don't Know why

How I can to create this variable

the variable must be value DWORD

Re: Urgent Problem regedit

Posted: Mon Jan 26, 2015 12:08 pm
by TOTOVIOTTI
Paquito,
I could never operate the solution showed me in the post you indicate.
Regards,
Roberto