quote:
Originally posted by Jedimark
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
        }
}
Why not make a nice dll that returns an array with keys?