May 2007
Beginner
320 pages
8h 23m
English
In this exercise, we explore the use of the Certificate provider in Windows PowerShell.
Start Windows PowerShell.
Obtain a listing of all the properties available for use with the Get-ChildItem cmdlet by piping the results into the Get-Member cmdlet. To filter out only the properties, pipeline the results into a Where-Object cmdlet and specify the membertype to be equal to property. This command is shown here:
Get-ChildItem |Get-Member | Where-Object {$_.membertype -eq "property"}Set your location to the certificate drive. To identify the certificate drive, use the Get-PSDrive cmdlet. Use the Where-Object cmdlet and filter on names that begin with the letter c. This is shown here:
Get-PSDrive ...
Read now
Unlock full access