T
Ty Moffett
Dim rk As RegistryKey =
Registry.LocalMachine.CreateSubKey("Software\Microsoft\Windows\CurrentVersio
n\WindowsUpdate\Auto Update")
rk.SetValue("AUOptions", "4")
In the above example I am setting AUOptions to a value of 4. By default it
created a REG_SZ but I need it to be a REG_DWORD.
I can't for the life of me find anything written about this. Can anyone
offer some advice?
Registry.LocalMachine.CreateSubKey("Software\Microsoft\Windows\CurrentVersio
n\WindowsUpdate\Auto Update")
rk.SetValue("AUOptions", "4")
In the above example I am setting AUOptions to a value of 4. By default it
created a REG_SZ but I need it to be a REG_DWORD.
I can't for the life of me find anything written about this. Can anyone
offer some advice?