How do I validate the password the end user types and make sure it is complex 8 chars, one Capital and number?
; Get password to pass later in script
$user_input = InputBox("Checkpoint Charlie", "Please Enter Password for My_Special_Account Account", "", "*")
If $user_input = "" Then
MsgBox(4096, "Checkpoint Charlie", "Can't Continue without a Password!", 10)
Exit
EndIf