Command Prompt is a greatest of all Windows tools and lets you sort everything within. To speed up the internet connectivity using cmd command. We have listed some tweaks above in this article like DNS resolver cache, Wi-Fi connectivity etc. Likewise, to speed up internet you can use the command line below:
Type in: netsh int tcp
Command Prompt also gives you an accessibility to check for any problems in the files stored on your Windows PC. For instance, you can check for any missing or corrupted files using this command and also fix them. To scan system using cmd commands:
Type in: sfc /scannow
Do you know, you can create a WiFi hotspot directly from your Command Line. To execute this, you need to first make changes to some settings like-
Type in: netsh wlan set hostednetwork mode=allow ssid=Yourhotspotname key=yourpassword
Once enabled, enter netsh wlan start hostednetwork to start the WiFi hotspot. To stop it, type in netsh wlan stop hostednetwork“.
Read: Tricks To Manage Wireless Networks Using Command Prompt
When you launch Command Prompt, you see the title bar reads Command Prompt or Administrator Command Prompt. If you want, you can change the name of the cmd window you open. This makes it convenient for you to work on multiple command line windows at a time. You can name each one of them separately and manage them accordingly. Yes, you can change the Command Prompt window name using amazing command line tricks. To change the title:
You know, you can change the color of the Command Prompt window to make it more exciting and engaging. Shift from its black color and give it the color of your choice. Wondering how? Windows allows you to customize cmd window by changing its colors as per your requirements and make things more intriguing. To change the color:
Very often it happens that you need to save something out of a command and you usually follow the tactic of copy and paste. However, you can simply do it by entering a simple command. The command’s output can be sent to the Windows clipboard directly. Here’s how to save the output to clipboard:
Type: ipconfig | clip
The function keys on your keyboard can do a lot more in the Command Prompt. It is one of the best kept and lesser known secrets about this tool. Here’s what these keys can do:
Command Prompt commands can be used to see all the drivers installed on your Windows PC. All you need to do is run the ‘driverquery’ command line and you‘re done. Once you type in the command and press Enter you will see a list of active drivers with name, type and other information.
Type: driverquery
Do you want to abort any command you have recently made? Yes, any command can be stopped in its tracks using Ctrl+C. This is helpful when you have initiated a command line and you want to stop it. Remember, Ctrl+C keys are not a magic wand that can undo all the things, even the ones that are undoable. For instance, like Format command. But, abort command us an excellent Command line if you want to stop any command there and then. Press Ctrl+C to abort command.
Do you want to run one after other commands? If it is, you can add your required commands to your collection of cmd hacks. What you need to do is, you have to mention ‘&&’ between each command and save your time. For instance, you want to run ‘ipconfig’ and ‘paint’ together using command prompt, you’ll use the following command:
Type: ipconfig && mspaint