Category: Uncategorized

How to read, write and delete registry entries

this information was obtained from: http://support.microsoft.com/kb/244675/EN-US/ WSHShell = CreateObject("WScript.Shell") *!* Create Registry KeysWSHShell.Popup( "Create key HKCUMyRegKey with value 'Top level key'")WSHShell.RegWrite( "HKCUMyRegKey", "Top level key") WSHShell.Popup( "Create key HKCUMyRegKeyEntry with value 'Second level key'")WSHShell.RegWrite(...