GetFirstKey
Utilizzato per avviare l’enumerazione delle chiavi che risiedono nel percorso del Registro di sistema.
Sintassi
GetFirstKey(Path)
Restituisce
Stringa: nome della prima chiave.
Esempio
Gli script elencano tutti i codici sotto Microsoft:
Function 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 "Nomechiave = " & value & cr
Value = ro.GetNextKey
Wend
End Function