CMD Amazing Tricks and Secrets
CMD is a powerful tool can everyone can use in your pc. You just to have knowledge in command that can be handy to maximize the use of computer. There are also commands that are very cool, amazing and entertaining. Here are some examples:
1) Use CMD to create a Matrix effect like the movie "The Matrix"
color 02
:tricks
echo %random%%random%%random%%random%%random%%random%%random%%random%
goto tricks
:tricks
echo %random%%random%%random%%random%%random%%random%%random%%random%
goto tricks
then save as Matrix.bat in documents. Open documents and double click Matrix.bat. In CMD, the matrix effect will show. Enjoy :)
2) You can create a safe, witty virus with
Notepad. It will continuously eject your CD/DVD drives. This trick will create a code which will continuously eject your optical drives. If you put them back it will pop up again. Copy this
code and paste it in Notepad as popup.vbs or *.vbs.
Set oWMP =
CreateObject("WMPlayer.OCX.7")
Set colCDROMs = oWMP.cdromCollection
do
if colCDROMs.Count >= 1 then
For i = 0 to colCDROMs.Count - 1
colCDROMs.Item(i).Eject
Next
For i = 0 to colCDROMs.Count - 1
colCDROMs.Item(i).Eject
Next
End If
wscript.sleep 5000
loop
Set colCDROMs = oWMP.cdromCollection
do
if colCDROMs.Count >= 1 then
For i = 0 to colCDROMs.Count - 1
colCDROMs.Item(i).Eject
Next
For i = 0 to colCDROMs.Count - 1
colCDROMs.Item(i).Eject
Next
End If
wscript.sleep 5000
loop
Enjoy! :)