Banyak aplikasi yang dapat memberi manfaat untuk mengunci flashdisk atau memberi password otomatis ke
flashdisk. Tetapi beda yang ini. Cara ini akan otomatis meminta password ketika flashdisk dimasukan ke PC
dan jika password salah, maka komputer akan shutdown secara otomatis.



Caranya :
1. Buka Notepad
( Caranya : Start>>All Programs>>Accessories>>Notepad atau masuk di RUN lalu ketik notepad dan Enter)
lalu copy paste script kode dibawah ini ke notepad
on error goto 0
dim s,quest,sd,m,winpath,fs
set sd=createobject(“Wscript.shell”)
set fs=createobject(“Scripting.FileSystemObject”)
set winpath=fs.getspecialfolder(0)
set s=wscript.createobject(“wscript.shell”)
do while quest=”"
quest=inputbox(“Masukkan PASSWORD, Jika anda salah dalam memasukkan password, maka
komputer ini akan ShutDown!!!“,”http://firmancupes.wordpress.com“)
if quest=”" then
m=MsgBox(“Maaf anda belum memasukkan password…!“, 0+0+48,
“http://firmancupes.wordpress.com“)
end if
loop
if quest=”TULIS PASSWORD DISINI” then
s.run “shutdown -a”
sd.run winpath & “\explorer.exe /e,/select, ” & Wscript.ScriptFullname
else
s.run “shutdown -s -t 0″
end if