GetNextKey
GetNextKey 用于继续执行由 GetFirstKey 函数开始的对注册表键的枚举。
语法
GetNextKey
返回结果
包含注册表键名称的字符串。
示例
此脚本列出了 Microsoft 下的所有键:
函数 Main
Dim Ro As Object
cr = Chr(13) + Chr(10)
Set Ro = Registry.Connect("127.0.0.1")
Value = ro.GetFirstKey("SOFTWARE\Microsoft")
While Value <> ""
Echo "Keyname = " & value & cr
Value = ro.GetNextKey
Wend
End 函数