Does anyone know how to do the equivalent of this C# code in JScript?
Cheers,
- Mark
code:
try
{
RegistryKey rootPath = Registry.CurrentUser.OpenSubKey("Software\\Item1\\Item2", true);
foreach(string newKey in rootPath.GetSubKeyNames())
{
// other stuff here
}
}