This script may disturb the user and the popup will disappear on restart. VBScript version is more effective than batch script version
Language: Windows Batch Script (.bat)
Save file as anything.bat
@echo off
title Popups
for /l %%i in (0,0,1) do msg * /time:1 "Close this useless popup"
Or type this in cmd.exe:
for /l %i in (0,0,1) do msg * /time:1 "Close this useless popup"
How to stop: Simply close the cmd window
Language: VBScript Script File (.vbs)
dim logo
do
logo = logo mod 64 + 16
msgbox "Please be amazed by this animated useless popup :p", logo, "Animated useless popup"
loop
Type this in cmd.exe to stop (VBScript only) :
taskkill /im wscript.exe /f
No comments:
Post a Comment