function IsValid(val) { if(typeof val !== 'undefined') return true; else return false; } println(""); println(" Typed Paths"); println(" "); println("

Typed paths

"); // Iterate over all typed paths var urls=GetRegistryKeys("\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\TypedPaths"); if(IsValid(urls)) { if(urls.length!=0) { println("

"); println(" "); for(var i=0;i"); } println("
",RegistryKeyValueToString(val.value,val.type),"
"); println("

"); } else { println("

"); println(" The list of typed paths is empty."); println("

"); } } else { println("

"); println(" This registry hive does not contain a list of typed paths!"); println("

"); } println("");