Ver Mensaje Individual
  #2 (permalink)  
Antiguo 14/03/2011, 18:17
Avatar de bieres
bieres
 
Fecha de Ingreso: marzo-2011
Mensajes: 63
Antigüedad: 14 años, 1 mes
Puntos: 5
Respuesta: modificar registro de windows

Hola fearhds, seria algo parecido a esto.
Código:
Imports Microsoft.Win32

Dim KeyPath as string =  "SOFTWARE/CCLEANER"
Dim ValueName as string = "UpdateCheck"
Dim value as object = 1

Dim key As RegistryKey = Registry.LocalMachine.OpenSubKey(KeyPath, True)
key.SetValue(ValueName, value)