Global $pswfile="密码文件.psw"
If FileExists($pswfile) Then
MsgBox(0,"","有密码文件的处理过程")
$input=InputBox("爱咋咋地", "请回答口令:", "", "*",220,120,-1,-1,16)
if $input=123 Then
;当密码等于123则
ElseIf $input=321 Then
;当密码等于321则
Else
;当密码不对则
EndIf
Else
MsgBox(0,"","无密码文件的处理过程")
EndIf