1. Encrypt Files using Command Prompt
One of the most useful things that you can do using the Command Prompt, is encrypting your sensitive data. Encryption is a way to prevent others from taking a peek at your data, and it’s a really important part of ensuring (to some extent, at least), that your files are only yours. With this simple Command Prompt trick, you can easily encrypt files on your Windows PC.
- Simply launch the Command Prompt, and change your working directory to the folder where your files are. This can be done by using the “cd”command.
- Once you’re done, type “Cipher /E“, and hit Enter. This will encrypt all the files that were inside the folder.
Note: If you try and open these encrypted files, they will open normally for you, however, any other user will not be able to view the files, unless they log in using your account. So make sure that you have a password set.
2. Change the Color of the CMD Window
The Command Prompt window is rather dull, in it’s default state, and it doesn’t really look appealing, or anything special. However, this simple command will let you change the background and foreground colors of the cmd window.
- Launch the cmd window, and type “color 02“.
- Hit Enter, and you will see the Command Prompt window use a black background with green text.
Note: There are a lot of other colors available, and you can check out the entire list by typing “help color“.
3. Change the Prompt Text in Command Prompt
When you first open Command Prompt, the default text of the prompt is very boring. It does reflect the current working directory that the user is in, but it sure could use some customization. If you would like the prompt in your cmd window to say something other than the default, you can use the following trick.
- Launch Command Prompt, and type “prompt” followed by the text that you want. Make sure you add “$G” to the end, to ensure that there is always the “>” sign at the end of the prompt, and you know where your command begins at.
- Hit Enter, and you will see the prompt in the cmd window change to your custom text.
Note: There are some more options like “$G” available, and you check out the entire list by typing “help prompt“. Also, you can reset the prompt back to its original state by simple typing “prompt” and hitting Enter.
4. Change the Title of the Command Prompt Window
When you launch Command Prompt, you must have seen that the title bar reads “Command Prompt”, or maybe “Administrator Command Prompt”, if you launch it with Administrator privileges. While that is okay, but if you have a lot of cmd windows open, and each of them are working on a different task, then this “Command Prompt” title is not helpful at all. Fortunately, you can change that too.
- Open Command Prompt, and type “title”, followed by the text that you want the Title bar to read.
- Hit Enter, and you will see the Title of the cmd window change to the text that you entered.
Note: The title changes back to “Command Prompt” once you quit cmd and relaunch it.
5. Watch an ASCII Version of Star Wars: A New Hope
This one is a very cool trick, that can let you watch an ASCII text version of Star Wars: A New Hope, completely inside the command prompt window. The method is very simple, and it uses Telnet. Simply follow the steps below to watch Star Wars inside the cmd window.
- Launch Command Prompt, and type “telnet towel.blinkenlights.nl”, and hit Enter.
- The movie will start playing immediately.
6. Create a WiFi Hotspot
You can also use the Command Prompt to create a WiFi hotspot on your Windows PC, and share your internet connection with multiple devices, all without having to use any third-party apps whatsoever. To do this, just follow the steps below:
- Launch Command Prompt, and type “netsh wlan set hostednetwork mode=allow ssid=HotspotName key=Password“. Replace “HotspotName” with the name that you want for your WiFi hotspot, and replace “Password” with the password you want to set. Hit enter.
- Next, type “netsh wlan start hostednetwork” and hit Enter, and your WiFi hotspot will be broadcast, and other devices will be able to connect to it.
Note: If you want to stop broadcasting your WiFi hotspot, simply use the command “netsh wlan stop hostednetwork”.
7. Hide Folders using Command Prompt
While there is an easy way to hide folders on Windows by using the properties pane of the folder and checking the checkbox that says “Hidden”, the method is not very useful as the folders hidden using this method can easily be viewed if the view options are changed to “Show hidden files and folders”, making it a pretty useless feature. However, using this cmd trick, you can hide your folders in such a way that they will be completely hidden, and Explorer won’t be able to display them at all. Simply follow the steps outlined below:
- Launch Command Prompt, and navigate to the directory where your target folder resides.
- Type “Attrib +h +s +r folder_name“, replacing the “folder_name” with the name of the folder that you want to hide, and press Enter.
- You can now check that the folder is indeed hidden inside Windows Explorer and can not be seen by anyone.
- To unhide the folder, you can use the command “Attrib -h -s -r folder_name“.
Note: Hidden folders can be viewed using the cmd command “dir /AH”.
8. Copy Command Output to Clipboard
If you have ever tried to copy stuff off the Command Prompt, you must have realized that it is exceedingly difficult, not to mention un-intuitive. However, with this simple trick you can copy the output of any command that you want, directly to your computer’s clipboard, and you can then paste it into any text editor that you want.
- Launch Command Prompt and type the command that you want to copy the output for, followed by “| clip“. For example, I’m using the command “ipconfig | clip“. Hit Enter, and you will see that the cmd window shows no output.
- Open a text editor, such as Notepad, and press Control + V, and you can simply paste the output of the command directly inside Notepad.
9. List all Installed Programs
Another cool trick on the Command Prompt involves listing out all of the programs that are installed on your PC. This is particularly helpful if you need to uninstall a program using the Command Prompt. To list out all the installed programs, simply follow the steps outlined below:
- Launch Command Prompt, and type “wmic product get name“.
- Hit Enter, and you will see a list of all the programs that are installed on your PC.
You can also use wmic to uninstall programs, directly from the cmd window. Simply type “wmic product where “name like ‘%NAMEOFAPP%’” call uninstall /nointeractive” and hit Enter. Obviously, replace “NAMEOFAPP” with the name of the app that you want to uninstall from your PC.
10. Open CMD Window Inside a Directory
Let’s face it, the way Windows handles changing directories using the “cd”command is rather weird. Fortunately, there is a simple way to open Command Prompt windows inside a directory so you don’t have to change directories. This is a really handy trick, especially if the folders you want to access are buried deep inside the filesystem. To open a cmd window inside a directory, just follow the steps below:
- Open the directory in Windows Explorer. In the address bar, type “cmd”, and hit Enter.
- A command window will open inside the directory you had opened in Windows Explorer.
Bonus: Autocomplete, Command Cycling and Command History
Apart from the tricks mentioned above, there are a couple more that are worth mentioning. While typing in a command, or a path to some file inside the Command Prompt window, you can press Tab to make Command Prompt autocomplete the command you were typing, or the path you were trying to get at, saving you a lot of time. Pressing the up and down arrow keys can let you cycle through the commands you have used in the current session, and pressing F7 shows up a list of commands that have been used in the current cmd session, making it easy to re-use commands
0 Comments