• About Us
  • Privacy & Policy
  • Terms and Conditions
  • Contact
Away Some Article & Blog
  • Home
  • Mobile App Development
  • WordPress
  • Yoga
  • General
  • Lifestyle
  • Health
  • SEO
  • Write For Us
  • Contact us
  • More
    • Business
    • Web and Mobile Development
    • Digital Marketing
    • Career
    • Earn Money Online
    • Education
    • Finance
    • Hair Care Tips
    • Internet
    • Jobs
No Result
View All Result
  • Home
  • Mobile App Development
  • WordPress
  • Yoga
  • General
  • Lifestyle
  • Health
  • SEO
  • Write For Us
  • Contact us
  • More
    • Business
    • Web and Mobile Development
    • Digital Marketing
    • Career
    • Earn Money Online
    • Education
    • Finance
    • Hair Care Tips
    • Internet
    • Jobs
No Result
View All Result
Away Some Article & Blog
No Result
View All Result
Home Tips

Windows 10 run commands you should know

Away Some Article by Away Some Article
December 16, 2020
in Tips
0
Share on FacebookShare on Twitter

Everyone loves a quick and smart way to get things done in Windows. Yes, that is right – the Windows 10 run command can genuinely be a powerful tool. This article shows you the top 10 Run commands for Windows 10 to make your life easier.

ADVERTISEMENT

Folks, take note: the most practical way to call up the Ru n command dialog box is using the keyboard shortcut combination: Windows key + R. You can also access the Run command by simply clicking the Start Menu button and then picking the run command from the menu — but that takes too much time, right?

  1. Open the command prompt – cmd

The Command Prompt has been around since forever and is one of the most useful tools. So. one of the quickest ways to open Command Prompt in Windows is through the Run window. Press the Win + R keys on your keyboard, type cmd, and press Enter on your keyboard.

  1. Open the Registry Editor – regedit

The Registry Editor is the application you can use to view, edit, or even create different database values. To open it, you should type ‘regedit’ in the Windows search box on the taskbar and then press Enter.

  1. Open Local Users and Groups Manager – lusrmgr.msc

Have you wondered if there is a console that allows you to manage all the local users and groups in windows? Local user and group management (lusrmgr.msc) is the right one. It is a standard console, and you can use it in all versions of Windows. This tool can be convenient for IT admins, keeping user passwords, etc.

  1. Access Windows Services – services.msc

We all know that you can run plenty of applications at the same time in Microsoft Windows. Thus, one of the best ways to find out what services are running simultaneously and define whether those services are needed is through the Windows Services configuration screen

  1. The Computer Management app – compmgmt.msc

Computer Management is considered a handy console because it allows you to access specific administrative tools in a convenient one-stop-shop. Depending on your administrator rights, you can view or change organizational attributes and perform general computer management tasks in the Computer Management console.

To open it, you can press the Win + R keys on your keyboard to open Run, and then enter the command compmgmt. msc.

  1. The PowerShell console – powershell

This console is incorporated in Windows scripting language, and if you can program it correctly, it can be very compelling. In other words, PowerShell can replace the command prompt (“cmd”) that we have mentioned earlier, but two of the commands still have their place.

  1. Open the Group Policy Editor – gpedit.msc

This configuration can make it easier to configure Windows settings. Rather than going through Windows Registry, the user can configure different aspects of the Windows operating system through the Group Policy Editor.

  1. Accessing network adapters configuration screen – ncpa.cpl

For those relying on wireless technology for connecting to enterprise networks and the internet, it is sometimes necessary to make adjustments to the wireless network adapters. By using the standard Run command (ncpa.cpl), you can get there instantly, making you save several mouse clicks.

  1. Opening the Windows 10 Device Manager – devmgmt.msc

Devmgmt. msc is a Device Manager built-in for Windows that provides you with a graphical view of the hardware installed on your computer.

The mentioned run command will display the problems and give you the quickest access to settings to solve the situation.

  1. Open the Malicious Software Removal tool – mrt

The Malicious Software Removal tool under normal processes always works automatically in the background as part of the Windows 10 Update. Still, if you want, you can manage it manually by using the “mrt” run command.

  1. Did you know that you can search with a web browser using the Run command (“browser name “? search term””)

If you try to open the run command and then type the name of a web browser installed on your computer (Chrome, Microsoft-Edge, Mozilla Firefox), you will load that browser’s default tab configuration. Nevertheless, if you use a proper search query to that browser, you will see search results from the default search engine. For example:

chrome “? nationalgeography”

Will automatically reveal results relating to the National Geography website. Using the quotes are mandatory.

  1. Searching YouTube (“browser name “youtube.com/results?search_query=SEARCH””)

 

13. System File Checker

If you’re ever concerned that a virus or some other software might have corrupted your core system files, there’s a Windows command that can scan those files and ensure their integrity.

You need to launch CMD as administrator (right click and choose Run as Administrator). Typing SFC /SCANNOW will check the integrity of all protected system files. If a problem is found, the files will be repaired with backed-up system files.

The SFC command also lets you:

  • /VERIFYONLY: Check the integrity but don’t repair the files.
  • /SCANFILE: Scan the integrity of specific files and fix if corrupted.
  • /VERIFYFILE: Verify the integrity of specific files but don’t repair them.
  • /OFFBOOTDIR: Use this to do repairs on an offline boot directory.
  • /OFFWINDIR: Use this to do repairs on an offline Windows directory.
  • /OFFLOGFILE: Specify a path to save a log file with scan results.

The scan can take up to 10 or 15 minutes, so give it time.

  1. System File Checker SCHTASKS: Schedule Tasks
    Windows comes with a wizard for creating scheduled tasks. For example, maybe you have a BAT file stored on C:\temp that you want to run every day at noon.

You’d have to click through the Scheduled Task wizard to configure this. Or you can type a single SCHTASKS command to set it up.

SCHTASKS /Create /SC HOURLY /MO 12 /TR Example /TN c:\temp\File1.bat

The scheduled switch accepts arguments like minute, hourly, daily, and monthly. Then you specify the frequency with the /MO command.

If you typed the command correctly, you’ll see the response, SUCCESS: The scheduled task “Example” has successfully been created.

15. System File Checker SCHTASKS: Schedule Tasks NET USE: Map Drives:
If you want to map a new drive, you could always open File Explorer, right click on This PC, and go through the Map Network Drive wizard. However, using the NET USE command, you can do the same thing with one command string.

For example, if you have a share folder on a computer on your network called \\OTHER-COMPUTER\SHARE\, you can map this as your own Z: drive by typing the command:

Net use Z: “\\OTHER-COMPUTER\SHARE” /persistent:yes

The persistent switch tells your computer that you want this drive remapped every time you log back into your computer.

  1. Turn Off Computer

The SHUTDOWN command is a pretty versatile command that lets you shutdown the computer but control the behavior of that shutdown. It’s commonly used as a scheduled task or part of an IT batch job after patches have been applied to a computer system.

Typing shutdown /i from the command prompt will initiate a shutdown, but it’ll upon a GUI to give the user an option on whether to restart or do a full shutdown. If you don’t want to have any GUI pop up, you can just issue a shutdown /s command.

There is a long list of other parameters you can use to do a log off, hibernate, restart, and more. Just type shutdown without any arguments to see them all.

Other Windows CMD Commands

As you can see, there are some powerful and useful things you can do with the Windows command prompt, if you know the right commands.

Believe it or not, there are even more commands that will give you the ability to do some things you probably never realized just by typing a simple command.

  • BITSADMIN: Initiate upload or download jobs over the network or internet and monitor the current state of those file transfers.
  • COLOR: Change the background color of the command prompt window.
  • COMP: Compare the contents of any two files to see the differences.
  • FIND/FINDSTR: Search for strings inside of any ASCII files.
  • PROMPT: Change the command prompt from C:\> to something else.
  • TITLE: Change the title of the command prompt window.
  • REGEDIT: Edit keys in the Windows registry (use with caution).
  • ROBOCOPY: A powerful file copy utility built right into Windows.

Likewise, to the previous command explained earlier, you may do other website-specific searches—you just have to know how to correctly form the query. For example, YouTube searches look like this: chrome “youtube.com/results?search_query=national+geographic”

This inquiry will display results from the National Geographic YouTube channel. Again, the quotes are required. This sort of query will work with any website if you know the correct syntax.

Note: Using these configuration applications and settings screens require a certain amount of notice. If you make configuration changes, and you are really not sure what they mean – that could negatively impact your Windows PC.  In the Run command, you can access those configurations – but that does not mean you have to make changes randomly.  As Stan Lee once said, “With great power comes great responsibility.

Tags: TipsWindowsWindows 10 run command
Previous Post

How are solar panels going to save a huge pressure on your pocket for 25 years?

Next Post

Cryptme Reviews| Can you rely on this broker?

Away Some Article

Away Some Article

Away Some Article is an experienced writer who has written a plethora of articles, based on technology. Her extensive knowledge about Technology is evident from the articles, as written in this blog. you need submit a guest post?, then contact us

Next Post
Cryptme Reviews| Can you rely on this broker?

Cryptme Reviews| Can you rely on this broker?

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Subscribe To Our Newsletter

  • Trending
  • Comments
  • Latest

Coin master free spin and coin links

February 28, 2021
Latest And Most Exciting Trends In Mobile App Design In 2020

Latest And Most Exciting Trends In Mobile App Design In 2020

August 8, 2020
austin-distel-VwsuhJ9uee4-unsplash

6 Things You Must Know Before Starting an Online Business

August 23, 2020
How to Estimate the Time, Cost, and Deliverables of an ML App Project

How to Estimate the Time, Cost, and Deliverables of an ML App Project

August 1, 2020
Getting Amazing Results on your Carpet Without a Steam Cleaner

Getting Amazing Results on your Carpet Without a Steam Cleaner

2
How to calculate returns on FDs?

How to calculate returns on FDs?

2
Dissertation Writing Help

Most Common Problems Students Face With Writing Dissertations

2
hair-growth-long-hair-stock-today-180622-main-art_698aa92eb44df10ec28944776bdbc015.fit-760w

Learn How to Grow Hair Fast

2

ManCapitalGroup Review: Best Online Brokerage for Online Trading In 2021 (www.mancapitalgroup.com)

February 28, 2021
InfinityCapitalG Review 2021– Is this platform worth the hype? (www.infinitycapitalg.com)

InfinityCapitalG Review 2021– Is this platform worth the hype? (www.infinitycapitalg.com)

February 28, 2021
London-Gates 2021 Review: Brand and Functionality (www.london-gates.com)

London-Gates 2021 Review: Brand and Functionality (www.london-gates.com)

February 28, 2021
MyTradingCollege | 3 Best Courses On Trading To Get Now!

MyTradingCollege | 3 Best Courses On Trading To Get Now!

February 28, 2021

Recent Blog

ManCapitalGroup Review: Best Online Brokerage for Online Trading In 2021 (www.mancapitalgroup.com)

February 28, 2021
InfinityCapitalG Review 2021– Is this platform worth the hype? (www.infinitycapitalg.com)

InfinityCapitalG Review 2021– Is this platform worth the hype? (www.infinitycapitalg.com)

February 28, 2021
London-Gates 2021 Review: Brand and Functionality (www.london-gates.com)

London-Gates 2021 Review: Brand and Functionality (www.london-gates.com)

February 28, 2021
MyTradingCollege | 3 Best Courses On Trading To Get Now!

MyTradingCollege | 3 Best Courses On Trading To Get Now!

February 28, 2021
ADVERTISEMENT
Away Some Article & Blog

Submit A Guest post | Away Some Article & Blog

Follow Us

Browse by Category

  • Accounting
  • Architecture
  • Automobile
  • Automotive
  • Beauty
  • Best Exercises
  • Biography
  • Bitcoin
  • Blockchain
  • Business
  • Career
  • CBD
  • Computer
  • Content Management System
  • Corona virus
  • COVID-19
  • Dentist
  • Designing
  • Digital Marketing
  • Digital Marketing Trends 2020
  • Drupal 8
  • Drupal 9
  • Earn Money Online
  • eCommerce Businesses
  • Education
  • Electronics
  • Entertainment
  • Face
  • Facebook
  • Fashion
  • Finance
  • FinTech apps
  • Fitness
  • Food
  • Furniture
  • Gadgets
  • Games
  • Gardening
  • General
  • Gift
  • Google Flutter
  • Graphic Design Services
  • Graphics Cards
  • Guest Post
  • Guest Posting
  • Gym
  • Hair Care Tips
  • Health
  • Holiday Accommodation
  • Home improvement
  • Household
  • Interior Design
  • Internet
  • Jewelry
  • JioMart News
  • Jobs
  • Kitchen
  • Laravel Development
  • Law
  • Legal
  • Lifestyle
  • Loan
  • Magento 2
  • Magento 2 App Development
  • Marketing
  • Medical
  • Medical Store
  • Men's Health
  • Mental Health
  • Mobile & Web Development
  • Mobile App Development
  • Mobile Recharge
  • Movies
  • Moving and relocation
  • MVP Development
  • News
  • Office Furniture
  • Online Business
  • Other
  • Park
  • Party
  • Photography
  • Psychologist
  • RAKHI
  • Real Estate
  • Recruitment Services
  • Restaurant
  • Restoration Company
  • Rose
  • SEO
  • Skin
  • Smartphones
  • Social Media
  • Social Media Marketing
  • Software
  • Sport
  • Teaching
  • Technology
  • Telecom
  • Tiles
  • Tips
  • Travel
  • Traveling
  • Uncategorized
  • Use Integrity Scanning
  • Villa
  • VoIP
  • Web and Mobile Development
  • Web Designing
  • Web Development Services
  • Website development
  • Women
  • Wordpress
  • Yoga
  • Yoga Therapy

Recent Article

ManCapitalGroup Review: Best Online Brokerage for Online Trading In 2021 (www.mancapitalgroup.com)

February 28, 2021
InfinityCapitalG Review 2021– Is this platform worth the hype? (www.infinitycapitalg.com)

InfinityCapitalG Review 2021– Is this platform worth the hype? (www.infinitycapitalg.com)

February 28, 2021
London-Gates 2021 Review: Brand and Functionality (www.london-gates.com)

London-Gates 2021 Review: Brand and Functionality (www.london-gates.com)

February 28, 2021
MyTradingCollege | 3 Best Courses On Trading To Get Now!

MyTradingCollege | 3 Best Courses On Trading To Get Now!

February 28, 2021
The Investment Center Review 2021 – How I found and started trading with this platform? (www.investmentcenter.com)

The Investment Center Review 2021 – How I found and started trading with this platform? (www.investmentcenter.com)

February 28, 2021
Bitteks CFD Platform Review – Charting, Analysis, And Live Trading All In One (www.bitteks.com)

Bitteks CFD Platform Review – Charting, Analysis, And Live Trading All In One (www.bitteks.com)

February 27, 2021
13 Unique Features Every E-commerce Mobile App Must Have

13 Unique Features Every E-commerce Mobile App Must Have

February 26, 2021
  • About Us
  • Privacy & Policy
  • Terms and Conditions
  • Contact

Copyright © 2020 Away Some Article. All rights reserved.

No Result
View All Result
  • Home
  • Magento 2 App Development
  • WordPress
  • SEO
  • Yoga
  • Lifestyle
  • Health
  • Write For Us
  • Contact us

Copyright © 2020 Away Some Article. All rights reserved.