Como obtener un valor del REGEDIT
Hola LSCPANCHO79
' Se usa el Wsh (windows scripting
' host para acceder a los registros
'Este es un Ejemplo en visual Basic
' Si necesitas mas ayuda escribeme
' [email protected]
Set WshShell = CreateObject("WScript.Shell")
MsgBox WshShell.RegRead("HKLM\Software\....")
'HKLM = HKEY_LOCAL_MACHINE, also HKCU, etc...
'example of a key to read:
'HKLM\Software\Microsoft\Windows\CurrentVersion\Run\stcloader)
Set WshShell = CreateObject("WScript.Shell")
MsgBox WshShell.RegRead("HKLM\Software\....")
'HKLM = HKEY_LOCAL_MACHINE, also HKCU, etc...
'example of a key to read:
'HKLM\Software\Microsoft\Windows\CurrentVersion\Run\stcloader
' Se usa el Wsh (windows scripting
' host para acceder a los registros
'Este es un Ejemplo en visual Basic
' Si necesitas mas ayuda escribeme
' [email protected]
Set WshShell = CreateObject("WScript.Shell")
MsgBox WshShell.RegRead("HKLM\Software\....")
'HKLM = HKEY_LOCAL_MACHINE, also HKCU, etc...
'example of a key to read:
'HKLM\Software\Microsoft\Windows\CurrentVersion\Run\stcloader)
Set WshShell = CreateObject("WScript.Shell")
MsgBox WshShell.RegRead("HKLM\Software\....")
'HKLM = HKEY_LOCAL_MACHINE, also HKCU, etc...
'example of a key to read:
'HKLM\Software\Microsoft\Windows\CurrentVersion\Run\stcloader
1 Respuesta
Respuesta
1