Posts

Showing posts with the label 18 Command Prompt Tricks that You Should Know

Move to Windows Terminal

Image
  18. Move to Windows Terminal While Command Prompt is surely feature-packed and has its own userbase, but recently Microsoft announced a universal command-line tool for Windows 10 called the Windows Terminal. It runs Command Prompt in a tab layout and I think you are going to love the ability to execute multiple commands from just one window. Along with that, Microsoft has also  merged Linux Terminal and PowerShell on Windows Terminal . Basically, you will have access to all your command-line tools side-by-side in just one window. That sounds exciting, right? So my recommendation would be to  try out the new Windows Terminal  and see if you like the new change.   Improve Windows Experience with CMD Commands These 18 Command Prompt tricks, although utterly basic and easy to implement, are very useful. Using these tricks will definitely allow you to use Windows in a much more effective way and give you access to a host of powerful features that you otherwise woul...

Command Line History

Image
  17. Command Line History Many users are aware of the ‘UP’ navigation key to move forth and back between commands, but once you have executed too many commands then it quickly becomes a tiring exercise. Again, there is the  doskey /history  command to check all your executed commands in a chronological list. However, you can’t select the commands and execute them instantly. You will have to type it out manually and that is again, not the best solution. So if you want to quickly navigate through all your past commands with the ability to execute them immediately,  just press the F7 key . You will get a separate window where you can choose a command and execute it then and there. For me, it’s one of the best Command Prompt tricks. Keep in mind, some users need to press the “Fn” key along with F7 to trigger this action.

Find Information About Commands

Image
16. Find Information About Commands Sometimes we run a command to achieve a certain task, but don’t know much about it. So to learn about specific commands,  add  /?  at the end of any command , and hit enter. Command Prompt will give you a good overview of its usage and syntax. Take an example of SFC from the above point, type  sfc /?  and hit enter. It will tell you the sub-commands with examples, and what are the other commands related to SFC in a lucid language.

SFC /Scannow

Image
  15. SFC /Scannow SFC (System File Checker) is a relatively new addition to Command Prompt to  keep your computer clean and bug-free . It’s a handy command-line tool that will help you fix many system issues. Just run  sfc /scannow  on Command Prompt and it will start verifying the integrity of all protected system files. Further, it will also repair the damaged files wherever possible. So in the future, if you face any issue, make sure to run this command on your Windows computer.

Always Run Command Prompt as Administrator

Image
  14. Always Run Command Prompt as Administrator For users who deal with system files and applications know that they always need elevated privileges to tweak and move around things. But on the other hand, Command Prompt always defaults to the normal account which makes it harder for users to gain Administrator access in the middle of an operation. So to save yourself from such situations, you can  change the behavior permanently  and run Command Prompt with Administrator privilege always. Just search for “cmd” in the Start menu and right-click on it. After that, open its file location. Now copy the Command Prompt shortcut to your desktop. Move to desktop and right-click on the shortcut and open “Properties”. Here, click on Advanced and enable “Run as administrator”. Now onwards, open CMD from the desktop shortcut and it will always start with the Administrator privilege.

Abort Command Execution

Image
  13. Abort Command Execution This is one of the best Command Prompt tricks and everyone should know about it. Say, you want to run a specific command but accidentally execute a different command. In that case, to quickly stop the command execution,  simply press “Ctrl +C” together and the operation will be aborted instantly. How awesome is that?

Hide Sensitive RAR Files in Images

Image
  12. Hide Sensitive RAR Files in Images CMD facilitates a command which lets you concatenate or fuse two files into a single file. While this command comes in handy in merging the contents of basic file types such as TXT or CSV, you can also use the command to  hide a RAR, ZIP, or another archived file inside an image or text file . To achieve this, follow these steps: Open CMD in the directory which contains both files using the 10th item in this list or use the  cd  command to change the directory Use command  copy /b <RAR_filename>.rar + <image_filename>.<extension> <result_filename>.<extension> . In our case, we used  copy /b modules.rar+wave.png test2.png  Note:  make sure you enter the RAR file first followed by the other file, else you won’t be able to recover the RAR package.  The method also works on most common file types including documents and PDFs as long as you add the archive file first. This...

Generate Battery Health Report

Image
  11. Generate Battery Health Report Windows 10 lets you track vital stats related to the battery’s health by maintaining data related to the battery. This includes stats like factory specifications, full battery capacity, and the current capacity and these are updated with each session. You can generate a report about these stats by using a CMD command, which can be executed as follows: Launch Command Prompt as an Administrator or change directory using  cd C:\Windows\System32 Enter command  powercfg/energy The system will take 60 seconds to analyze and then generate a report in form of an HTML documents To access the report, you can find the file stored as  C:\Windows\system32\energy-report.html As you can see in our laptop’s case, the battery’s capacity has dropped to 82% to what it was shipped with. If you want a step by step direction for  generating battery health on Windows 10 , click on the link to read the article.

Open CMD Window Inside a Directory

Image
  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.

List all Installed Programs

Image
  9. List all Installed Programs Another cool trick on the Command Prompt involves listing out all of the  Windows 10 apps and 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.

Copy Command Output to Clipboard

Image
  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.

Hide Folders using Command Prompt

Image
  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, just like you can  hide folders using Terminal on Mac , 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 f...

Create a WiFi Hotspot

Image
  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”.

Watch an ASCII Version of Star Wars: A New Hope

Image
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.

Change the Title of the Command Prompt Window

Image
  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.

Change the Prompt Text in Command Prompt

Image
  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.

Change the Color of the Command Prompt Window

Image
  2. Change the Color of the Command Prompt Window The Command Prompt window can be unexciting with the default black background and light gray text color. But Windows does allow you to  change these colors  to suit yourself and make things a bit more intriguing. Launch CMD  and  Right-click on the title bar Click on “Properties”  and in the separate window that opens,  click on “Colors” Here you can  choose the colors  for the screen text or background as well as for the popup text and background, and also  change the transparency  of the CMD window After you’re done choosing the most fitting colors for your personality,  Click OK Note:  There are a lot of other colors available, and you can check out the entire list by typing  “ help color “ .

Encrypt Files Using Command Prompt

Image
  Best Command Prompt Tricks (2021) Before we get to our list, don’t forget to read our article on  Windows 10 beginner tips  if you are new to Windows 10 or want to learn about its new features. 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 fil...

1st post

Image
  With an interface as attractive as Windows 10’s , it’s easy to forget that the OS comes with a command line interface as well. Well, you might have forgotten the Command Prompt, Microsoft hasn’t, as it brought some really handy improvements to Command Prompt with  Windows 10 . While it’s not as powerful as its Unix counterpart, there are definitely a lot of Command Prompt tricks that can make it a very useful tool to have. A lot of things that the Command Prompt (also known as CMD) can let you do, are not even available in the GUI of the Windows OS, so it’s definitely something you should be using. In this article, we will be sharing with you, 18 Command Prompt tricks that you should definitely know in 2021.