Little experiments fun with command prompt

Author Topic: Little experiments fun with command prompt  (Read 3780 times)

NET SEND is not included in Windows 7 Home Premium or Starter, so those versions of W7 can't run the messenger script.


NET SEND is not included in Windows 7 Home Premium or Starter, so those versions of W7 can't run the messenger script.
Did you run and type "cmd" ?

Did you run and type "cmd" ?

Yes, NET SEND isn't there. It's in Windows 7 Ultimate and XP I think.


Yes, NET SEND isn't there. It's in Windows 7 Ultimate and XP I think.
type net help . So you have create your own code in the notepad and save as name.bat
simple code:
Code: [Select]
@echo off
color 02
:tricks
echo Hello World
pause
goto tricks
Try it
« Last Edit: February 26, 2013, 09:40:50 PM by Furling² »


I just made an upgraded version of the fake virus, you can make a shortcut to it and change and icon the name to internet explorer if you want to fool a friend.
This one will give you 2 minutes until it shuts down your PC if you answer yes. You can stop the shutdown by typing shutdown -a in the CMD.
Code: [Select]
@echo off
echo A virus has been detected!
pause
echo Attempting to delete.
pause
echo Deletion failed!
@echo sys32 has been modified, fatal error!!
echo System 32 Deleted. Do you want to shut down? y/n
set /p var=answer
pause
if %var%== y goto yes


if %var%== n goto no

:yes

echo 101010101111100010100101010101001010101010101010
echo 101010101111100010100101010101001010101010101010
echo 101010101111100010100101010101001010101010101010
echo 101010101111100010100101010101001010101010101010
echo 101010101111100010100101010101001010101010101010
echo 101010101111100010100101010101001010101010101010
echo 101010101111100010100101010101001010101010101010
shutdown -f -s -t 120
:no
echo 101010101111100010100101010101001010101010101010
echo 101010101111100010100101010101001010101010101010
echo 101010101111100010100101010101001010101010101010
echo 101010101111100010100101010101001010101010101010
echo 101010101111100010100101010101001010101010101010
echo 101010101111100010100101010101001010101010101010
echo 101010101111100010100101010101001010101010101010
color 1
color 2
color 3
color 4
color 5
color 6
color 7
color 8
color 9
color 10
goto no

Only XP Professional.
Any windows will works.
I had this windows basic vista and 8, they pretty works for me.

I just made an upgraded version of the fake virus, you can make a shortcut to it and change and icon the name to internet explorer if you want to fool a friend.
This one will give you 2 minutes until it shuts down your PC if you answer yes. You can stop the shutdown by typing shutdown -a in the CMD.
Code: [Select]
@echo off
echo A virus has been detected!
pause
echo Attempting to delete.
pause
echo Deletion failed!
@echo sys32 has been modified, fatal error!!
echo System 32 Deleted. Do you want to shut down? y/n
set /p var=answer
pause
if %var%== y goto yes


if %var%== n goto no

:yes

echo 101010101111100010100101010101001010101010101010
echo 101010101111100010100101010101001010101010101010
echo 101010101111100010100101010101001010101010101010
echo 101010101111100010100101010101001010101010101010
echo 101010101111100010100101010101001010101010101010
echo 101010101111100010100101010101001010101010101010
echo 101010101111100010100101010101001010101010101010
shutdown -f -s -t 120
:no
echo 101010101111100010100101010101001010101010101010
echo 101010101111100010100101010101001010101010101010
echo 101010101111100010100101010101001010101010101010
echo 101010101111100010100101010101001010101010101010
echo 101010101111100010100101010101001010101010101010
echo 101010101111100010100101010101001010101010101010
echo 101010101111100010100101010101001010101010101010
color 1
color 2
color 3
color 4
color 5
color 6
color 7
color 8
color 9
color 10
goto no
I save as PaintsForum.bat I like it. nice flashing CMD colors

MOFO, I forget remove this shutdown -f -s -t 120. My computer was shutdown. This gave me idea. code

Code: [Select]
@echo off
shutdown -f -s -t 1
That for quick shutdown my computer save my time :D

Look, another copy paste.

MOFO, I forget remove this shutdown -f -s -t 120. My computer was shutdown. This gave me idea. code

Code: [Select]
@echo off
shutdown -f -s -t 1
That for quick shutdown my computer save my time :D
Lol I said it would shutdown.
Also shutdown -f -s -t 1 is a good idea.
I save as PaintsForum.bat I like it. nice flashing CMD colors
Thanks.

Thanks.
You are welcome, How you make this cmd pop up GUI something like that? I saw.

If you're asking what I think you are,
Code: [Select]
echo System Do you want to shut down? y/n
set /p var=answer
pause
if %var%== y goto yes


if %var%== n goto no

:yes

echo 101010101111100010100101010101001010101010101010
echo 101010101111100010100101010101001010101010101010
echo 101010101111100010100101010101001010101010101010
echo 101010101111100010100101010101001010101010101010
echo 101010101111100010100101010101001010101010101010
echo 101010101111100010100101010101001010101010101010
echo 101010101111100010100101010101001010101010101010
shutdown -f -s -t 120
:no
echo 101010101111100010100101010101001010101010101010
echo 101010101111100010100101010101001010101010101010
echo 101010101111100010100101010101001010101010101010
echo 101010101111100010100101010101001010101010101010
echo 101010101111100010100101010101001010101010101010
echo 101010101111100010100101010101001010101010101010
echo 101010101111100010100101010101001010101010101010
color 1
color 2
color 3
color 4
color 5
color 6
color 7
color 8
color 9
color 10
goto no
Set /p var=answer - idk what this does
if %var%== y (or n) goto yes (or no)
S basically, if you answer y it will take you to the :yes part and if you answer n it will take you to :no wherever you may have put them.

You are welcome, How you make this cmd pop up GUI something like that? I saw.
add
Code: [Select]
-c "message here!" and a GUI pops up saying the system is being remotely shutdown