Home
Posts Tagged "Windows Command Prompt Tips"
Apr 3rd, 2015 · Comments Off on Two Ways To Directly Open Folder Specific Command Prompt In Windows 8
Using the command prompt in Windows can often simplify tasks or make them quicker to perform.
In Windows 7 and 8, there are ways to directly make a command prompt windows open that is specific to a folder. What this means is that there is no need to first open a default command prompt and then change directory to a particular folder.
Here are two ways to do to directly open a command prompt with the...
The Windows command prompt has many useful commands that can do useful things.
To make a list of these commands for reference, open the command prompt (Windows key + R) and type :
cmd
Once at the command prompt, simply dump the contents of the “help” command to an external text file by typing :
help >> pathwherethefileistobekept\filename.txt
In this example, file named commandlist.txt...
Jun 28th, 2012 · Comments Off on How To Quickly Find Out DNS Server Information In Windows
Here is a quick way to find out the primary DNS server IP address in use by Windows :
1. Open Windows command prompt and simply type “nslookup”. Type “quit” to exit back to the command prompt.
2. This will display the primary/preferred DNS server being used by Windows.
This can be useful for troubleshooting connectivity issues as well as for reference.
To get the details...
Jun 12th, 2012 · Comments Off on Quickly Configure DNS Server IPs From Windows Command Prompt
The common way to set IP addresses for primary and secondary DNS servers in Windows is through Network and Sharing Center > Change Adapter Settings followed by selecting “Properties” of the specific adapter and then configuring IP settings.
All of the above can be done through just two lines from Windows command prompt. Suppose DNS server IPs to be set are 208.67.220.220 and 208.67.222.222...
Jun 8th, 2012 · Comments Off on Quickly View File Contents Using Windows Command Prompt
It is possible to view contents of any file directly using the Windows command prompt.
To do this :
1. Open Windows command prompt (Windows orb > in search box, type “command prompt” or All Programs > Accessories > Command Prompt).
2. Simply type the following :
type filename.ext
This will display the contents of file specified. (Ensure that the correct file path is specified,...
Feb 4th, 2012 · Comments Off on How To Always Open Windows Command Prompt With Administrator Privileges
It can be annoying to always select the “Run as administrator” option when using the Windows command prompt to perform administrative tasks.
Here is how to always launch the Windows command prompt with administrator privileges :
1. Select All Programs > Accessories > Command Prompt and right click. Then select “Properties”.
2. Click on Shortcut tab and select Advanced.
3....