How to make a fake virus

preview_player
Показать описание
popup box
Save as .vbs
x=msgbox("Your Text Here" ,Buttons, "Your Title Here")
0 =OK button only
1 =OK and Cancel buttons
2 =Abort, Retry, and Ignore buttons
3 =Yes, No, and Cancel buttons
4 =Yes and No buttons
5 =Retry and Cancel buttons
16 =Critical Message icon
32 =Warning Query icon
48 = Warning Message icon
64 =Information Message icon
0 = First button is default
256 =Second button is default
512 =Third button is default
768 =Fourth button is default
0 =Application modal (the current application will not work until the user responds to the message box)
4096 =System modal (all applications wont work until the user responds to the message box)

Note:
Make sure when you add another messege box, you press enter twice, so there is one whole blank line in between them.

Command promt:
@echo off
echo Would you like to scan your PC?
pause
echo Scanning
pause
dir/s
cls
echo Scan Complete!
pause
cls
echo Virus Detected!
pause
cls
echo Virus is deleting files, do you want to stop the virus?
pause
cls
echo ACCESS DENIED!
echo ACCESS DENIED!
echo ACCESS DENIED!
pause
cls
echo DELETING FILES!
pause
:1
dir/s
goto 1
Save as .bat
Рекомендации по теме