Comment accéder à la base de registre en utilisant le Windows Scripting Host ?
Voici un exemple d'accès à la base de registre utilisant le Windows
Scripting Host :
Set WshShell = CreateObject("WScript.Shell")
WshShell.RegWrite "HKCU\Software\Test\ZeValue", "Goocher !",
"REG_SZ"
MsgBox WshShell.RegRead("HKCU\Software\Test\ZeValue"), vbInformation
WshShell.RegDelete "HKCU\Software\Test\"
Vous pouvez employer les abréviations suivantes pour les clés racines :
- HKEY_CURRENT_USER : HKCU
- HKEY_LOCAL_MACHINE : HKLM
- HKEY_CLASSES_ROOT : HKCR
Pour plus d'informations, visitez les liens suivants :
|