First off, I do not want to rewrite a value.
I wish to open for example the following:
HKEY_LOCAL_MACHINE\Software\IBM\ADSM\CurrentVersion\Nodes
That is it, I've been looking at vbs scripts and seen the following:
Set WshShell = CreateObject("WScript.Shell")
WshShell.RegWrite "HKEY_LOCAL_MACHINE\Software\IBM\ADSM\CurrentVersion\Nodes\","REG_SZ"
WshShell.Run "regedit", 1,True
Set WshShell = Nothing
This however just opens regedit at the base directory.