Ezine 152 - Three Key PowerShell CommandsIntroduction to Three Key PowerShell CommandsHere are three simple, yet key commands, which are designed to get you started with PowerShell. As you study, these cmdlets keep in mind the golden rule, verb-noun, for example, get-PSProvider. This Week's TopicsPre-requisitesYou have downloaded PowerShell and .Net Framework from Microsoft's site. Look out for a specific version for XP, Vista, or Windows Server 2003. 1. Get-Command
Let us begin by testing get-Command. What this instruction does is list all of PowerShell's noun-verb pairs, which are also referred to as built-in cmdlets. Assuming that you have opened a
PowerShell session, then you should see a prompt like: PS > Now type just one hyphenated phrase: To filter the list, employ the famous star * wildcard; here are three examples:
Let us experiment with a variation of this wildcard theme which
displays only cmdlets beginning with the verb 'set': It is possible to tweak the display of your output columns with 'ft' (Format-Table). My hidden agenda here is to give you
practice with PowerShell's Pipe symbol (|), try: At the moment we are just 'playing', testing, or feeling our way, thus do feel free to experiment with your own variations of my suggestions. Once you have seen the long list of all possible commands, chose one example for further research, for example: Get-PSProvider (Or plain: PSProvider) This is what happened when I typed just: get-Psprovider <carriage return> Name Capabilities Drives Challenge: try Another Command PSSnapin What PSSnapin does is reveal the sources for the built-in cmdlets: Get-PSSnapin Note how every PowerShell noun is singular, PSSnapin, Command, PSProvider. Also note how a Pipe (|) followed by ft means format the output as a table, as opposed to format the results as a list (fl). Any words which follow 'ft' are names of the fields, each separated by a comma. At the end of the above command is the switch -autosize, this extra parameter tells PowerShell to close-up the width of the columns. When ever you use format-table, or ft, try appending -autosize, or the shorter version: -auto. In the example below, I have used ft to omit the Description field and just displayed the name: Name If you are looking for handy network utilities, try some of the free downloads at Tools4Ever 2. Get-HelpAvoid arrogance, put aside pride, and call for PowerShell's built-in help. We all have to learn somewhere and only you know what you type in the privacy of your PowerShell command line. Perhaps what puts us off trying built-in help is a bad experience with the stilted help of an old DOS system. Dare I suggest that experience with internet search techniques makes us more willing to try a modern application's own help? PowerShell's help has some interesting switches, such as: -full and -example. Incidentally, -exampleS also works, a rare case of a plural PowerShell noun. Get-help get-wmiobject Note: Get-help does not require the pipe symbol.
In fact, the pipe (|) only gets in the way of get-help; PowerShell does its best to interpret: PowerShell's Hidden 'About' filesIn the PowerShell folder referenced by: $PSHome **, you will find a whole family of About help files. In these files, which all begin with About_, you will discover information on topics such as Foreach, If and ElseIf. My point is that you cannot get assistance by typing: get-help foreach, yet you can find a wealth of information if you read the file at: $PSHome\about_foreach.help.txt. Here is a cmdlet that reveals the names of these About files: # List all the About help files Result: A list of 55 files. (The precise number varies with each version of PowerShell). ** On my system $PSHome translated to: C:\WINDOWS\system32\WindowsPowerShell\v1.0 Guy Recommends:
The Free IP Address Tracker (IPAT)
|
|||||
Custom Search
|
Guy Recommends: WMI Monitor and It's Free!
|
|
Home Copyright © 1999-2012 Computer Performance LTD All rights reserved Please report a broken link, or an error. | |