chris.egron Posted February 24, 2005 Share Posted February 24, 2005 Bonjour, Je voudrai supprimer cette clé de mon registre: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shared Tools\MSConfig\startupreg puis la recrée, par l'intermédiaire d'un fichier vbs. vous pouvez pas m'aider? Merci bien, Christophe Link to comment Share on other sites More sharing options...
Chimayscripteur Posted March 22, 2005 Share Posted March 22, 2005 Set WshShell= WScript.CreateObject("WScript.Shell") newKey="SERVER_NAME" valeur="tonServeur" With WshShell 'Récupérer les "ControlSet" .RegWrite "HKLM\SYSTEM\ControlSet001\Control\Session Manager\Environment\" & newKey,valeur,"REG_SZ" WScript.Echo .RegRead("HKLM\SYSTEM\ControlSet001\Control\Session Manager\Environment\" & newKey) .RegWrite "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment\" & newKey,valeur,"REG_SZ" WScript.Echo .RegRead("HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment\" & newKey) End With Ce script cree une nouvelle variable d'environnement appelee SERVER_NAME et écrit la valeur tonServeur dfans celle-ci. La fonction RegRead lis cette valeur et l'affiche via WScript.Echo. That's all! Link to comment Share on other sites More sharing options...
chris.egron Posted March 22, 2005 Author Share Posted March 22, 2005 c'est gentil, mais je ne vois toujours pas comment faire pour supprimer et recréer? Cordialement, Christophe Link to comment Share on other sites More sharing options...
Chimayscripteur Posted March 22, 2005 Share Posted March 22, 2005 Tu sauvegardes ta clef dans une variable grace a RegRead Tu la delete avec RegDelete Tu la recrees avec RegWrite C'est tout simple... :chinois: Elle te bloque quoi cettte clef ? Si c'est pas indiscret... Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.