18/01/2002, 06:46
|
| Usuario no validado | | Fecha de Ingreso: enero-2001 Ubicación: Mendoza
Mensajes: 630
Antigüedad: 24 años Puntos: 1 | |
Re: Instalar fondo de escritorio html <BLOCKQUOTE><font size=1 face=arial>Citando:<hr height=1 noshade>WSHShell.Popup "Establecer el valor HKCU\MyRegKey\Entry a REG_DWORD 2"
WSHShell.RegWrite "HKCU\MyRegKey\Entry", 2, "REG_DWORD"
WSHShell.Popup "Establecer el valor HKCU\MyRegKey\Entry\Value1 a REG_BINARY 3"
WSHShell.RegWrite "HKCU\MyRegKey\Entry\Value1", 3, "REG_BINARY"
WSHShell.Popup "Eliminar el valor HKCU\MyRegKey\Entry\Value1"
WSHShell.RegDelete "HKCU\MyRegKey\Entry\Value1"
WSHShell.Popup "Eliminar la clave HKCU\MyRegKey\Entry"
WSHShell.RegDelete "HKCU\MyRegKey\Entry\"
WSHShell.Popup "Eliminar la clave HKCU\MyRegKey"
WSHShell.RegDelete "HKCU\MyRegKey\"
' ************************************************** ******************************
' *
' * Bienvenido
' *
Sub Welcome()
Dim intDoIt
intDoIt = MsgBox(L_Welcome_MsgBox_Message_Text, _
vbOKCancel + vbInformation, _
L_Welcome_MsgBox_Title_Text )
If intDoIt = vbCancel Then
WScript.Quit
End If
End Sub [/QUOTE]
Bueno, si conoces un pelín de VisualBasicScript, verás que es muy sencillo manipular las claves del registro con un archivo .vbs, al cual llamas tal como lo harías con un .bat
Suerte ;) |