Skip to main content

Posts

Showing posts from July, 2016

Colour Commands For CMD

Colour Commands For CMD       Guys , There is so simple way to see the colour codes... Otherwise        you can also change it manually....       So , let's start the command prompt through going in windows  or       press win+R key & type cmd & press enter.              Type COLOR ATTRIB in cmd.       you will see like this..... Command Prompt   There are whole details for change the color.....   The color  what ever you like just TYPE color_** ....   Like, color 0a , color 4f , etc.....   You can also set color MANUALLY   Go in windows- command prompt & right click on it   Open properties of command prompt   click the colors dialog box...   You will see like this.... CMD properties    You can choose the color which you have like... ...

Date & Time in CMD

Date & Time in CMD [command prompt]   OPEN  the notepad or notepad++ whatever you like.... TYPE  the commands as shown below &  SAVE  the document with a name what you like.... one important thing is ,  SAVE  it as a  BATCH FILE. .. I mean give  .bat  extension CLOSE  it  OPEN  the batch file and press any key see the  MAGIC .... @echo off :start echo Date: %date% Time: %time% goto start     Yup  !!! I know that we are getting lazy day to day ...      So, i give you a ready made text file & batch file...      DOWNLOAD  it & enjoy.... TEXT file BATCH file Download : batch file(.bat) Download : text file(.txt)        One interesting thing is that you can change the color through add some commands.       Like this..... BATCH file...

How to create a matrix

How to create a matrix   OPEN the notepad or notepad++ whatever you like.... TYPE the commands as shown below & SAVE the document with a name what you like.... one important thing is , SAVE it as a BATCH FILE. .. I mean give .bat extension CLOSE it  OPEN the batch file and press any key see the MAGIC .... @echo off pause color 0a mode 1000 :a echo %random% %random% %random% %random%.... goto a Yup !!! I know that we are getting lazy day to day ... So, i give you a ready made text file & batch file... DOWNLOAD it & enjoy the MATRIX. TEXT file BATCH file Download : batch file(.bat) Download : text file(.txt) RESULT will be look like this.... MATRIX VIEW ALSO : 1    DATE & TIME in CMD [command prompt]                               2    Color Codes of CMD [command prompt] ...