VBScript to Delete Registrly key and all subkeys
This script has worked good for me and I would like to share with all. Option Explicit Dim intHive Dim strComputer Dim strKeyPath, objRegistry Const HKEY_CLASSES_ROOT = &H80000000 Const HKEY_CURRENT_USER = &H80000001 Const HKEY_LOCAL_MACHINE = &H80000002 Const HKEY_USERS = &H80000003 Const HKEY_CURRENT_CONFIG = &H80000005 'On Error Resume Next strComputer = "." intHive = HKEY_LOCAL_MACHINE strKeyPath = "SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\ABC\XYZ" Set objRegistry = GetObject("winmgmts:\\" & strComputer & "\...