how to create a simple fake virus

⚠️ WARNING: This video is for educational purposes only. Everything shown is made for learning, testing and fun experiments on your own PC. In this video you’ll learn how to create a simple fake virus using VBScript that opens multiple windows, displays scary message boxes and looks real but is 100% harmless. This tutorial is perfect if you want to understand how scripts work, how Windows automation behaves and how fake malware is built in a safe way. You will learn how to use message boxes, open programs with scripts, create loops and understand the logic behind harmless prank viruses. Here you can find the full code used in the video: CreateObject("Wscript.shell").run _ Set sh = CreateObject("WScript.Shell") For i = 1 To 15 sh.Run "cmd.exe /k color 0A && echo HI....guys", 1, False Wscript.Sleep 100 Next More advanced videos are coming soon, including how to make it start automatically with Windows, how to hide the script, how to turn it into an EXE and how to make it more realistic. Subscribe for more programming tricks, Windows automation tutorials, harmless pranks and beginner-friendly coding content.