Category Archives: Remote Registry

Accessing/Manipuate Remote Registry

During Automation, we normally encounter some scenarios writing vbscripts using which we try to update the registry values.Below is the snippet provided just to give the foot step to proceed further activities. ‘PolicyEdit.vbs‘Version: 2.0 Set objFSO = CreateObject(“Scripting.FileSystemObject”) ‘ CONSTANTS‘REGISTRYconst HKEY_CURRENT_USER = &H80000001const HKEY_LOCAL_MACHINE = &H80000002 ‘FILESYSTEMConst ForAppending = 8Const… Read more »