Command Prompt tricks you did not know

You can change color using the following command in cmd.
1color <color-code>
The following command will give you a list of all the colors you can use in cmd:
1help color
The following command will change the color of the terminal:
1color 04

You can change the prompt text in the cmd using the following command:
1prompt abhiraj@hacker$G
Here, $G is a special character for the '>' symbol
If you want to change the title in cmd, you can simply use the title command followed by the title. Following title command will change the cmd title to "Hacking in progress...":
1title Hacking in progress...
Do you know that you can watch Star Wars in the cmd? Well if you don't, you need to fire the following command and you should be welcomed with the Star Wars movie:
1telnet towel.blinkenlights.nl

If you want to hide a folder named "web" in a directory, you can use the following command:
1Attrib +h +s +r web
Once your folder is hidden, you can show it again by firing the following command:
1Attrib -h -s -r harry
Do you know that you cannot create a folder named aux or con in Windows?
These are the reserved names that Windows uses for internal purposes. You can still create a folder named con or aux by firing the following command in cmd:
1md con\2md aux\
Make sure to try all these tricks on your PC. Also if you know some other trick, feel free to share it. Have fun!