Urgent Problem regedit
Posted: Fri Jan 23, 2015 9:15 am
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
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