8 lines
241 B
Plaintext
8 lines
241 B
Plaintext
' Simply loads Passport and prints out config status
|
|
Set obj = WScript.CreateObject("Passport.Admin")
|
|
If obj.IsValid <> false Then
|
|
WScript.Echo "Configuration Successful"
|
|
Else
|
|
WScript.Echo "Failed: " & obj.ErrorDescription
|
|
End If
|