September 2010
Intermediate to advanced
1704 pages
111h 8m
English
As mentioned earlier, cmdlets are the most basic component of PowerShell. Three of these cmdlets are essential in attempting to learn PowerShell. Even advanced users may still use these cmdlets on a daily basis:
• Get-Command—This cmdlet is essential in discovering what commands can be used and what might be available on the system to help with a certain task.
• Get-Help—When you are looking for additional details, specifically on other cmdlets, this is the main cmdlet to use.
• Get-Member—Absolute beginners don’t typically start using this cmdlet when first initiated into PowerShell, but for advanced users, and easier discovery, this cmdlet is very useful.
Let’s look at each of these cmdlets in more detail.
Get-Command ...