May 2007
Beginner
320 pages
8h 23m
English
In this exercise, we explore the use of command-line utilities in Windows PowerShell. You will see that it is as easy to use command-line utilities in the Windows PowerShell as in the CMD interpreter; however, by using such commands in the Windows PowerShell, you gain access to new levels of functionality.
Start Windows PowerShell by using Start | Run | Windows PowerShell. The PowerShell prompt will open by default at the root of your Documents And Settings.
Change to the C:\ root directory by typing cd C:\ inside the PowerShell prompt:
Cd c:\
Obtain a listing of all the files in the C:\ root directory by using the dir command:
dir
Create a directory off the C:\ root directory by using the md command:
Md mytest ...
Read now
Unlock full access