Wednesday, December 9, 2015

Window Registry Add, Edit and Delete

In Window enviroment, registry play a role to store setting and so forth. To know more please find out more yourself. So today I here to write on how to adding, editing and delete the Window registry by using reg file. Registry is arranged in a hierarchy tree view. So to edit or adding the registry value, you may need to ensure the path of the registry is correct point to the particular path. Let see example below you may know.

To delete

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Cisco Systems\VPN Client]

"test"=-

To Add

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Cisco Systems\VPN Client]

"test"="123"


To Update

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Cisco Systems\VPN Client]

"test"="456"


Copy the registry and save it as reg file, once the file execute and the value will change accordingly.