Using MSConfig.exe for administrative tools in Windows 7

Msconfig.exe is a troubleshooting tool that can be useful as a launcher for multiple administrative tools in Windows 7.


You can launch  Msconfig .exe by typing " Msconfig .exe" in Run prompt and hit enter. It will launch the "System Configuration" window. 
On "System Configuration" window select "Tools" tab. As shown in below image you will see list of system tools that you can use. 




Select any tool from the list, and click "Launch" to launch the tool, alternatively you can copy the path of tools from "Select Command" textbox and run the command from command prompt or Run prompt.


Note that you will require administrative privileges to launch the Msconfig utility and some of the tools listed by Msconfig.

No comments:

Post a Comment

Golang: Http POST Request with JSON Body example

Go standard library comes with "net/http" package which has excellent support for HTTP Client and Server.   In order to post JSON ...