Originariamente inviato da Beziel
Sempre x Sypher:
e come faccio a verificare se una stringa nel registro esiste?!?
mmm...il wshshell non prevede un controllo, io lo farei così:
On Error Resume Next
WshShell.RegRead "Path Inesistente"
errore = Err.Number
If errore = -2147024893 Then
MsgBox "Path Inesistente"
Else
MsgBox "Path Esistente"
End If

Anche se mi sembra un pò zozza come cosa...funzica!