Advertisement
MineHack7488

lock.vbs

Feb 25th, 2023
1,698
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VBScript 0.37 KB | Cybersecurity | 0 0
  1. Set wshShell = CreateObject("WScript.Shell")
  2.  
  3. Do
  4.     input = InputBox("Your text can be here. Passwords: '12345' and '\'", "WinLock", "", 500, 500)
  5.  
  6.     If input = "12345" Or input = "\" Then
  7.         wshShell.Popup "Unlocked succesfully!", 2, "Succes", 64 + 4096
  8.         ' Your code can be here
  9.        Exit Do
  10.     Else
  11.         ' Your code can be here
  12.    End If
  13. Loop
Tags: Locker
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement