home *** CD-ROM | disk | FTP | other *** search
/ Chip 2008 June / CHIP-2008-06.iso / software / PowerShell / PowerShell_Setup_x86.msi / product.cab / default.help_EN.txt < prev    next >
Encoding:
Text File  |  2007-10-29  |  1.9 KB  |  55 lines

  1. TOPIC
  2.     Get-Help
  3.  
  4. SHORT DESCRIPTION
  5.     Displays help about Windows PowerShell cmdlets and concepts. 
  6.  
  7. LONG DESCRIPTION
  8.  
  9. SYNTAX
  10.     get-help {<CmdletName> | <TopicName>}
  11.     help {<CmdletName> | <TopicName>}
  12.     <CmdletName> -?
  13.  
  14.     "Get-help" and "-?" display help on one page. 
  15.     "Help" displays help on multiple pages.
  16.     
  17.     Examples:
  18.       get-help get-process   : Displays help about the get-process cmdlet.
  19.       get-help about_signing : Displays help about the signing concept.
  20.       help where-object      : Displays help about the where-object cmdlet.
  21.       help about_foreach     : Displays help about foreach loops in PowerShell.
  22.       match-string -?        : Displays help about the match-string cmdlet.
  23.  
  24.     You can use wildcard characters in the help commands (not with -?). 
  25.     If multiple help topics match, PowerShell displays a list of matching 
  26.     topics. If only one help topic matches, PowerShell displays the topic. 
  27.  
  28.     Examples:
  29.       get-help *      : Displays all help topics.
  30.       get-help get-*  : Displays topics that begin with get-.
  31.       help *object*   : Displays topics with "object" in the name.       
  32.       get-help about* : Displays all conceptual topics.
  33.  
  34.  
  35.     For information about wildcards, type:
  36.       get-help about_wildcard
  37.  
  38.  
  39. REMARKS
  40.     To learn about PowerShell, read the following help topics:
  41.       get-command  : Displays a list of cmdlets.
  42.       about_object : Explains the use of objects in PowerShell.
  43.       get-member   : Displays the properties of an object.
  44.  
  45.     Conceptual help files are named "about_<topic>", such as: 
  46.       about_regular_expression.
  47.  
  48.     The names of conceptual help files must be entered in English
  49.     even on non-English versions of Windows PowerShell.
  50.     
  51.     The help commands also display the aliases on the system. 
  52.     For information about aliases, type: 
  53.     
  54.       get-help about_alias
  55.