Hello,
I had a Visual Basic Script converted to vbs for me and one part of it is not working.
This piece checks for passwords in a SQL 2000 MSDE data base and if it is either NOT clear text of Blank then it should tell you that it is either encrypted or blank and ask you to enter a default password for all of the users.
The Echo is not working either.
'WScript.Echo = "Checking password encryption status..."
sqlQuery = "SELECT * FROM Settings;"
Set objRS = objConn.Execute(sqlQuery)
strPassword = ""
If objRS("ClearTextPasswords") = 0 Then
Do Until strPassword <> ""
strPassword = InputBox("What password would you like to assign to users?", "Passwords are encrypted...")
If strPassword = "" Then
MsgBox "You can not use a blank password!", vbCritical
End If
Loop
End If
'WScript.Echo = "Scanning database...
I had a Visual Basic Script converted to vbs for me and one part of it is not working.
This piece checks for passwords in a SQL 2000 MSDE data base and if it is either NOT clear text of Blank then it should tell you that it is either encrypted or blank and ask you to enter a default password for all of the users.
The Echo is not working either.
'WScript.Echo = "Checking password encryption status..."
sqlQuery = "SELECT * FROM Settings;"
Set objRS = objConn.Execute(sqlQuery)
strPassword = ""
If objRS("ClearTextPasswords") = 0 Then
Do Until strPassword <> ""
strPassword = InputBox("What password would you like to assign to users?", "Passwords are encrypted...")
If strPassword = "" Then
MsgBox "You can not use a blank password!", vbCritical
End If
Loop
End If
'WScript.Echo = "Scanning database...