CMD TRICKS
5 CMD tricks to impress your friends
1) Matrix effect
@echo off
color 0a
:top
echo %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random%
goto top
@echo off
color 0a
:top
echo %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random%
goto top
2) Remote shutdown
In CMD: shutdown -i
In CMD: shutdown -i
3) Text files
for /l %%n in (1,1,[number]) do [name] >> [name]%%n.txt
for /l %%n in (1,1,[number]) do [name] >> [name]%%n.txt
4) CMD title change
in CMD: title [name]
in CMD: title [name]
5) CMD color change
CMD > properties > colors
CMD > properties > colors
6)watch
@echo off
:start
echo Date: %date% Time: %time%
goto start
@echo off
:start
echo Date: %date% Time: %time%
goto start
Post a Comment