Power ShellmEnE

1. {
(1)PowerShellXNvg̊gq *.ps1
(2)*.ps1̎s
   PS > Set-ExecutionPolicy RemoteSigned
   (PowerShellǗ҃[hŎs邱)
(3)pCv̓eLXgł͂ȂAIuWFNgnɂȂ

s|V[ 	Tv
---------------------------------------------------
Restricted      ׂẴXNvgss
AllSigned       ׂẴXNvgɏؖv
RemoteSigned    C^[lbgoRŃ_E[hXNvĝݏؖv
Unrestricted    ׂẴXNvgs(C^[lbgoRŃ_E[hR[h͎smF݂̂j

(3)\ϐ
  $_ :ipCvCoRœnꂽIuWFNgj

@֐ɓnꂽOȂ͎ϐ$Argsizjɓo^̂ŁA
  Ƃ́u$Args[0]v̂悤Ɏw肷邱ƂŁA^ꂽlɃANZX
  邱ƂłB
  ȂJavaScriptȂǂ̌ɊẮAϐ$Argsɂ͊֐
  nꂽׂĂ̈liOt^OȂ̑oj܂܂
  悤Ɏv邩ȂAPowerShellł͂܂ŖOȂ
  ܂܂ȂB

(4)XR[v
   XNvg̊֐XNvgO痘pꍇ
   uglobal:vtBXNvgsPSvvg
   ֐𗘗płB
   bash. <script>ŝƓ

PS> cat tri.ps1
function global:Triangle([double] $width=1, [double] $height=1) {
  return $width * $height / 2
}

PS> ./tri.ps1
PS> Triangle 6 2  (R[ł)


(5)vt@C
 (a)S[Uʃvt@C
uC:\WINDOWS\SYSTEM32\windowspowershell\v1.0vtH_zprofile.ps1
 ƂOŃXNvgEt@CzuĂB
 ɂPowerShell̋NProfile.ps1sA
iႦ΁j֐GCAX̓o^sƂłi*jB

 * ȂAprofile.ps1̓eׂ͂ăO[oEXR[vœo^B
 ]āAIɃXR[vCqɂXR[v錾sKv͂ȂB

 (b)[UŗLvt@C
@XP  uC:\Documents and Settings\[U[\My Documents\WindowsPowerShellv
    tH_profile.ps1zu
@Win7uC:\Users\[U[\Documents\WindowsPowerShellv
    tH_Microsoft.PowerShell_profile.ps1zu
  ꏊ
    $ProfileŊmF

(6)ϐ\
   PS> env
   #PS> Get-ChildItem env:
   PS> $env.Path
   PS> $env:Path.split(";")

   ϐݒ
   PS> $env:Path =  "C:\usr\bin;C:\users\user\bin"
   PS> $env:Path += "C:\usr\bin"
   PS> $env:Path =  $env:Path + ";C:\users\user\bin"

{
2. edl
(1)̎󂯎
 (a)ftHg
    $Args[0] ... 1
    $Args[1] ... 2

    ̐
    $Args.Length

 (b)Param([string] $name)
    Write-Output "ɂ́A $name I"


    PS > ./Hello.ps1 "Rc"
    ɂ́A Rc I
    PS > ./Hello.ps1 -name "Rc"
    ɂ́A Rc I

(2)Rg
#


(3)ϐ
   $var
   ${var}

(4)f[^^
   f[^^͂Ȃ邱Ƃł
   [System.Int32] $x = 10

^ɂ̓GCAXpӂĂB
GCAX 	.NET Frameworǩ^
byte 		System.Byte
int 		System.Int32
long 		System.Int64
singleAfloat 	System.Single
double 		System.Double
decimal 	System.Decimal
char 		System.Char
bool 		System.Boolean
string 		System.String
array 		System.Array
xml 		System.Xml.XmlDocument
type 		System.Type
PowerShelľ^GCAX

(5)Wo
PS > Write-Output "̖O $name łB"
̖O Rc łB
PS > Write-Output '̖O $name łB'
̖O $name łB

#diřʂAfBNgƃt@Cbŋ؂ĕ\
dir | ForEach-Object{ '{0}  | {1}' -f $_.directory , $_.name }

tH[}bgo
{0}	    ̗vf\	'{0} {1}' -f 10, 20	10 20
{0:x}	l16iŕ\(xȂo͂A啶Ȃo͂啶ƂȂ)	
        '0x{0:x}' -f 10	0xa
{0:dn}	10iŕ\A0ŃpfBO	'{0:d5}' -f 4	00004
{0:p}	lp[Zgŕ\	'{0:p}' -f 0.543	54.30%
{0:c}	lʉ݂ŕ\	'{0:c}' -f 100	\100
{0,n}	tB[hnŕ\AEɂ	'|{0,5}|' -f 20	|@@@20|
{0,-n}	tB[hnŕ\Aɂ	'|{0,-5}|' -f 20|20@@@|

{0:hh}	DateTimel玞Ԃƕƕb\ '{0:hh}:{0:mm}:{0:ss}' -f (get-date)08:24:12
{0:mm}
{0:ss}

(5)-2 W
PS C:\> $user = read-host EnterUserName
EnterUserName: newpops

PS C:\> $password = read-host EnterPassword -AsSecureString
EnterPassword: *******        <= *ŉB
PS C:\> $password
System.Security.SecureString  <= \łȂ



(6)GXP[vV[PX
GXP[v\ł͂Ȃ`(obNNH[g)

GXP[vEV[PX 	Tv
`b 			obNXy[X
`n 			s
`r 			LbWE^[
`t 			^u

(7)qAhLg
PS > $body=@"
>> ɂ́AWINGS̎RcłB
>> PowerShell̐EꏏɊy݂܂傤B
>> "@
>>   ccŁmEnternL[݂̂͂ďI

PS > Write-Output $body
ɂ́AWINGS̎RcłB
PowerShell̐EꏏɊy݂܂傤B

u@"s`s"@vi܂́u@'s`s'@vj

(8)zƘAzz
z
@$a = vf, vf, vf, ...
@܂́A
  $a = @(vf, vf, vf, ...)

@Q
  $ϐ[CfbNXԍ]
  $a[0], $a[1], ...

  z̃TCY
  $ϐ.Length
  $a.Length

  $a[3..6].Length
  4
  $a[0,2,4,6,8].Length
  5


Azz
  @{L[=l; L[=l; ...}
  Q
@$ϐ["L["]
  ܂́A
@$ϐ.L[


PS > $x = 1,2,3
PS > Write-Output $x[0]
1  cc0Ԗڂ̗vfo

PS > $z = @{FirstName="Yoshihiro"; LastName="Yamada"; Birth="Shizuoka"}
PS > Write-Output $z["FirstName"]
Yoshihiro  ccFirstNamevfo
PS > Write-Output $z.FirstName
Yoshihiro  ccFirstNamevfo



(9)
$x = 100
if ($x -ge 80) {
  Write-Output 'ϐ$x80ȏłB'
} elseif ($x -ge 40) {
  Write-Output 'ϐ$x40ȏ80łB'
} else {
  Write-Output 'ϐ$x40łB'
}

rZq
Zq   
-eq      
-ne      Ȃ
-gt      傫
-ge      ȏ
-lt      菬
-le      ȉ
-like    ChJ[hɂr
-notlike ChJ[hɂr
-match   K\ɂr
-nomatch K\ɂr

L͑啶ƏʂȂ
(LZq̑Oɕit-ieq
 Ƃꍇ啶Əʂ܂j
啶Əʂꍇ͏LZq
Oɕct -ceq ̂悤ɂB


(10)switch
$x = 1
switch($x){
  1 {Write-Output 'ϐ$x1łB'}
  1 {Write-Output 'ϐ$x1łB2'}
  2 {Write-Output 'ϐ$x2łB'}
  3 {Write-Output 'ϐ$x3łB'}
  default {Write-Output 'ϐ$x1A2A3ł͂܂B'}
}

}b`Ȃꍇ
switch($x){
  1 {
      Write-Output 'ϐ$x1łB'
      break
    }
  1 {
      Write-Output 'ϐ$x1łBi2j'
      break
    }
  3 {
      Write-Output 'ϐ$x3łB'
      break
    }
  default {Write-Output 'ϐ$x1A2A3ł͂܂B'}
}

$x = "XYZ"
switch -wildcard ($x){
  "X*"  {Write-Output 'ϐ$x"X"Ŏn܂܂B'}
  "X_"  {Write-Output 'ϐ$x"X"{1łB'}
  "XA*" {Write-Output 'ϐ$x"XA"Ŏn܂܂B'}
}

(11)for[v
$ary=@(100,120,300)
for($i=0; $i -lt 3; $i++){
  $sum += $ary[$i];
}
Write-Output $sum

(12)foreachn[v
$ary=@(100,120,300)
foreach($dat in $ary){
  $sum += $dat;
}
Write-Output $sum

@(100,120,300) | ForEach-Object {$sum += $_}
Write-Output $sum


(13)while[v
$i=0;
$sum=0;
$ary=@(100,120,300)
while($i -lt 3){@@ccϐ$i3̏ꍇ̊ԁA[vp
  $sum += $ary[$i];
  $i++;
}
Write-Output $sum

$i=0;
$sum=0;
$ary=@(100,120,300)
do{
  $sum += $ary[$i];
  $i++;
}while($i -lt 3)@@ccϐ$i3̏ꍇ̊ԁA[vp
Write-Output $sum

(14)֐
function Triangle([double] $width=1, [double] $height=1) {
  return $width * $height / 2
}

^`FbNsvȂ^͏ȂĂ悢B
ȉ̌`ň󂯎邱ƂłB

function Triangle {
  return $Args[0] * $Args[1] / 2
}


<Ăяo>
Triangle 2 6@@# 2 6 (ʐ) 6 ƕ\@

Triangle -width 2 -height 6@# ƂĂяołB

function ֐ [([=ftHgl],...)] {
  ֐̖{
  [return ߂l]
}

(15)t擾
  PS> get-date 
  PS> get-date -UFormat "%Y/%m/%d %H:%M:%S"
  PS> get-date -Format "yyyy/MM/dd hh:mm:ss.fff"

  ~b擾
  $cur = (get-date -Format "hh,mm,ss,fff").split(",")
  $start = (([Int32]$cur[0]) * 3600 + ([Int32]$cur[1]) * 60 + ([Int32]$cur[2])*1000) + [Int32]$cur[3] 

  ()[Int32]ŃLXgȂƕ񂪕񗅗񂳂̂Œ


{
3. R}h
(1)Help
   Get-Help Format-List
   Get-Help Format-List -full
   Get-Help Format-List -examples

(2)R}hbg̈ꗗ
   Get-Command | fl

(3)Alias
   % : ForEach-Object   (xargs?)
   ? : Where-Object     (grep)

(3)t@Cꗗ̃t@Cgrep
   PS> ls | % { echo $_.BaseName } | ? { $_ -match "aba" } 

(4)Get-ChildItem / gci / ls

(5)grep (Select-String)

   grep  wc -l
   (ipconfig | Select-String IPv4).Length

   ls | Select-String <key>          ... ls | xargs grep <key>
   cat x.txt |Select-String <key>    ... grep <key> x.txt


(6)Format-List / fl
   evpeB\B ... ̑S
   get-service | fl
   c:\PS> $a = gci $pshome\*.ps1xml
   get-process | fl
   get-process wdf | fl -property *

(7)T[rXꗗ
   get-service
   t\
   get-service | fl

(8)ls |grep xxx
   PS> ls | % { echo $_.BaseName } | ? { $_ -match "xxx" } 

{
4. .NET FrameworkNXECu̗p@
.NET Framework񋟂NXCX^XāA
XNvg̒ŗp邱Ƃ\B
ɂāAXNvgVisual BasicC#
Ȃ̑sƂł


(1)dq[
  # dq[̃bZ[W쐬
$mail = New-Object System.Net.Mail.MailMessage("Đ@example.jp","M@example.co.jp")@cci1j
$mail.Subject = "PowerShellXNveBO"  # 
$mail.Body = @"
ɂ́APowerShellI
PowerShellŃXNveBOɒ킵܂傤B
"@    # {
      # ^{̕GR[fBO
$mail.SubjectEncoding = [System.Text.Encoding]::GetEncoding("ISO-2022-JP")
$mail.BodyEncoding = [System.Text.Encoding]::GetEncoding("ISO-2022-JP")
  # w肳ꂽSMTPT[oœdq[𑗐M
$smtp = New-Object System.Net.Mail.SmtpClient("smtp.examples.ne.jp")
$smtp.Send($mail)

(1)IuWFNg𐶐New-ObjectR}hbg
  (a)
    IuWFNgϐ = New-Object NX̊SC(,...)

    New-Object [-typeName] <string> [[-argumentList] <object[]>]

  (b)p
    IuWFNgϐ.vpeB [= l]
    IuWFNgϐ.\bh(,...)

  (c)1
     NX͊SCŎw肷邱ƁBSystem͏ȗ
 
     $mail = New-Object System.Net.Mail.MailMessage(`)
     
     $mail = New-Object Net.Mail.MailMessage(`)

  (d)2
     ݂Ȃꍇ̓JbRȗ邱
	 
  (e)ÓIoɃANZXu::vZq
     [System.Text.Encoding]::GetEncoding("ISO-2022-JP")

     

{
10. Alias

CommandType     Name              Definition
-----------     ----              ----------
Alias           %                 ForEach-Object
Alias           ?                 Where-Object
Alias           ac                Add-Content
Alias           asnp              Add-PSSnapIn
Alias           cat               Get-Content
Alias           cd                Set-Location
Alias           chdir             Set-Location
Alias           clc               Clear-Content
Alias           clear             Clear-Host
Alias           clhy              Clear-History
Alias           cli               Clear-Item
Alias           clp               Clear-ItemProperty
Alias           cls               Clear-Host
Alias           clv               Clear-Variable
Alias           compare           Compare-Object
Alias           copy              Copy-Item
Alias           cp                Copy-Item
Alias           cpi               Copy-Item
Alias           cpp               Copy-ItemProperty
Alias           cvpa              Convert-Path
Alias           dbp               Disable-PSBreakpoint
Alias           del               Remove-Item
Alias           diff              Compare-Object
Alias           dir               Get-ChildItem
Alias           ebp               Enable-PSBreakpoint
Alias           echo              Write-Output
Alias           epal              Export-Alias
Alias           epcsv             Export-Csv
Alias           epsn              Export-PSSession
Alias           erase             Remove-Item
Alias           etsn              Enter-PSSession
Alias           exsn              Exit-PSSession
Alias           fc                Format-Custom
Alias           fl                Format-List
Alias           foreach           ForEach-Object
Alias           ft                Format-Table
Alias           fw                Format-Wide
Alias           gal               Get-Alias
Alias           gbp               Get-PSBreakpoint
Alias           gc                Get-Content
Alias           gci               Get-ChildItem
Alias           gcm               Get-Command
Alias           gcs               Get-PSCallStack
Alias           gdr               Get-PSDrive
Alias           ghy               Get-History
Alias           gi                Get-Item
Alias           gjb               Get-Job
Alias           gl                Get-Location
Alias           gm                Get-Member
Alias           gmo               Get-Module
Alias           gp                Get-ItemProperty
Alias           gps               Get-Process
Alias           group             Group-Object
Alias           gsn               Get-PSSession
Alias           gsnp              Get-PSSnapIn
Alias           gsv               Get-Service
Alias           gu                Get-Unique
Alias           gv                Get-Variable
Alias           gwmi              Get-WmiObject
Alias           h                 Get-History
Alias           history           Get-History
Alias           icm               Invoke-Command
Alias           iex               Invoke-Expression
Alias           ihy               Invoke-History
Alias           ii                Invoke-Item
Alias           ipal              Import-Alias
Alias           ipcsv             Import-Csv
Alias           ipmo              Import-Module
Alias           ipsn              Import-PSSession
Alias           ise               powershell_ise.exe
Alias           iwmi              Invoke-WMIMethod
Alias           kill              Stop-Process
Alias           lp                Out-Printer
Alias           ls                Get-ChildItem
Alias           man               help
Alias           md                mkdir
Alias           measure           Measure-Object
Alias           mi                Move-Item
Alias           mount             New-PSDrive
Alias           move              Move-Item
Alias           mp                Move-ItemProperty
Alias           mv                Move-Item
Alias           nal               New-Alias
Alias           ndr               New-PSDrive
Alias           ni                New-Item
Alias           nmo               New-Module
Alias           nsn               New-PSSession
Alias           nv                New-Variable
Alias           ogv               Out-GridView
Alias           oh                Out-Host
Alias           popd              Pop-Location
Alias           ps                Get-Process
Alias           pushd             Push-Location
Alias           pwd               Get-Location
Alias           r                 Invoke-History
Alias           rbp               Remove-PSBreakpoint
Alias           rcjb              Receive-Job
Alias           rd                Remove-Item
Alias           rdr               Remove-PSDrive
Alias           ren               Rename-Item
Alias           ri                Remove-Item
Alias           rjb               Remove-Job
Alias           rm                Remove-Item
Alias           rmdir             Remove-Item
Alias           rmo               Remove-Module
Alias           rni               Rename-Item
Alias           rnp               Rename-ItemProperty
Alias           rp                Remove-ItemProperty
Alias           rsn               Remove-PSSession
Alias           rsnp              Remove-PSSnapin
Alias           rv                Remove-Variable
Alias           rvpa              Resolve-Path
Alias           rwmi              Remove-WMIObject
Alias           sajb              Start-Job
Alias           sal               Set-Alias
Alias           saps              Start-Process
Alias           sasv              Start-Service
Alias           sbp               Set-PSBreakpoint
Alias           sc                Set-Content
Alias           select            Select-Object
Alias           set               Set-Variable
Alias           si                Set-Item
Alias           sl                Set-Location
Alias           sleep             Start-Sleep
Alias           sort              Sort-Object
Alias           sp                Set-ItemProperty
Alias           spjb              Stop-Job
Alias           spps              Stop-Process
Alias           spsv              Stop-Service
Alias           start             Start-Process
Alias           sv                Set-Variable
Alias           swmi              Set-WMIInstance
Alias           tee               Tee-Object
Alias           type              Get-Content
Alias           where             Where-Object
Alias           wjb               Wait-Job
Alias           write             Write-Output

{
11. R}hꗗ (Get-Command)


Name              : %
CommandType       : Alias
Definition        : ForEach-Object
ReferencedCommand : ForEach-Object
ResolvedCommand   : ForEach-Object

Name              : ?
CommandType       : Alias
Definition        : Where-Object
ReferencedCommand : Where-Object
ResolvedCommand   : Where-Object


ScriptBlock         : Set-Location A:
CmdletBinding       : False
DefaultParameterSet : 
Definition          : Set-Location A:
Options             : None
Description         : 
OutputType          : {}
Name                : A:
CommandType         : Function
Visibility          : Public
ModuleName          : 
Module              : 
Parameters          : {}
ParameterSets       : {}
HelpUri             : 

Name              : ac
CommandType       : Alias
Definition        : Add-Content
ReferencedCommand : Add-Content
ResolvedCommand   : Add-Content


Verb                : Add
Noun                : Computer
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.AddComputerCommand
Definition          : Add-Computer [-DomainName] <String> [-Credential <PSCrede
                      ntial>] [-OUPath <String>] [-PassThru] [-Server <String>]
                       [-UnSecure] [-Verbose] [-Debug] [-ErrorAction <ActionPre
                      ference>] [-WarningAction <ActionPreference>] [-ErrorVari
                      able <String>] [-WarningVariable <String>] [-OutVariable 
                      <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm]
                      Add-Computer [-WorkGroupName] <String> [-Credential <PSCr
                      edential>] [-PassThru] [-Verbose] [-Debug] [-ErrorAction 
                      <ActionPreference>] [-WarningAction <ActionPreference>] [
                      -ErrorVariable <String>] [-WarningVariable <String>] [-Ou
                      tVariable <String>] [-OutBuffer <Int32>] [-WhatIf] [-Conf
                      irm]
                      
DefaultParameterSet : Domain
OutputType          : {}
Name                : Add-Computer
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[Credential, System.Management.Automation.ParameterMetad
                      ata], [DomainName, System.Management.Automation.Parameter
                      Metadata], [OUPath, System.Management.Automation.Paramete
                      rMetadata], [PassThru, System.Management.Automation.Param
                      eterMetadata]...}
ParameterSets       : {[-DomainName] <String> [-Credential <PSCredential>] [-OU
                      Path <String>] [-PassThru] [-Server <String>] [-UnSecure]
                       [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-
                      WarningAction <ActionPreference>] [-ErrorVariable <String
                      >] [-WarningVariable <String>] [-OutVariable <String>] [-
                      OutBuffer <Int32>] [-WhatIf] [-Confirm], [-WorkGroupName]
                       <String> [-Credential <PSCredential>] [-PassThru] [-Verb
                      ose] [-Debug] [-ErrorAction <ActionPreference>] [-Warning
                      Action <ActionPreference>] [-ErrorVariable <String>] [-Wa
                      rningVariable <String>] [-OutVariable <String>] [-OutBuff
                      er <Int32>] [-WhatIf] [-Confirm]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=135194
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : Add
Noun                : Content
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.AddContentCommand
Definition          : Add-Content [-Path] <String[]> [-Value] <Object[]> [-Pass
                      Thru] [-Filter <String>] [-Include <String[]>] [-Exclude 
                      <String[]>] [-Force] [-Credential <PSCredential>] [-Verbo
                      se] [-Debug] [-ErrorAction <ActionPreference>] [-WarningA
                      ction <ActionPreference>] [-ErrorVariable <String>] [-War
                      ningVariable <String>] [-OutVariable <String>] [-OutBuffe
                      r <Int32>] [-WhatIf] [-Confirm] [-UseTransaction] [-Encod
                      ing <FileSystemCmdletProviderEncoding>]
                      Add-Content [-LiteralPath] <String[]> [-Value] <Object[]>
                       [-PassThru] [-Filter <String>] [-Include <String[]>] [-E
                      xclude <String[]>] [-Force] [-Credential <PSCredential>] 
                      [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-W
                      arningAction <ActionPreference>] [-ErrorVariable <String>
                      ] [-WarningVariable <String>] [-OutVariable <String>] [-O
                      utBuffer <Int32>] [-WhatIf] [-Confirm] [-UseTransaction] 
                      [-Encoding <FileSystemCmdletProviderEncoding>]
                      
DefaultParameterSet : Path
OutputType          : {}
Name                : Add-Content
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[Value, System.Management.Automation.ParameterMetadata],
                       [PassThru, System.Management.Automation.ParameterMetadat
                      a], [Path, System.Management.Automation.ParameterMetadata
                      ], [LiteralPath, System.Management.Automation.ParameterMe
                      tadata]...}
ParameterSets       : {[-Path] <String[]> [-Value] <Object[]> [-PassThru] [-Fil
                      ter <String>] [-Include <String[]>] [-Exclude <String[]>]
                       [-Force] [-Credential <PSCredential>] [-Verbose] [-Debug
                      ] [-ErrorAction <ActionPreference>] [-WarningAction <Acti
                      onPreference>] [-ErrorVariable <String>] [-WarningVariabl
                      e <String>] [-OutVariable <String>] [-OutBuffer <Int32>] 
                      [-WhatIf] [-Confirm] [-UseTransaction] [-Encoding <FileSy
                      stemCmdletProviderEncoding>], [-LiteralPath] <String[]> [
                      -Value] <Object[]> [-PassThru] [-Filter <String>] [-Inclu
                      de <String[]>] [-Exclude <String[]>] [-Force] [-Credentia
                      l <PSCredential>] [-Verbose] [-Debug] [-ErrorAction <Acti
                      onPreference>] [-WarningAction <ActionPreference>] [-Erro
                      rVariable <String>] [-WarningVariable <String>] [-OutVari
                      able <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm] 
                      [-UseTransaction] [-Encoding <FileSystemCmdletProviderEnc
                      oding>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113278
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : Add
Noun                : History
HelpFile            : System.Management.Automation.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Core
ImplementingType    : Microsoft.PowerShell.Commands.AddHistoryCommand
Definition          : Add-History [[-InputObject] <PSObject[]>] [-Passthru] [-V
                      erbose] [-Debug] [-ErrorAction <ActionPreference>] [-Warn
                      ingAction <ActionPreference>] [-ErrorVariable <String>] [
                      -WarningVariable <String>] [-OutVariable <String>] [-OutB
                      uffer <Int32>]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Add-History
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Core
Module              : 
Parameters          : {[InputObject, System.Management.Automation.ParameterMeta
                      data], [Passthru, System.Management.Automation.ParameterM
                      etadata], [Verbose, System.Management.Automation.Paramete
                      rMetadata], [Debug, System.Management.Automation.Paramete
                      rMetadata]...}
ParameterSets       : {[[-InputObject] <PSObject[]>] [-Passthru] [-Verbose] [-D
                      ebug] [-ErrorAction <ActionPreference>] [-WarningAction <
                      ActionPreference>] [-ErrorVariable <String>] [-WarningVar
                      iable <String>] [-OutVariable <String>] [-OutBuffer <Int3
                      2>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113279
DLL                 : C:\Windows\assembly\GAC_MSIL\System.Management.Automation
                      \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d
                      ll


Verb                : Add
Noun                : Member
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.AddMemberCommand
Definition          : Add-Member [-MemberType] <PSMemberTypes> [-Name] <String>
                       [[-Value] <Object>] [[-SecondValue] <Object>] -InputObje
                      ct <PSObject> [-Force] [-PassThru] [-Verbose] [-Debug] [-
                      ErrorAction <ActionPreference>] [-WarningAction <ActionPr
                      eference>] [-ErrorVariable <String>] [-WarningVariable <S
                      tring>] [-OutVariable <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Add-Member
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[InputObject, System.Management.Automation.ParameterMeta
                      data], [MemberType, System.Management.Automation.Paramete
                      rMetadata], [Name, System.Management.Automation.Parameter
                      Metadata], [Value, System.Management.Automation.Parameter
                      Metadata]...}
ParameterSets       : {[-MemberType] <PSMemberTypes> [-Name] <String> [[-Value]
                       <Object>] [[-SecondValue] <Object>] -InputObject <PSObje
                      ct> [-Force] [-PassThru] [-Verbose] [-Debug] [-ErrorActio
                      n <ActionPreference>] [-WarningAction <ActionPreference>]
                       [-ErrorVariable <String>] [-WarningVariable <String>] [-
                      OutVariable <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113280
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : Add
Noun                : PSSnapin
HelpFile            : System.Management.Automation.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Core
ImplementingType    : Microsoft.PowerShell.Commands.AddPSSnapinCommand
Definition          : Add-PSSnapin [-Name] <String[]> [-PassThru] [-Verbose] [-
                      Debug] [-ErrorAction <ActionPreference>] [-WarningAction 
                      <ActionPreference>] [-ErrorVariable <String>] [-WarningVa
                      riable <String>] [-OutVariable <String>] [-OutBuffer <Int
                      32>]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Add-PSSnapin
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Core
Module              : 
Parameters          : {[Name, System.Management.Automation.ParameterMetadata], 
                      [PassThru, System.Management.Automation.ParameterMetadata
                      ], [Verbose, System.Management.Automation.ParameterMetada
                      ta], [Debug, System.Management.Automation.ParameterMetada
                      ta]...}
ParameterSets       : {[-Name] <String[]> [-PassThru] [-Verbose] [-Debug] [-Err
                      orAction <ActionPreference>] [-WarningAction <ActionPrefe
                      rence>] [-ErrorVariable <String>] [-WarningVariable <Stri
                      ng>] [-OutVariable <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113281
DLL                 : C:\Windows\assembly\GAC_MSIL\System.Management.Automation
                      \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d
                      ll


Verb                : Add
Noun                : Type
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.AddTypeCommand
Definition          : Add-Type [-TypeDefinition] <String> [-Language <Language>
                      ] [-ReferencedAssemblies <String[]>] [-CodeDomProvider <C
                      odeDomProvider>] [-CompilerParameters <CompilerParameters
                      >] [-OutputAssembly <String>] [-OutputType <OutputAssembl
                      yType>] [-PassThru] [-IgnoreWarnings] [-Verbose] [-Debug]
                       [-ErrorAction <ActionPreference>] [-WarningAction <Actio
                      nPreference>] [-ErrorVariable <String>] [-WarningVariable
                       <String>] [-OutVariable <String>] [-OutBuffer <Int32>]
                      Add-Type [-Name] <String> [-MemberDefinition] <String[]> 
                      [-Namespace <String>] [-UsingNamespace <String[]>] [-Lang
                      uage <Language>] [-ReferencedAssemblies <String[]>] [-Cod
                      eDomProvider <CodeDomProvider>] [-CompilerParameters <Com
                      pilerParameters>] [-OutputAssembly <String>] [-OutputType
                       <OutputAssemblyType>] [-PassThru] [-IgnoreWarnings] [-Ve
                      rbose] [-Debug] [-ErrorAction <ActionPreference>] [-Warni
                      ngAction <ActionPreference>] [-ErrorVariable <String>] [-
                      WarningVariable <String>] [-OutVariable <String>] [-OutBu
                      ffer <Int32>]
                      Add-Type [-Path] <String[]> [-ReferencedAssemblies <Strin
                      g[]>] [-CompilerParameters <CompilerParameters>] [-Output
                      Assembly <String>] [-OutputType <OutputAssemblyType>] [-P
                      assThru] [-IgnoreWarnings] [-Verbose] [-Debug] [-ErrorAct
                      ion <ActionPreference>] [-WarningAction <ActionPreference
                      >] [-ErrorVariable <String>] [-WarningVariable <String>] 
                      [-OutVariable <String>] [-OutBuffer <Int32>]
                      Add-Type -AssemblyName <String[]> [-PassThru] [-IgnoreWar
                      nings] [-Verbose] [-Debug] [-ErrorAction <ActionPreferenc
                      e>] [-WarningAction <ActionPreference>] [-ErrorVariable <
                      String>] [-WarningVariable <String>] [-OutVariable <Strin
                      g>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : FromSource
OutputType          : {}
Name                : Add-Type
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[TypeDefinition, System.Management.Automation.ParameterM
                      etadata], [Name, System.Management.Automation.ParameterMe
                      tadata], [MemberDefinition, System.Management.Automation.
                      ParameterMetadata], [Namespace, System.Management.Automat
                      ion.ParameterMetadata]...}
ParameterSets       : {[-TypeDefinition] <String> [-Language <Language>] [-Refe
                      rencedAssemblies <String[]>] [-CodeDomProvider <CodeDomPr
                      ovider>] [-CompilerParameters <CompilerParameters>] [-Out
                      putAssembly <String>] [-OutputType <OutputAssemblyType>] 
                      [-PassThru] [-IgnoreWarnings] [-Verbose] [-Debug] [-Error
                      Action <ActionPreference>] [-WarningAction <ActionPrefere
                      nce>] [-ErrorVariable <String>] [-WarningVariable <String
                      >] [-OutVariable <String>] [-OutBuffer <Int32>], [-Name] 
                      <String> [-MemberDefinition] <String[]> [-Namespace <Stri
                      ng>] [-UsingNamespace <String[]>] [-Language <Language>] 
                      [-ReferencedAssemblies <String[]>] [-CodeDomProvider <Cod
                      eDomProvider>] [-CompilerParameters <CompilerParameters>]
                       [-OutputAssembly <String>] [-OutputType <OutputAssemblyT
                      ype>] [-PassThru] [-IgnoreWarnings] [-Verbose] [-Debug] [
                      -ErrorAction <ActionPreference>] [-WarningAction <ActionP
                      reference>] [-ErrorVariable <String>] [-WarningVariable <
                      String>] [-OutVariable <String>] [-OutBuffer <Int32>], [-
                      Path] <String[]> [-ReferencedAssemblies <String[]>] [-Com
                      pilerParameters <CompilerParameters>] [-OutputAssembly <S
                      tring>] [-OutputType <OutputAssemblyType>] [-PassThru] [-
                      IgnoreWarnings] [-Verbose] [-Debug] [-ErrorAction <Action
                      Preference>] [-WarningAction <ActionPreference>] [-ErrorV
                      ariable <String>] [-WarningVariable <String>] [-OutVariab
                      le <String>] [-OutBuffer <Int32>], -AssemblyName <String[
                      ]> [-PassThru] [-IgnoreWarnings] [-Verbose] [-Debug] [-Er
                      rorAction <ActionPreference>] [-WarningAction <ActionPref
                      erence>] [-ErrorVariable <String>] [-WarningVariable <Str
                      ing>] [-OutVariable <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=135195
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll

Name              : asnp
CommandType       : Alias
Definition        : Add-PSSnapIn
ReferencedCommand : Add-PSSnapin
ResolvedCommand   : Add-PSSnapin


ScriptBlock         : Set-Location B:
CmdletBinding       : False
DefaultParameterSet : 
Definition          : Set-Location B:
Options             : None
Description         : 
OutputType          : {}
Name                : B:
CommandType         : Function
Visibility          : Public
ModuleName          : 
Module              : 
Parameters          : {}
ParameterSets       : {}
HelpUri             : 


ScriptBlock         : Set-Location C:
CmdletBinding       : False
DefaultParameterSet : 
Definition          : Set-Location C:
Options             : None
Description         : 
OutputType          : {}
Name                : C:
CommandType         : Function
Visibility          : Public
ModuleName          : 
Module              : 
Parameters          : {}
ParameterSets       : {}
HelpUri             : 

Name              : cat
CommandType       : Alias
Definition        : Get-Content
ReferencedCommand : Get-Content
ResolvedCommand   : Get-Content

Name              : cd
CommandType       : Alias
Definition        : Set-Location
ReferencedCommand : Set-Location
ResolvedCommand   : Set-Location


ScriptBlock         : Set-Location ..
CmdletBinding       : False
DefaultParameterSet : 
Definition          : Set-Location ..
Options             : None
Description         : 
OutputType          : {}
Name                : cd..
CommandType         : Function
Visibility          : Public
ModuleName          : 
Module              : 
Parameters          : {}
ParameterSets       : {}
HelpUri             : 


ScriptBlock         : Set-Location \
CmdletBinding       : False
DefaultParameterSet : 
Definition          : Set-Location \
Options             : None
Description         : 
OutputType          : {}
Name                : cd\
CommandType         : Function
Visibility          : Public
ModuleName          : 
Module              : 
Parameters          : {}
ParameterSets       : {}
HelpUri             : 

Name              : chdir
CommandType       : Alias
Definition        : Set-Location
ReferencedCommand : Set-Location
ResolvedCommand   : Set-Location


Verb                : Checkpoint
Noun                : Computer
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.CheckpointComputerCommand
Definition          : Checkpoint-Computer [-Description] <String> [[-RestorePoi
                      ntType] <String>] [-Verbose] [-Debug] [-ErrorAction <Acti
                      onPreference>] [-WarningAction <ActionPreference>] [-Erro
                      rVariable <String>] [-WarningVariable <String>] [-OutVari
                      able <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Checkpoint-Computer
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[Description, System.Management.Automation.ParameterMeta
                      data], [RestorePointType, System.Management.Automation.Pa
                      rameterMetadata], [Verbose, System.Management.Automation.
                      ParameterMetadata], [Debug, System.Management.Automation.
                      ParameterMetadata]...}
ParameterSets       : {[-Description] <String> [[-RestorePointType] <String>] [
                      -Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-Wa
                      rningAction <ActionPreference>] [-ErrorVariable <String>]
                       [-WarningVariable <String>] [-OutVariable <String>] [-Ou
                      tBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=135197
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll

Name              : clc
CommandType       : Alias
Definition        : Clear-Content
ReferencedCommand : Clear-Content
ResolvedCommand   : Clear-Content

Name              : clear
CommandType       : Alias
Definition        : Clear-Host
ReferencedCommand : Clear-Host
ResolvedCommand   : Clear-Host


Verb                : Clear
Noun                : Content
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.ClearContentCommand
Definition          : Clear-Content [-Path] <String[]> [-Filter <String>] [-Inc
                      lude <String[]>] [-Exclude <String[]>] [-Force] [-Credent
                      ial <PSCredential>] [-Verbose] [-Debug] [-ErrorAction <Ac
                      tionPreference>] [-WarningAction <ActionPreference>] [-Er
                      rorVariable <String>] [-WarningVariable <String>] [-OutVa
                      riable <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm
                      ] [-UseTransaction]
                      Clear-Content [-LiteralPath] <String[]> [-Filter <String>
                      ] [-Include <String[]>] [-Exclude <String[]>] [-Force] [-
                      Credential <PSCredential>] [-Verbose] [-Debug] [-ErrorAct
                      ion <ActionPreference>] [-WarningAction <ActionPreference
                      >] [-ErrorVariable <String>] [-WarningVariable <String>] 
                      [-OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf] [-
                      Confirm] [-UseTransaction]
                      
DefaultParameterSet : Path
OutputType          : {}
Name                : Clear-Content
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[Path, System.Management.Automation.ParameterMetadata], 
                      [LiteralPath, System.Management.Automation.ParameterMetad
                      ata], [Filter, System.Management.Automation.ParameterMeta
                      data], [Include, System.Management.Automation.ParameterMe
                      tadata]...}
ParameterSets       : {[-Path] <String[]> [-Filter <String>] [-Include <String[
                      ]>] [-Exclude <String[]>] [-Force] [-Credential <PSCreden
                      tial>] [-Verbose] [-Debug] [-ErrorAction <ActionPreferenc
                      e>] [-WarningAction <ActionPreference>] [-ErrorVariable <
                      String>] [-WarningVariable <String>] [-OutVariable <Strin
                      g>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm] [-UseTransa
                      ction], [-LiteralPath] <String[]> [-Filter <String>] [-In
                      clude <String[]>] [-Exclude <String[]>] [-Force] [-Creden
                      tial <PSCredential>] [-Verbose] [-Debug] [-ErrorAction <A
                      ctionPreference>] [-WarningAction <ActionPreference>] [-E
                      rrorVariable <String>] [-WarningVariable <String>] [-OutV
                      ariable <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confir
                      m] [-UseTransaction]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113282
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : Clear
Noun                : EventLog
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.ClearEventLogCommand
Definition          : Clear-EventLog [-LogName] <String[]> [[-ComputerName] <St
                      ring[]>] [-Verbose] [-Debug] [-ErrorAction <ActionPrefere
                      nce>] [-WarningAction <ActionPreference>] [-ErrorVariable
                       <String>] [-WarningVariable <String>] [-OutVariable <Str
                      ing>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Clear-EventLog
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[LogName, System.Management.Automation.ParameterMetadata
                      ], [ComputerName, System.Management.Automation.ParameterM
                      etadata], [Verbose, System.Management.Automation.Paramete
                      rMetadata], [Debug, System.Management.Automation.Paramete
                      rMetadata]...}
ParameterSets       : {[-LogName] <String[]> [[-ComputerName] <String[]>] [-Ver
                      bose] [-Debug] [-ErrorAction <ActionPreference>] [-Warnin
                      gAction <ActionPreference>] [-ErrorVariable <String>] [-W
                      arningVariable <String>] [-OutVariable <String>] [-OutBuf
                      fer <Int32>] [-WhatIf] [-Confirm]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=135198
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : Clear
Noun                : History
HelpFile            : System.Management.Automation.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Core
ImplementingType    : Microsoft.PowerShell.Commands.ClearHistoryCommand
Definition          : Clear-History [[-Id] <Int32[]>] [[-Count] <Int32>] [-Newe
                      st] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>]
                       [-WarningAction <ActionPreference>] [-ErrorVariable <Str
                      ing>] [-WarningVariable <String>] [-OutVariable <String>]
                       [-OutBuffer <Int32>] [-WhatIf] [-Confirm]
                      Clear-History [[-Count] <Int32>] [-CommandLine <String[]>
                      ] [-Newest] [-Verbose] [-Debug] [-ErrorAction <ActionPref
                      erence>] [-WarningAction <ActionPreference>] [-ErrorVaria
                      ble <String>] [-WarningVariable <String>] [-OutVariable <
                      String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm]
                      
DefaultParameterSet : IDParameter
OutputType          : {}
Name                : Clear-History
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Core
Module              : 
Parameters          : {[Id, System.Management.Automation.ParameterMetadata], [C
                      ommandLine, System.Management.Automation.ParameterMetadat
                      a], [Count, System.Management.Automation.ParameterMetadat
                      a], [Newest, System.Management.Automation.ParameterMetada
                      ta]...}
ParameterSets       : {[[-Id] <Int32[]>] [[-Count] <Int32>] [-Newest] [-Verbose
                      ] [-Debug] [-ErrorAction <ActionPreference>] [-WarningAct
                      ion <ActionPreference>] [-ErrorVariable <String>] [-Warni
                      ngVariable <String>] [-OutVariable <String>] [-OutBuffer 
                      <Int32>] [-WhatIf] [-Confirm], [[-Count] <Int32>] [-Comma
                      ndLine <String[]>] [-Newest] [-Verbose] [-Debug] [-ErrorA
                      ction <ActionPreference>] [-WarningAction <ActionPreferen
                      ce>] [-ErrorVariable <String>] [-WarningVariable <String>
                      ] [-OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf] 
                      [-Confirm]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=135199
DLL                 : C:\Windows\assembly\GAC_MSIL\System.Management.Automation
                      \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d
                      ll


ScriptBlock         : $space = New-Object System.Management.Automation.Host.Buf
                      ferCell
                      $space.Character = ' '
                      $space.ForegroundColor = $host.ui.rawui.ForegroundColor
                      $space.BackgroundColor = $host.ui.rawui.BackgroundColor
                      $rect = New-Object System.Management.Automation.Host.Rect
                      angle
                      $rect.Top = $rect.Bottom = $rect.Right = $rect.Left = -1
                      $origin = New-Object System.Management.Automation.Host.Co
                      ordinates
                      $Host.UI.RawUI.CursorPosition = $origin
                      $Host.UI.RawUI.SetBufferContents($rect, $space)
                      
CmdletBinding       : False
DefaultParameterSet : 
Definition          : $space = New-Object System.Management.Automation.Host.Buf
                      ferCell
                      $space.Character = ' '
                      $space.ForegroundColor = $host.ui.rawui.ForegroundColor
                      $space.BackgroundColor = $host.ui.rawui.BackgroundColor
                      $rect = New-Object System.Management.Automation.Host.Rect
                      angle
                      $rect.Top = $rect.Bottom = $rect.Right = $rect.Left = -1
                      $origin = New-Object System.Management.Automation.Host.Co
                      ordinates
                      $Host.UI.RawUI.CursorPosition = $origin
                      $Host.UI.RawUI.SetBufferContents($rect, $space)
                      
Options             : None
Description         : 
OutputType          : {}
Name                : Clear-Host
CommandType         : Function
Visibility          : Public
ModuleName          : 
Module              : 
Parameters          : {}
ParameterSets       : {}
HelpUri             : 


Verb                : Clear
Noun                : Item
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.ClearItemCommand
Definition          : Clear-Item [-Path] <String[]> [-Force] [-Filter <String>]
                       [-Include <String[]>] [-Exclude <String[]>] [-Credential
                       <PSCredential>] [-Verbose] [-Debug] [-ErrorAction <Actio
                      nPreference>] [-WarningAction <ActionPreference>] [-Error
                      Variable <String>] [-WarningVariable <String>] [-OutVaria
                      ble <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm] [
                      -UseTransaction]
                      Clear-Item [-LiteralPath] <String[]> [-Force] [-Filter <S
                      tring>] [-Include <String[]>] [-Exclude <String[]>] [-Cre
                      dential <PSCredential>] [-Verbose] [-Debug] [-ErrorAction
                       <ActionPreference>] [-WarningAction <ActionPreference>] 
                      [-ErrorVariable <String>] [-WarningVariable <String>] [-O
                      utVariable <String>] [-OutBuffer <Int32>] [-WhatIf] [-Con
                      firm] [-UseTransaction]
                      
DefaultParameterSet : Path
OutputType          : {}
Name                : Clear-Item
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[Path, System.Management.Automation.ParameterMetadata], 
                      [LiteralPath, System.Management.Automation.ParameterMetad
                      ata], [Force, System.Management.Automation.ParameterMetad
                      ata], [Filter, System.Management.Automation.ParameterMeta
                      data]...}
ParameterSets       : {[-Path] <String[]> [-Force] [-Filter <String>] [-Include
                       <String[]>] [-Exclude <String[]>] [-Credential <PSCreden
                      tial>] [-Verbose] [-Debug] [-ErrorAction <ActionPreferenc
                      e>] [-WarningAction <ActionPreference>] [-ErrorVariable <
                      String>] [-WarningVariable <String>] [-OutVariable <Strin
                      g>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm] [-UseTransa
                      ction], [-LiteralPath] <String[]> [-Force] [-Filter <Stri
                      ng>] [-Include <String[]>] [-Exclude <String[]>] [-Creden
                      tial <PSCredential>] [-Verbose] [-Debug] [-ErrorAction <A
                      ctionPreference>] [-WarningAction <ActionPreference>] [-E
                      rrorVariable <String>] [-WarningVariable <String>] [-OutV
                      ariable <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confir
                      m] [-UseTransaction]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113283
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : Clear
Noun                : ItemProperty
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.ClearItemPropertyCommand
Definition          : Clear-ItemProperty [-Path] <String[]> [-Name] <String> [-
                      PassThru] [-Force] [-Filter <String>] [-Include <String[]
                      >] [-Exclude <String[]>] [-Credential <PSCredential>] [-V
                      erbose] [-Debug] [-ErrorAction <ActionPreference>] [-Warn
                      ingAction <ActionPreference>] [-ErrorVariable <String>] [
                      -WarningVariable <String>] [-OutVariable <String>] [-OutB
                      uffer <Int32>] [-WhatIf] [-Confirm] [-UseTransaction]
                      Clear-ItemProperty [-LiteralPath] <String[]> [-Name] <Str
                      ing> [-PassThru] [-Force] [-Filter <String>] [-Include <S
                      tring[]>] [-Exclude <String[]>] [-Credential <PSCredentia
                      l>] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>]
                       [-WarningAction <ActionPreference>] [-ErrorVariable <Str
                      ing>] [-WarningVariable <String>] [-OutVariable <String>]
                       [-OutBuffer <Int32>] [-WhatIf] [-Confirm] [-UseTransacti
                      on]
                      
DefaultParameterSet : Path
OutputType          : {}
Name                : Clear-ItemProperty
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[Path, System.Management.Automation.ParameterMetadata], 
                      [LiteralPath, System.Management.Automation.ParameterMetad
                      ata], [Name, System.Management.Automation.ParameterMetada
                      ta], [PassThru, System.Management.Automation.ParameterMet
                      adata]...}
ParameterSets       : {[-Path] <String[]> [-Name] <String> [-PassThru] [-Force]
                       [-Filter <String>] [-Include <String[]>] [-Exclude <Stri
                      ng[]>] [-Credential <PSCredential>] [-Verbose] [-Debug] [
                      -ErrorAction <ActionPreference>] [-WarningAction <ActionP
                      reference>] [-ErrorVariable <String>] [-WarningVariable <
                      String>] [-OutVariable <String>] [-OutBuffer <Int32>] [-W
                      hatIf] [-Confirm] [-UseTransaction], [-LiteralPath] <Stri
                      ng[]> [-Name] <String> [-PassThru] [-Force] [-Filter <Str
                      ing>] [-Include <String[]>] [-Exclude <String[]>] [-Crede
                      ntial <PSCredential>] [-Verbose] [-Debug] [-ErrorAction <
                      ActionPreference>] [-WarningAction <ActionPreference>] [-
                      ErrorVariable <String>] [-WarningVariable <String>] [-Out
                      Variable <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confi
                      rm] [-UseTransaction]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113284
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : Clear
Noun                : Variable
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.ClearVariableCommand
Definition          : Clear-Variable [-Name] <String[]> [-Include <String[]>] [
                      -Exclude <String[]>] [-Force] [-PassThru] [-Scope <String
                      >] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] 
                      [-WarningAction <ActionPreference>] [-ErrorVariable <Stri
                      ng>] [-WarningVariable <String>] [-OutVariable <String>] 
                      [-OutBuffer <Int32>] [-WhatIf] [-Confirm]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Clear-Variable
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[Name, System.Management.Automation.ParameterMetadata], 
                      [Include, System.Management.Automation.ParameterMetadata]
                      , [Exclude, System.Management.Automation.ParameterMetadat
                      a], [Force, System.Management.Automation.ParameterMetadat
                      a]...}
ParameterSets       : {[-Name] <String[]> [-Include <String[]>] [-Exclude <Stri
                      ng[]>] [-Force] [-PassThru] [-Scope <String>] [-Verbose] 
                      [-Debug] [-ErrorAction <ActionPreference>] [-WarningActio
                      n <ActionPreference>] [-ErrorVariable <String>] [-Warning
                      Variable <String>] [-OutVariable <String>] [-OutBuffer <I
                      nt32>] [-WhatIf] [-Confirm]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113285
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll

Name              : clhy
CommandType       : Alias
Definition        : Clear-History
ReferencedCommand : Clear-History
ResolvedCommand   : Clear-History

Name              : cli
CommandType       : Alias
Definition        : Clear-Item
ReferencedCommand : Clear-Item
ResolvedCommand   : Clear-Item

Name              : clp
CommandType       : Alias
Definition        : Clear-ItemProperty
ReferencedCommand : Clear-ItemProperty
ResolvedCommand   : Clear-ItemProperty

Name              : cls
CommandType       : Alias
Definition        : Clear-Host
ReferencedCommand : Clear-Host
ResolvedCommand   : Clear-Host

Name              : clv
CommandType       : Alias
Definition        : Clear-Variable
ReferencedCommand : Clear-Variable
ResolvedCommand   : Clear-Variable

Name              : compare
CommandType       : Alias
Definition        : Compare-Object
ReferencedCommand : Compare-Object
ResolvedCommand   : Compare-Object


Verb                : Compare
Noun                : Object
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.CompareObjectCommand
Definition          : Compare-Object [-ReferenceObject] <PSObject[]> [-Differen
                      ceObject] <PSObject[]> [-SyncWindow <Int32>] [-Property <
                      Object[]>] [-ExcludeDifferent] [-IncludeEqual] [-PassThru
                      ] [-Culture <String>] [-CaseSensitive] [-Verbose] [-Debug
                      ] [-ErrorAction <ActionPreference>] [-WarningAction <Acti
                      onPreference>] [-ErrorVariable <String>] [-WarningVariabl
                      e <String>] [-OutVariable <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Compare-Object
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[ReferenceObject, System.Management.Automation.Parameter
                      Metadata], [DifferenceObject, System.Management.Automatio
                      n.ParameterMetadata], [SyncWindow, System.Management.Auto
                      mation.ParameterMetadata], [Property, System.Management.A
                      utomation.ParameterMetadata]...}
ParameterSets       : {[-ReferenceObject] <PSObject[]> [-DifferenceObject] <PSO
                      bject[]> [-SyncWindow <Int32>] [-Property <Object[]>] [-E
                      xcludeDifferent] [-IncludeEqual] [-PassThru] [-Culture <S
                      tring>] [-CaseSensitive] [-Verbose] [-Debug] [-ErrorActio
                      n <ActionPreference>] [-WarningAction <ActionPreference>]
                       [-ErrorVariable <String>] [-WarningVariable <String>] [-
                      OutVariable <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113286
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : Complete
Noun                : Transaction
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.CompleteTransactionCommand
Definition          : Complete-Transaction [-Verbose] [-Debug] [-ErrorAction <A
                      ctionPreference>] [-WarningAction <ActionPreference>] [-E
                      rrorVariable <String>] [-WarningVariable <String>] [-OutV
                      ariable <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confir
                      m]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Complete-Transaction
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[Verbose, System.Management.Automation.ParameterMetadata
                      ], [Debug, System.Management.Automation.ParameterMetadata
                      ], [ErrorAction, System.Management.Automation.ParameterMe
                      tadata], [WarningAction, System.Management.Automation.Par
                      ameterMetadata]...}
ParameterSets       : {[-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-
                      WarningAction <ActionPreference>] [-ErrorVariable <String
                      >] [-WarningVariable <String>] [-OutVariable <String>] [-
                      OutBuffer <Int32>] [-WhatIf] [-Confirm]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=135200
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : Connect
Noun                : WSMan
HelpFile            : Microsoft.WSMan.Management.dll-Help.xml
PSSnapIn            : Microsoft.WSMan.Management
ImplementingType    : Microsoft.WSMan.Management.ConnectWSManCommand
Definition          : Connect-WSMan [[-ComputerName] <String>] [-ApplicationNam
                      e <String>] [-OptionSet <Hashtable>] [-Port <Int32>] [-Se
                      ssionOption <SessionOption>] [-UseSSL] [-Credential <PSCr
                      edential>] [-Authentication <AuthenticationMechanism>] [-
                      CertificateThumbprint <String>] [-Verbose] [-Debug] [-Err
                      orAction <ActionPreference>] [-WarningAction <ActionPrefe
                      rence>] [-ErrorVariable <String>] [-WarningVariable <Stri
                      ng>] [-OutVariable <String>] [-OutBuffer <Int32>]
                      Connect-WSMan [-ConnectionURI <Uri>] [-OptionSet <Hashtab
                      le>] [-Port <Int32>] [-SessionOption <SessionOption>] [-C
                      redential <PSCredential>] [-Authentication <Authenticatio
                      nMechanism>] [-CertificateThumbprint <String>] [-Verbose]
                       [-Debug] [-ErrorAction <ActionPreference>] [-WarningActi
                      on <ActionPreference>] [-ErrorVariable <String>] [-Warnin
                      gVariable <String>] [-OutVariable <String>] [-OutBuffer <
                      Int32>]
                      
DefaultParameterSet : ComputerName
OutputType          : {}
Name                : Connect-WSMan
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.WSMan.Management
Module              : 
Parameters          : {[ApplicationName, System.Management.Automation.Parameter
                      Metadata], [ComputerName, System.Management.Automation.Pa
                      rameterMetadata], [ConnectionURI, System.Management.Autom
                      ation.ParameterMetadata], [OptionSet, System.Management.A
                      utomation.ParameterMetadata]...}
ParameterSets       : {[[-ComputerName] <String>] [-ApplicationName <String>] [
                      -OptionSet <Hashtable>] [-Port <Int32>] [-SessionOption <
                      SessionOption>] [-UseSSL] [-Credential <PSCredential>] [-
                      Authentication <AuthenticationMechanism>] [-CertificateTh
                      umbprint <String>] [-Verbose] [-Debug] [-ErrorAction <Act
                      ionPreference>] [-WarningAction <ActionPreference>] [-Err
                      orVariable <String>] [-WarningVariable <String>] [-OutVar
                      iable <String>] [-OutBuffer <Int32>], [-ConnectionURI <Ur
                      i>] [-OptionSet <Hashtable>] [-Port <Int32>] [-SessionOpt
                      ion <SessionOption>] [-Credential <PSCredential>] [-Authe
                      ntication <AuthenticationMechanism>] [-CertificateThumbpr
                      int <String>] [-Verbose] [-Debug] [-ErrorAction <ActionPr
                      eference>] [-WarningAction <ActionPreference>] [-ErrorVar
                      iable <String>] [-WarningVariable <String>] [-OutVariable
                       <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkId=141437
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.WSMan.Management\1
                      .0.0.0__31bf3856ad364e35\Microsoft.WSMan.Management.dll


Verb                : ConvertFrom
Noun                : Csv
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.ConvertFromCsvCommand
Definition          : ConvertFrom-Csv [-InputObject] <PSObject[]> [[-Delimiter]
                       <Char>] [-Header <String[]>] [-Verbose] [-Debug] [-Error
                      Action <ActionPreference>] [-WarningAction <ActionPrefere
                      nce>] [-ErrorVariable <String>] [-WarningVariable <String
                      >] [-OutVariable <String>] [-OutBuffer <Int32>]
                      ConvertFrom-Csv [-InputObject] <PSObject[]> -UseCulture [
                      -Header <String[]>] [-Verbose] [-Debug] [-ErrorAction <Ac
                      tionPreference>] [-WarningAction <ActionPreference>] [-Er
                      rorVariable <String>] [-WarningVariable <String>] [-OutVa
                      riable <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : Delimiter
OutputType          : {}
Name                : ConvertFrom-Csv
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[Delimiter, System.Management.Automation.ParameterMetada
                      ta], [UseCulture, System.Management.Automation.ParameterM
                      etadata], [InputObject, System.Management.Automation.Para
                      meterMetadata], [Header, System.Management.Automation.Par
                      ameterMetadata]...}
ParameterSets       : {[-InputObject] <PSObject[]> [[-Delimiter] <Char>] [-Head
                      er <String[]>] [-Verbose] [-Debug] [-ErrorAction <ActionP
                      reference>] [-WarningAction <ActionPreference>] [-ErrorVa
                      riable <String>] [-WarningVariable <String>] [-OutVariabl
                      e <String>] [-OutBuffer <Int32>], [-InputObject] <PSObjec
                      t[]> -UseCulture [-Header <String[]>] [-Verbose] [-Debug]
                       [-ErrorAction <ActionPreference>] [-WarningAction <Actio
                      nPreference>] [-ErrorVariable <String>] [-WarningVariable
                       <String>] [-OutVariable <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=135201
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : ConvertFrom
Noun                : SecureString
HelpFile            : Microsoft.PowerShell.Security.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Security
ImplementingType    : Microsoft.PowerShell.Commands.ConvertFromSecureStringComm
                      and
Definition          : ConvertFrom-SecureString [-SecureString] <SecureString> [
                      [-SecureKey] <SecureString>] [-Verbose] [-Debug] [-ErrorA
                      ction <ActionPreference>] [-WarningAction <ActionPreferen
                      ce>] [-ErrorVariable <String>] [-WarningVariable <String>
                      ] [-OutVariable <String>] [-OutBuffer <Int32>]
                      ConvertFrom-SecureString [-SecureString] <SecureString> [
                      -Key <Byte[]>] [-Verbose] [-Debug] [-ErrorAction <ActionP
                      reference>] [-WarningAction <ActionPreference>] [-ErrorVa
                      riable <String>] [-WarningVariable <String>] [-OutVariabl
                      e <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : Secure
OutputType          : {System.String}
Name                : ConvertFrom-SecureString
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Security
Module              : 
Parameters          : {[SecureString, System.Management.Automation.ParameterMet
                      adata], [SecureKey, System.Management.Automation.Paramete
                      rMetadata], [Key, System.Management.Automation.ParameterM
                      etadata], [Verbose, System.Management.Automation.Paramete
                      rMetadata]...}
ParameterSets       : {[-SecureString] <SecureString> [[-SecureKey] <SecureStri
                      ng>] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>
                      ] [-WarningAction <ActionPreference>] [-ErrorVariable <St
                      ring>] [-WarningVariable <String>] [-OutVariable <String>
                      ] [-OutBuffer <Int32>], [-SecureString] <SecureString> [-
                      Key <Byte[]>] [-Verbose] [-Debug] [-ErrorAction <ActionPr
                      eference>] [-WarningAction <ActionPreference>] [-ErrorVar
                      iable <String>] [-WarningVariable <String>] [-OutVariable
                       <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113287
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Securit
                      y\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.Security
                      .dll


Verb                : ConvertFrom
Noun                : StringData
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.ConvertFromStringDataComman
                      d
Definition          : ConvertFrom-StringData [-StringData] <String> [-Verbose] 
                      [-Debug] [-ErrorAction <ActionPreference>] [-WarningActio
                      n <ActionPreference>] [-ErrorVariable <String>] [-Warning
                      Variable <String>] [-OutVariable <String>] [-OutBuffer <I
                      nt32>]
                      
DefaultParameterSet : 
OutputType          : {System.Collections.Hashtable}
Name                : ConvertFrom-StringData
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[StringData, System.Management.Automation.ParameterMetad
                      ata], [Verbose, System.Management.Automation.ParameterMet
                      adata], [Debug, System.Management.Automation.ParameterMet
                      adata], [ErrorAction, System.Management.Automation.Parame
                      terMetadata]...}
ParameterSets       : {[-StringData] <String> [-Verbose] [-Debug] [-ErrorAction
                       <ActionPreference>] [-WarningAction <ActionPreference>] 
                      [-ErrorVariable <String>] [-WarningVariable <String>] [-O
                      utVariable <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113288
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : Convert
Noun                : Path
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.ConvertPathCommand
Definition          : Convert-Path [-Path] <String[]> [-Verbose] [-Debug] [-Err
                      orAction <ActionPreference>] [-WarningAction <ActionPrefe
                      rence>] [-ErrorVariable <String>] [-WarningVariable <Stri
                      ng>] [-OutVariable <String>] [-OutBuffer <Int32>] [-UseTr
                      ansaction]
                      Convert-Path [-LiteralPath] <String[]> [-Verbose] [-Debug
                      ] [-ErrorAction <ActionPreference>] [-WarningAction <Acti
                      onPreference>] [-ErrorVariable <String>] [-WarningVariabl
                      e <String>] [-OutVariable <String>] [-OutBuffer <Int32>] 
                      [-UseTransaction]
                      
DefaultParameterSet : Path
OutputType          : {System.String}
Name                : Convert-Path
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[Path, System.Management.Automation.ParameterMetadata], 
                      [LiteralPath, System.Management.Automation.ParameterMetad
                      ata], [Verbose, System.Management.Automation.ParameterMet
                      adata], [Debug, System.Management.Automation.ParameterMet
                      adata]...}
ParameterSets       : {[-Path] <String[]> [-Verbose] [-Debug] [-ErrorAction <Ac
                      tionPreference>] [-WarningAction <ActionPreference>] [-Er
                      rorVariable <String>] [-WarningVariable <String>] [-OutVa
                      riable <String>] [-OutBuffer <Int32>] [-UseTransaction], 
                      [-LiteralPath] <String[]> [-Verbose] [-Debug] [-ErrorActi
                      on <ActionPreference>] [-WarningAction <ActionPreference>
                      ] [-ErrorVariable <String>] [-WarningVariable <String>] [
                      -OutVariable <String>] [-OutBuffer <Int32>] [-UseTransact
                      ion]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113289
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : ConvertTo
Noun                : Csv
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.ConvertToCsvCommand
Definition          : ConvertTo-Csv [-InputObject] <PSObject> [[-Delimiter] <Ch
                      ar>] [-NoTypeInformation] [-Verbose] [-Debug] [-ErrorActi
                      on <ActionPreference>] [-WarningAction <ActionPreference>
                      ] [-ErrorVariable <String>] [-WarningVariable <String>] [
                      -OutVariable <String>] [-OutBuffer <Int32>]
                      ConvertTo-Csv [-InputObject] <PSObject> [-UseCulture] [-N
                      oTypeInformation] [-Verbose] [-Debug] [-ErrorAction <Acti
                      onPreference>] [-WarningAction <ActionPreference>] [-Erro
                      rVariable <String>] [-WarningVariable <String>] [-OutVari
                      able <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : Delimiter
OutputType          : {}
Name                : ConvertTo-Csv
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[InputObject, System.Management.Automation.ParameterMeta
                      data], [Delimiter, System.Management.Automation.Parameter
                      Metadata], [UseCulture, System.Management.Automation.Para
                      meterMetadata], [NoTypeInformation, System.Management.Aut
                      omation.ParameterMetadata]...}
ParameterSets       : {[-InputObject] <PSObject> [[-Delimiter] <Char>] [-NoType
                      Information] [-Verbose] [-Debug] [-ErrorAction <ActionPre
                      ference>] [-WarningAction <ActionPreference>] [-ErrorVari
                      able <String>] [-WarningVariable <String>] [-OutVariable 
                      <String>] [-OutBuffer <Int32>], [-InputObject] <PSObject>
                       [-UseCulture] [-NoTypeInformation] [-Verbose] [-Debug] [
                      -ErrorAction <ActionPreference>] [-WarningAction <ActionP
                      reference>] [-ErrorVariable <String>] [-WarningVariable <
                      String>] [-OutVariable <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=135203
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : ConvertTo
Noun                : Html
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.ConvertToHtmlCommand
Definition          : ConvertTo-Html [[-Property] <Object[]>] [[-Head] <String[
                      ]>] [[-Title] <String>] [[-Body] <String[]>] [-InputObjec
                      t <PSObject>] [-As <String>] [-CssUri <Uri>] [-PostConten
                      t <String[]>] [-PreContent <String[]>] [-Verbose] [-Debug
                      ] [-ErrorAction <ActionPreference>] [-WarningAction <Acti
                      onPreference>] [-ErrorVariable <String>] [-WarningVariabl
                      e <String>] [-OutVariable <String>] [-OutBuffer <Int32>]
                      ConvertTo-Html [[-Property] <Object[]>] [-InputObject <PS
                      Object>] [-As <String>] [-Fragment] [-PostContent <String
                      []>] [-PreContent <String[]>] [-Verbose] [-Debug] [-Error
                      Action <ActionPreference>] [-WarningAction <ActionPrefere
                      nce>] [-ErrorVariable <String>] [-WarningVariable <String
                      >] [-OutVariable <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : Page
OutputType          : {}
Name                : ConvertTo-Html
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[InputObject, System.Management.Automation.ParameterMeta
                      data], [Property, System.Management.Automation.ParameterM
                      etadata], [Body, System.Management.Automation.ParameterMe
                      tadata], [Head, System.Management.Automation.ParameterMet
                      adata]...}
ParameterSets       : {[[-Property] <Object[]>] [[-Head] <String[]>] [[-Title] 
                      <String>] [[-Body] <String[]>] [-InputObject <PSObject>] 
                      [-As <String>] [-CssUri <Uri>] [-PostContent <String[]>] 
                      [-PreContent <String[]>] [-Verbose] [-Debug] [-ErrorActio
                      n <ActionPreference>] [-WarningAction <ActionPreference>]
                       [-ErrorVariable <String>] [-WarningVariable <String>] [-
                      OutVariable <String>] [-OutBuffer <Int32>], [[-Property] 
                      <Object[]>] [-InputObject <PSObject>] [-As <String>] [-Fr
                      agment] [-PostContent <String[]>] [-PreContent <String[]>
                      ] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [
                      -WarningAction <ActionPreference>] [-ErrorVariable <Strin
                      g>] [-WarningVariable <String>] [-OutVariable <String>] [
                      -OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113290
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : ConvertTo
Noun                : SecureString
HelpFile            : Microsoft.PowerShell.Security.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Security
ImplementingType    : Microsoft.PowerShell.Commands.ConvertToSecureStringComman
                      d
Definition          : ConvertTo-SecureString [-String] <String> [[-SecureKey] <
                      SecureString>] [-Verbose] [-Debug] [-ErrorAction <ActionP
                      reference>] [-WarningAction <ActionPreference>] [-ErrorVa
                      riable <String>] [-WarningVariable <String>] [-OutVariabl
                      e <String>] [-OutBuffer <Int32>]
                      ConvertTo-SecureString [-String] <String> [-AsPlainText] 
                      [-Force] [-Verbose] [-Debug] [-ErrorAction <ActionPrefere
                      nce>] [-WarningAction <ActionPreference>] [-ErrorVariable
                       <String>] [-WarningVariable <String>] [-OutVariable <Str
                      ing>] [-OutBuffer <Int32>]
                      ConvertTo-SecureString [-String] <String> [-Key <Byte[]>]
                       [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-
                      WarningAction <ActionPreference>] [-ErrorVariable <String
                      >] [-WarningVariable <String>] [-OutVariable <String>] [-
                      OutBuffer <Int32>]
                      
DefaultParameterSet : Secure
OutputType          : {System.Security.SecureString}
Name                : ConvertTo-SecureString
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Security
Module              : 
Parameters          : {[String, System.Management.Automation.ParameterMetadata]
                      , [AsPlainText, System.Management.Automation.ParameterMet
                      adata], [Force, System.Management.Automation.ParameterMet
                      adata], [SecureKey, System.Management.Automation.Paramete
                      rMetadata]...}
ParameterSets       : {[-String] <String> [[-SecureKey] <SecureString>] [-Verbo
                      se] [-Debug] [-ErrorAction <ActionPreference>] [-WarningA
                      ction <ActionPreference>] [-ErrorVariable <String>] [-War
                      ningVariable <String>] [-OutVariable <String>] [-OutBuffe
                      r <Int32>], [-String] <String> [-AsPlainText] [-Force] [-
                      Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-War
                      ningAction <ActionPreference>] [-ErrorVariable <String>] 
                      [-WarningVariable <String>] [-OutVariable <String>] [-Out
                      Buffer <Int32>], [-String] <String> [-Key <Byte[]>] [-Ver
                      bose] [-Debug] [-ErrorAction <ActionPreference>] [-Warnin
                      gAction <ActionPreference>] [-ErrorVariable <String>] [-W
                      arningVariable <String>] [-OutVariable <String>] [-OutBuf
                      fer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113291
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Securit
                      y\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.Security
                      .dll


Verb                : ConvertTo
Noun                : Xml
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.ConvertToXmlCommand
Definition          : ConvertTo-Xml [-InputObject] <PSObject> [-Depth <Int32>] 
                      [-NoTypeInformation] [-As <String>] [-Verbose] [-Debug] [
                      -ErrorAction <ActionPreference>] [-WarningAction <ActionP
                      reference>] [-ErrorVariable <String>] [-WarningVariable <
                      String>] [-OutVariable <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : ConvertTo-Xml
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[Depth, System.Management.Automation.ParameterMetadata],
                       [InputObject, System.Management.Automation.ParameterMeta
                      data], [NoTypeInformation, System.Management.Automation.P
                      arameterMetadata], [As, System.Management.Automation.Para
                      meterMetadata]...}
ParameterSets       : {[-InputObject] <PSObject> [-Depth <Int32>] [-NoTypeInfor
                      mation] [-As <String>] [-Verbose] [-Debug] [-ErrorAction 
                      <ActionPreference>] [-WarningAction <ActionPreference>] [
                      -ErrorVariable <String>] [-WarningVariable <String>] [-Ou
                      tVariable <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=135204
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll

Name              : copy
CommandType       : Alias
Definition        : Copy-Item
ReferencedCommand : Copy-Item
ResolvedCommand   : Copy-Item


Verb                : Copy
Noun                : Item
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.CopyItemCommand
Definition          : Copy-Item [-Path] <String[]> [[-Destination] <String>] [-
                      Container] [-Force] [-Filter <String>] [-Include <String[
                      ]>] [-Exclude <String[]>] [-Recurse] [-PassThru] [-Creden
                      tial <PSCredential>] [-Verbose] [-Debug] [-ErrorAction <A
                      ctionPreference>] [-WarningAction <ActionPreference>] [-E
                      rrorVariable <String>] [-WarningVariable <String>] [-OutV
                      ariable <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confir
                      m] [-UseTransaction]
                      Copy-Item [-LiteralPath] <String[]> [[-Destination] <Stri
                      ng>] [-Container] [-Force] [-Filter <String>] [-Include <
                      String[]>] [-Exclude <String[]>] [-Recurse] [-PassThru] [
                      -Credential <PSCredential>] [-Verbose] [-Debug] [-ErrorAc
                      tion <ActionPreference>] [-WarningAction <ActionPreferenc
                      e>] [-ErrorVariable <String>] [-WarningVariable <String>]
                       [-OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf] [
                      -Confirm] [-UseTransaction]
                      
DefaultParameterSet : Path
OutputType          : {}
Name                : Copy-Item
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[Path, System.Management.Automation.ParameterMetadata], 
                      [LiteralPath, System.Management.Automation.ParameterMetad
                      ata], [Destination, System.Management.Automation.Paramete
                      rMetadata], [Container, System.Management.Automation.Para
                      meterMetadata]...}
ParameterSets       : {[-Path] <String[]> [[-Destination] <String>] [-Container
                      ] [-Force] [-Filter <String>] [-Include <String[]>] [-Exc
                      lude <String[]>] [-Recurse] [-PassThru] [-Credential <PSC
                      redential>] [-Verbose] [-Debug] [-ErrorAction <ActionPref
                      erence>] [-WarningAction <ActionPreference>] [-ErrorVaria
                      ble <String>] [-WarningVariable <String>] [-OutVariable <
                      String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm] [-UseT
                      ransaction], [-LiteralPath] <String[]> [[-Destination] <S
                      tring>] [-Container] [-Force] [-Filter <String>] [-Includ
                      e <String[]>] [-Exclude <String[]>] [-Recurse] [-PassThru
                      ] [-Credential <PSCredential>] [-Verbose] [-Debug] [-Erro
                      rAction <ActionPreference>] [-WarningAction <ActionPrefer
                      ence>] [-ErrorVariable <String>] [-WarningVariable <Strin
                      g>] [-OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf
                      ] [-Confirm] [-UseTransaction]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113292
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : Copy
Noun                : ItemProperty
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.CopyItemPropertyCommand
Definition          : Copy-ItemProperty [-Path] <String[]> [-Destination] <Stri
                      ng> [-Name] <String> [-PassThru] [-Force] [-Filter <Strin
                      g>] [-Include <String[]>] [-Exclude <String[]>] [-Credent
                      ial <PSCredential>] [-Verbose] [-Debug] [-ErrorAction <Ac
                      tionPreference>] [-WarningAction <ActionPreference>] [-Er
                      rorVariable <String>] [-WarningVariable <String>] [-OutVa
                      riable <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm
                      ] [-UseTransaction]
                      Copy-ItemProperty [-LiteralPath] <String[]> [-Destination
                      ] <String> [-Name] <String> [-PassThru] [-Force] [-Filter
                       <String>] [-Include <String[]>] [-Exclude <String[]>] [-
                      Credential <PSCredential>] [-Verbose] [-Debug] [-ErrorAct
                      ion <ActionPreference>] [-WarningAction <ActionPreference
                      >] [-ErrorVariable <String>] [-WarningVariable <String>] 
                      [-OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf] [-
                      Confirm] [-UseTransaction]
                      
DefaultParameterSet : Path
OutputType          : {}
Name                : Copy-ItemProperty
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[Path, System.Management.Automation.ParameterMetadata], 
                      [LiteralPath, System.Management.Automation.ParameterMetad
                      ata], [Name, System.Management.Automation.ParameterMetada
                      ta], [Destination, System.Management.Automation.Parameter
                      Metadata]...}
ParameterSets       : {[-Path] <String[]> [-Destination] <String> [-Name] <Stri
                      ng> [-PassThru] [-Force] [-Filter <String>] [-Include <St
                      ring[]>] [-Exclude <String[]>] [-Credential <PSCredential
                      >] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] 
                      [-WarningAction <ActionPreference>] [-ErrorVariable <Stri
                      ng>] [-WarningVariable <String>] [-OutVariable <String>] 
                      [-OutBuffer <Int32>] [-WhatIf] [-Confirm] [-UseTransactio
                      n], [-LiteralPath] <String[]> [-Destination] <String> [-N
                      ame] <String> [-PassThru] [-Force] [-Filter <String>] [-I
                      nclude <String[]>] [-Exclude <String[]>] [-Credential <PS
                      Credential>] [-Verbose] [-Debug] [-ErrorAction <ActionPre
                      ference>] [-WarningAction <ActionPreference>] [-ErrorVari
                      able <String>] [-WarningVariable <String>] [-OutVariable 
                      <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm] [-Use
                      Transaction]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113293
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll

Name              : cp
CommandType       : Alias
Definition        : Copy-Item
ReferencedCommand : Copy-Item
ResolvedCommand   : Copy-Item

Name              : cpi
CommandType       : Alias
Definition        : Copy-Item
ReferencedCommand : Copy-Item
ResolvedCommand   : Copy-Item

Name              : cpp
CommandType       : Alias
Definition        : Copy-ItemProperty
ReferencedCommand : Copy-ItemProperty
ResolvedCommand   : Copy-ItemProperty

Name              : cvpa
CommandType       : Alias
Definition        : Convert-Path
ReferencedCommand : Convert-Path
ResolvedCommand   : Convert-Path


ScriptBlock         : Set-Location D:
CmdletBinding       : False
DefaultParameterSet : 
Definition          : Set-Location D:
Options             : None
Description         : 
OutputType          : {}
Name                : D:
CommandType         : Function
Visibility          : Public
ModuleName          : 
Module              : 
Parameters          : {}
ParameterSets       : {}
HelpUri             : 

Name              : dbp
CommandType       : Alias
Definition        : Disable-PSBreakpoint
ReferencedCommand : Disable-PSBreakpoint
ResolvedCommand   : Disable-PSBreakpoint


Verb                : Debug
Noun                : Process
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.DebugProcessCommand
Definition          : Debug-Process [-Name] <String[]> [-Verbose] [-Debug] [-Er
                      rorAction <ActionPreference>] [-WarningAction <ActionPref
                      erence>] [-ErrorVariable <String>] [-WarningVariable <Str
                      ing>] [-OutVariable <String>] [-OutBuffer <Int32>] [-What
                      If] [-Confirm]
                      Debug-Process [-Id] <Int32[]> [-Verbose] [-Debug] [-Error
                      Action <ActionPreference>] [-WarningAction <ActionPrefere
                      nce>] [-ErrorVariable <String>] [-WarningVariable <String
                      >] [-OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf]
                       [-Confirm]
                      Debug-Process -InputObject <Process[]> [-Verbose] [-Debug
                      ] [-ErrorAction <ActionPreference>] [-WarningAction <Acti
                      onPreference>] [-ErrorVariable <String>] [-WarningVariabl
                      e <String>] [-OutVariable <String>] [-OutBuffer <Int32>] 
                      [-WhatIf] [-Confirm]
                      
DefaultParameterSet : Name
OutputType          : {}
Name                : Debug-Process
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[Id, System.Management.Automation.ParameterMetadata], [N
                      ame, System.Management.Automation.ParameterMetadata], [In
                      putObject, System.Management.Automation.ParameterMetadata
                      ], [Verbose, System.Management.Automation.ParameterMetada
                      ta]...}
ParameterSets       : {[-Name] <String[]> [-Verbose] [-Debug] [-ErrorAction <Ac
                      tionPreference>] [-WarningAction <ActionPreference>] [-Er
                      rorVariable <String>] [-WarningVariable <String>] [-OutVa
                      riable <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm
                      ], [-Id] <Int32[]> [-Verbose] [-Debug] [-ErrorAction <Act
                      ionPreference>] [-WarningAction <ActionPreference>] [-Err
                      orVariable <String>] [-WarningVariable <String>] [-OutVar
                      iable <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm]
                      , -InputObject <Process[]> [-Verbose] [-Debug] [-ErrorAct
                      ion <ActionPreference>] [-WarningAction <ActionPreference
                      >] [-ErrorVariable <String>] [-WarningVariable <String>] 
                      [-OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf] [-
                      Confirm]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=135206
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll

Name              : del
CommandType       : Alias
Definition        : Remove-Item
ReferencedCommand : Remove-Item
ResolvedCommand   : Remove-Item

Name              : diff
CommandType       : Alias
Definition        : Compare-Object
ReferencedCommand : Compare-Object
ResolvedCommand   : Compare-Object

Name              : dir
CommandType       : Alias
Definition        : Get-ChildItem
ReferencedCommand : Get-ChildItem
ResolvedCommand   : Get-ChildItem


Verb                : Disable
Noun                : ComputerRestore
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.DisableComputerRestoreComma
                      nd
Definition          : Disable-ComputerRestore [-Drive] <String[]> [-Verbose] [-
                      Debug] [-ErrorAction <ActionPreference>] [-WarningAction 
                      <ActionPreference>] [-ErrorVariable <String>] [-WarningVa
                      riable <String>] [-OutVariable <String>] [-OutBuffer <Int
                      32>] [-WhatIf] [-Confirm]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Disable-ComputerRestore
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[Drive, System.Management.Automation.ParameterMetadata],
                       [Verbose, System.Management.Automation.ParameterMetadata
                      ], [Debug, System.Management.Automation.ParameterMetadata
                      ], [ErrorAction, System.Management.Automation.ParameterMe
                      tadata]...}
ParameterSets       : {[-Drive] <String[]> [-Verbose] [-Debug] [-ErrorAction <A
                      ctionPreference>] [-WarningAction <ActionPreference>] [-E
                      rrorVariable <String>] [-WarningVariable <String>] [-OutV
                      ariable <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confir
                      m]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=135207
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : Disable
Noun                : PSBreakpoint
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.DisablePSBreakpointCommand
Definition          : Disable-PSBreakpoint [-Breakpoint] <Breakpoint[]> [-PassT
                      hru] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>
                      ] [-WarningAction <ActionPreference>] [-ErrorVariable <St
                      ring>] [-WarningVariable <String>] [-OutVariable <String>
                      ] [-OutBuffer <Int32>] [-WhatIf] [-Confirm]
                      Disable-PSBreakpoint [-Id] <Int32[]> [-PassThru] [-Verbos
                      e] [-Debug] [-ErrorAction <ActionPreference>] [-WarningAc
                      tion <ActionPreference>] [-ErrorVariable <String>] [-Warn
                      ingVariable <String>] [-OutVariable <String>] [-OutBuffer
                       <Int32>] [-WhatIf] [-Confirm]
                      
DefaultParameterSet : Breakpoint
OutputType          : {System.Management.Automation.Breakpoint}
Name                : Disable-PSBreakpoint
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[PassThru, System.Management.Automation.ParameterMetadat
                      a], [Breakpoint, System.Management.Automation.ParameterMe
                      tadata], [Id, System.Management.Automation.ParameterMetad
                      ata], [Verbose, System.Management.Automation.ParameterMet
                      adata]...}
ParameterSets       : {[-Breakpoint] <Breakpoint[]> [-PassThru] [-Verbose] [-De
                      bug] [-ErrorAction <ActionPreference>] [-WarningAction <A
                      ctionPreference>] [-ErrorVariable <String>] [-WarningVari
                      able <String>] [-OutVariable <String>] [-OutBuffer <Int32
                      >] [-WhatIf] [-Confirm], [-Id] <Int32[]> [-PassThru] [-Ve
                      rbose] [-Debug] [-ErrorAction <ActionPreference>] [-Warni
                      ngAction <ActionPreference>] [-ErrorVariable <String>] [-
                      WarningVariable <String>] [-OutVariable <String>] [-OutBu
                      ffer <Int32>] [-WhatIf] [-Confirm]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113294
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


ScriptBlock         : 
                      [CmdletBinding(SupportsShouldProcess=$true, ConfirmImpact
                      ="High")]
                      param(
                          [Parameter()]
                          [switch]
                          $force = ($false)
                      )
                      process {
                      
                          # Disable all Session Configurations
                          try {
                            $PSBoundParameters.Add("Name","*")
                            Disable-PSSessionConfiguration @PSBoundParameters
                          } catch {
                             throw
                          }     
                      
                      }
                      
CmdletBinding       : True
DefaultParameterSet : 
Definition          : 
                      [CmdletBinding(SupportsShouldProcess=$true, ConfirmImpact
                      ="High")]
                      param(
                          [Parameter()]
                          [switch]
                          $force = ($false)
                      )
                      process {
                      
                          # Disable all Session Configurations
                          try {
                            $PSBoundParameters.Add("Name","*")
                            Disable-PSSessionConfiguration @PSBoundParameters
                          } catch {
                             throw
                          }     
                      
                      }
                      
Options             : None
Description         : 
OutputType          : {}
Name                : Disable-PSRemoting
CommandType         : Function
Visibility          : Public
ModuleName          : 
Module              : 
Parameters          : {[force, System.Management.Automation.ParameterMetadata],
                       [Verbose, System.Management.Automation.ParameterMetadata
                      ], [Debug, System.Management.Automation.ParameterMetadata
                      ], [ErrorAction, System.Management.Automation.ParameterMe
                      tadata]...}
ParameterSets       : {[-force] [-Verbose] [-Debug] [-ErrorAction <ActionPrefer
                      ence>] [-WarningAction <ActionPreference>] [-ErrorVariabl
                      e <String>] [-WarningVariable <String>] [-OutVariable <St
                      ring>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=144298


Verb                : Disable
Noun                : PSSessionConfiguration
HelpFile            : System.Management.Automation.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Core
ImplementingType    : Microsoft.PowerShell.Commands.DisablePSSessionConfigurati
                      onCommand
Definition          : Disable-PSSessionConfiguration [[-Name] <String[]>] [-For
                      ce] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>]
                       [-WarningAction <ActionPreference>] [-ErrorVariable <Str
                      ing>] [-WarningVariable <String>] [-OutVariable <String>]
                       [-OutBuffer <Int32>] [-WhatIf] [-Confirm]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Disable-PSSessionConfiguration
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Core
Module              : 
Parameters          : {[Name, System.Management.Automation.ParameterMetadata], 
                      [Force, System.Management.Automation.ParameterMetadata], 
                      [Verbose, System.Management.Automation.ParameterMetadata]
                      , [Debug, System.Management.Automation.ParameterMetadata]
                      ...}
ParameterSets       : {[[-Name] <String[]>] [-Force] [-Verbose] [-Debug] [-Erro
                      rAction <ActionPreference>] [-WarningAction <ActionPrefer
                      ence>] [-ErrorVariable <String>] [-WarningVariable <Strin
                      g>] [-OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf
                      ] [-Confirm]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=144299
DLL                 : C:\Windows\assembly\GAC_MSIL\System.Management.Automation
                      \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d
                      ll


Verb                : Disable
Noun                : WSManCredSSP
HelpFile            : Microsoft.WSMan.Management.dll-Help.xml
PSSnapIn            : Microsoft.WSMan.Management
ImplementingType    : Microsoft.WSMan.Management.DisableWSManCredSSPCommand
Definition          : Disable-WSManCredSSP [-Role] <String> [-Verbose] [-Debug]
                       [-ErrorAction <ActionPreference>] [-WarningAction <Actio
                      nPreference>] [-ErrorVariable <String>] [-WarningVariable
                       <String>] [-OutVariable <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Disable-WSManCredSSP
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.WSMan.Management
Module              : 
Parameters          : {[Role, System.Management.Automation.ParameterMetadata], 
                      [Verbose, System.Management.Automation.ParameterMetadata]
                      , [Debug, System.Management.Automation.ParameterMetadata]
                      , [ErrorAction, System.Management.Automation.ParameterMet
                      adata]...}
ParameterSets       : {[-Role] <String> [-Verbose] [-Debug] [-ErrorAction <Acti
                      onPreference>] [-WarningAction <ActionPreference>] [-Erro
                      rVariable <String>] [-WarningVariable <String>] [-OutVari
                      able <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkId=141438
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.WSMan.Management\1
                      .0.0.0__31bf3856ad364e35\Microsoft.WSMan.Management.dll


Verb                : Disconnect
Noun                : WSMan
HelpFile            : Microsoft.WSMan.Management.dll-Help.xml
PSSnapIn            : Microsoft.WSMan.Management
ImplementingType    : Microsoft.WSMan.Management.DisconnectWSManCommand
Definition          : Disconnect-WSMan [[-ComputerName] <String>] [-Verbose] [-
                      Debug] [-ErrorAction <ActionPreference>] [-WarningAction 
                      <ActionPreference>] [-ErrorVariable <String>] [-WarningVa
                      riable <String>] [-OutVariable <String>] [-OutBuffer <Int
                      32>]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Disconnect-WSMan
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.WSMan.Management
Module              : 
Parameters          : {[ComputerName, System.Management.Automation.ParameterMet
                      adata], [Verbose, System.Management.Automation.ParameterM
                      etadata], [Debug, System.Management.Automation.ParameterM
                      etadata], [ErrorAction, System.Management.Automation.Para
                      meterMetadata]...}
ParameterSets       : {[[-ComputerName] <String>] [-Verbose] [-Debug] [-ErrorAc
                      tion <ActionPreference>] [-WarningAction <ActionPreferenc
                      e>] [-ErrorVariable <String>] [-WarningVariable <String>]
                       [-OutVariable <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkId=141439
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.WSMan.Management\1
                      .0.0.0__31bf3856ad364e35\Microsoft.WSMan.Management.dll


ScriptBlock         : Set-Location E:
CmdletBinding       : False
DefaultParameterSet : 
Definition          : Set-Location E:
Options             : None
Description         : 
OutputType          : {}
Name                : E:
CommandType         : Function
Visibility          : Public
ModuleName          : 
Module              : 
Parameters          : {}
ParameterSets       : {}
HelpUri             : 

Name              : ebp
CommandType       : Alias
Definition        : Enable-PSBreakpoint
ReferencedCommand : Enable-PSBreakpoint
ResolvedCommand   : Enable-PSBreakpoint

Name              : echo
CommandType       : Alias
Definition        : Write-Output
ReferencedCommand : Write-Output
ResolvedCommand   : Write-Output


Verb                : Enable
Noun                : ComputerRestore
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.EnableComputerRestoreComman
                      d
Definition          : Enable-ComputerRestore [-Drive] <String[]> [-Verbose] [-D
                      ebug] [-ErrorAction <ActionPreference>] [-WarningAction <
                      ActionPreference>] [-ErrorVariable <String>] [-WarningVar
                      iable <String>] [-OutVariable <String>] [-OutBuffer <Int3
                      2>] [-WhatIf] [-Confirm]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Enable-ComputerRestore
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[Drive, System.Management.Automation.ParameterMetadata],
                       [Verbose, System.Management.Automation.ParameterMetadata
                      ], [Debug, System.Management.Automation.ParameterMetadata
                      ], [ErrorAction, System.Management.Automation.ParameterMe
                      tadata]...}
ParameterSets       : {[-Drive] <String[]> [-Verbose] [-Debug] [-ErrorAction <A
                      ctionPreference>] [-WarningAction <ActionPreference>] [-E
                      rrorVariable <String>] [-WarningVariable <String>] [-OutV
                      ariable <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confir
                      m]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=135209
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : Enable
Noun                : PSBreakpoint
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.EnablePSBreakpointCommand
Definition          : Enable-PSBreakpoint [-Id] <Int32[]> [-PassThru] [-Verbose
                      ] [-Debug] [-ErrorAction <ActionPreference>] [-WarningAct
                      ion <ActionPreference>] [-ErrorVariable <String>] [-Warni
                      ngVariable <String>] [-OutVariable <String>] [-OutBuffer 
                      <Int32>] [-WhatIf] [-Confirm]
                      Enable-PSBreakpoint [-Breakpoint] <Breakpoint[]> [-PassTh
                      ru] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>]
                       [-WarningAction <ActionPreference>] [-ErrorVariable <Str
                      ing>] [-WarningVariable <String>] [-OutVariable <String>]
                       [-OutBuffer <Int32>] [-WhatIf] [-Confirm]
                      
DefaultParameterSet : Id
OutputType          : {System.Management.Automation.Breakpoint}
Name                : Enable-PSBreakpoint
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[PassThru, System.Management.Automation.ParameterMetadat
                      a], [Breakpoint, System.Management.Automation.ParameterMe
                      tadata], [Id, System.Management.Automation.ParameterMetad
                      ata], [Verbose, System.Management.Automation.ParameterMet
                      adata]...}
ParameterSets       : {[-Id] <Int32[]> [-PassThru] [-Verbose] [-Debug] [-ErrorA
                      ction <ActionPreference>] [-WarningAction <ActionPreferen
                      ce>] [-ErrorVariable <String>] [-WarningVariable <String>
                      ] [-OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf] 
                      [-Confirm], [-Breakpoint] <Breakpoint[]> [-PassThru] [-Ve
                      rbose] [-Debug] [-ErrorAction <ActionPreference>] [-Warni
                      ngAction <ActionPreference>] [-ErrorVariable <String>] [-
                      WarningVariable <String>] [-OutVariable <String>] [-OutBu
                      ffer <Int32>] [-WhatIf] [-Confirm]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113295
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : Enable
Noun                : PSRemoting
HelpFile            : System.Management.Automation.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Core
ImplementingType    : Microsoft.PowerShell.Commands.EnablePSRemotingCommand
Definition          : Enable-PSRemoting [-Force] [-Verbose] [-Debug] [-ErrorAct
                      ion <ActionPreference>] [-WarningAction <ActionPreference
                      >] [-ErrorVariable <String>] [-WarningVariable <String>] 
                      [-OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf] [-
                      Confirm]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Enable-PSRemoting
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Core
Module              : 
Parameters          : {[Force, System.Management.Automation.ParameterMetadata],
                       [Verbose, System.Management.Automation.ParameterMetadata
                      ], [Debug, System.Management.Automation.ParameterMetadata
                      ], [ErrorAction, System.Management.Automation.ParameterMe
                      tadata]...}
ParameterSets       : {[-Force] [-Verbose] [-Debug] [-ErrorAction <ActionPrefer
                      ence>] [-WarningAction <ActionPreference>] [-ErrorVariabl
                      e <String>] [-WarningVariable <String>] [-OutVariable <St
                      ring>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=144300
DLL                 : C:\Windows\assembly\GAC_MSIL\System.Management.Automation
                      \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d
                      ll


Verb                : Enable
Noun                : PSSessionConfiguration
HelpFile            : System.Management.Automation.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Core
ImplementingType    : Microsoft.PowerShell.Commands.EnablePSSessionConfiguratio
                      nCommand
Definition          : Enable-PSSessionConfiguration [[-Name] <String[]>] [-Forc
                      e] [-SecurityDescriptorSddl <String>] [-Verbose] [-Debug]
                       [-ErrorAction <ActionPreference>] [-WarningAction <Actio
                      nPreference>] [-ErrorVariable <String>] [-WarningVariable
                       <String>] [-OutVariable <String>] [-OutBuffer <Int32>] [
                      -WhatIf] [-Confirm]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Enable-PSSessionConfiguration
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Core
Module              : 
Parameters          : {[Name, System.Management.Automation.ParameterMetadata], 
                      [Force, System.Management.Automation.ParameterMetadata], 
                      [SecurityDescriptorSddl, System.Management.Automation.Par
                      ameterMetadata], [Verbose, System.Management.Automation.P
                      arameterMetadata]...}
ParameterSets       : {[[-Name] <String[]>] [-Force] [-SecurityDescriptorSddl <
                      String>] [-Verbose] [-Debug] [-ErrorAction <ActionPrefere
                      nce>] [-WarningAction <ActionPreference>] [-ErrorVariable
                       <String>] [-WarningVariable <String>] [-OutVariable <Str
                      ing>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=144301
DLL                 : C:\Windows\assembly\GAC_MSIL\System.Management.Automation
                      \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d
                      ll


Verb                : Enable
Noun                : WSManCredSSP
HelpFile            : Microsoft.WSMan.Management.dll-Help.xml
PSSnapIn            : Microsoft.WSMan.Management
ImplementingType    : Microsoft.WSMan.Management.EnableWSManCredSSPCommand
Definition          : Enable-WSManCredSSP [-Role] <String> [[-DelegateComputer]
                       <String[]>] [-Force] [-Verbose] [-Debug] [-ErrorAction <
                      ActionPreference>] [-WarningAction <ActionPreference>] [-
                      ErrorVariable <String>] [-WarningVariable <String>] [-Out
                      Variable <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Enable-WSManCredSSP
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.WSMan.Management
Module              : 
Parameters          : {[DelegateComputer, System.Management.Automation.Paramete
                      rMetadata], [Force, System.Management.Automation.Paramete
                      rMetadata], [Role, System.Management.Automation.Parameter
                      Metadata], [Verbose, System.Management.Automation.Paramet
                      erMetadata]...}
ParameterSets       : {[-Role] <String> [[-DelegateComputer] <String[]>] [-Forc
                      e] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] 
                      [-WarningAction <ActionPreference>] [-ErrorVariable <Stri
                      ng>] [-WarningVariable <String>] [-OutVariable <String>] 
                      [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkId=141442
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.WSMan.Management\1
                      .0.0.0__31bf3856ad364e35\Microsoft.WSMan.Management.dll


Verb                : Enter
Noun                : PSSession
HelpFile            : System.Management.Automation.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Core
ImplementingType    : Microsoft.PowerShell.Commands.EnterPSSessionCommand
Definition          : Enter-PSSession [-ComputerName] <String> [-Credential <PS
                      Credential>] [-Port <Int32>] [-UseSSL] [-ConfigurationNam
                      e <String>] [-ApplicationName <String>] [-SessionOption <
                      PSSessionOption>] [-Authentication <AuthenticationMechani
                      sm>] [-CertificateThumbprint <String>] [-Verbose] [-Debug
                      ] [-ErrorAction <ActionPreference>] [-WarningAction <Acti
                      onPreference>] [-ErrorVariable <String>] [-WarningVariabl
                      e <String>] [-OutVariable <String>] [-OutBuffer <Int32>]
                      Enter-PSSession [[-Session] <PSSession>] [-Verbose] [-Deb
                      ug] [-ErrorAction <ActionPreference>] [-WarningAction <Ac
                      tionPreference>] [-ErrorVariable <String>] [-WarningVaria
                      ble <String>] [-OutVariable <String>] [-OutBuffer <Int32>
                      ]
                      Enter-PSSession [[-ConnectionUri] <Uri>] [-Credential <PS
                      Credential>] [-ConfigurationName <String>] [-AllowRedirec
                      tion] [-SessionOption <PSSessionOption>] [-Authentication
                       <AuthenticationMechanism>] [-CertificateThumbprint <Stri
                      ng>] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>
                      ] [-WarningAction <ActionPreference>] [-ErrorVariable <St
                      ring>] [-WarningVariable <String>] [-OutVariable <String>
                      ] [-OutBuffer <Int32>]
                      Enter-PSSession [-InstanceId <Guid>] [-Verbose] [-Debug] 
                      [-ErrorAction <ActionPreference>] [-WarningAction <Action
                      Preference>] [-ErrorVariable <String>] [-WarningVariable 
                      <String>] [-OutVariable <String>] [-OutBuffer <Int32>]
                      Enter-PSSession [[-Id] <Int32>] [-Verbose] [-Debug] [-Err
                      orAction <ActionPreference>] [-WarningAction <ActionPrefe
                      rence>] [-ErrorVariable <String>] [-WarningVariable <Stri
                      ng>] [-OutVariable <String>] [-OutBuffer <Int32>]
                      Enter-PSSession [-Name <String>] [-Verbose] [-Debug] [-Er
                      rorAction <ActionPreference>] [-WarningAction <ActionPref
                      erence>] [-ErrorVariable <String>] [-WarningVariable <Str
                      ing>] [-OutVariable <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : ComputerName
OutputType          : {}
Name                : Enter-PSSession
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Core
Module              : 
Parameters          : {[ComputerName, System.Management.Automation.ParameterMet
                      adata], [Session, System.Management.Automation.ParameterM
                      etadata], [ConnectionUri, System.Management.Automation.Pa
                      rameterMetadata], [InstanceId, System.Management.Automati
                      on.ParameterMetadata]...}
ParameterSets       : {[-ComputerName] <String> [-Credential <PSCredential>] [-
                      Port <Int32>] [-UseSSL] [-ConfigurationName <String>] [-A
                      pplicationName <String>] [-SessionOption <PSSessionOption
                      >] [-Authentication <AuthenticationMechanism>] [-Certific
                      ateThumbprint <String>] [-Verbose] [-Debug] [-ErrorAction
                       <ActionPreference>] [-WarningAction <ActionPreference>] 
                      [-ErrorVariable <String>] [-WarningVariable <String>] [-O
                      utVariable <String>] [-OutBuffer <Int32>], [[-Session] <P
                      SSession>] [-Verbose] [-Debug] [-ErrorAction <ActionPrefe
                      rence>] [-WarningAction <ActionPreference>] [-ErrorVariab
                      le <String>] [-WarningVariable <String>] [-OutVariable <S
                      tring>] [-OutBuffer <Int32>], [[-ConnectionUri] <Uri>] [-
                      Credential <PSCredential>] [-ConfigurationName <String>] 
                      [-AllowRedirection] [-SessionOption <PSSessionOption>] [-
                      Authentication <AuthenticationMechanism>] [-CertificateTh
                      umbprint <String>] [-Verbose] [-Debug] [-ErrorAction <Act
                      ionPreference>] [-WarningAction <ActionPreference>] [-Err
                      orVariable <String>] [-WarningVariable <String>] [-OutVar
                      iable <String>] [-OutBuffer <Int32>], [-InstanceId <Guid>
                      ] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [
                      -WarningAction <ActionPreference>] [-ErrorVariable <Strin
                      g>] [-WarningVariable <String>] [-OutVariable <String>] [
                      -OutBuffer <Int32>]...}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=135210
DLL                 : C:\Windows\assembly\GAC_MSIL\System.Management.Automation
                      \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d
                      ll

Name              : epal
CommandType       : Alias
Definition        : Export-Alias
ReferencedCommand : Export-Alias
ResolvedCommand   : Export-Alias

Name              : epcsv
CommandType       : Alias
Definition        : Export-Csv
ReferencedCommand : Export-Csv
ResolvedCommand   : Export-Csv

Name              : epsn
CommandType       : Alias
Definition        : Export-PSSession
ReferencedCommand : Export-PSSession
ResolvedCommand   : Export-PSSession

Name              : erase
CommandType       : Alias
Definition        : Remove-Item
ReferencedCommand : Remove-Item
ResolvedCommand   : Remove-Item

Name              : etsn
CommandType       : Alias
Definition        : Enter-PSSession
ReferencedCommand : Enter-PSSession
ResolvedCommand   : Enter-PSSession


Verb                : Exit
Noun                : PSSession
HelpFile            : System.Management.Automation.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Core
ImplementingType    : Microsoft.PowerShell.Commands.ExitPSSessionCommand
Definition          : Exit-PSSession [-Verbose] [-Debug] [-ErrorAction <ActionP
                      reference>] [-WarningAction <ActionPreference>] [-ErrorVa
                      riable <String>] [-WarningVariable <String>] [-OutVariabl
                      e <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Exit-PSSession
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Core
Module              : 
Parameters          : {[Verbose, System.Management.Automation.ParameterMetadata
                      ], [Debug, System.Management.Automation.ParameterMetadata
                      ], [ErrorAction, System.Management.Automation.ParameterMe
                      tadata], [WarningAction, System.Management.Automation.Par
                      ameterMetadata]...}
ParameterSets       : {[-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-
                      WarningAction <ActionPreference>] [-ErrorVariable <String
                      >] [-WarningVariable <String>] [-OutVariable <String>] [-
                      OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=135212
DLL                 : C:\Windows\assembly\GAC_MSIL\System.Management.Automation
                      \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d
                      ll


Verb                : Export
Noun                : Alias
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.ExportAliasCommand
Definition          : Export-Alias [-Path] <String> [[-Name] <String[]>] [-Pass
                      Thru] [-As <ExportAliasFormat>] [-Append] [-Force] [-NoCl
                      obber] [-Description <String>] [-Scope <String>] [-Verbos
                      e] [-Debug] [-ErrorAction <ActionPreference>] [-WarningAc
                      tion <ActionPreference>] [-ErrorVariable <String>] [-Warn
                      ingVariable <String>] [-OutVariable <String>] [-OutBuffer
                       <Int32>] [-WhatIf] [-Confirm]
                      
DefaultParameterSet : 
OutputType          : {System.Management.Automation.AliasInfo}
Name                : Export-Alias
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[Path, System.Management.Automation.ParameterMetadata], 
                      [Name, System.Management.Automation.ParameterMetadata], [
                      PassThru, System.Management.Automation.ParameterMetadata]
                      , [As, System.Management.Automation.ParameterMetadata]...
                      }
ParameterSets       : {[-Path] <String> [[-Name] <String[]>] [-PassThru] [-As <
                      ExportAliasFormat>] [-Append] [-Force] [-NoClobber] [-Des
                      cription <String>] [-Scope <String>] [-Verbose] [-Debug] 
                      [-ErrorAction <ActionPreference>] [-WarningAction <Action
                      Preference>] [-ErrorVariable <String>] [-WarningVariable 
                      <String>] [-OutVariable <String>] [-OutBuffer <Int32>] [-
                      WhatIf] [-Confirm]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113296
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : Export
Noun                : Clixml
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.ExportClixmlCommand
Definition          : Export-Clixml [-Path] <String> [-Depth <Int32>] -InputObj
                      ect <PSObject> [-Force] [-NoClobber] [-Encoding <String>]
                       [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-
                      WarningAction <ActionPreference>] [-ErrorVariable <String
                      >] [-WarningVariable <String>] [-OutVariable <String>] [-
                      OutBuffer <Int32>] [-WhatIf] [-Confirm]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Export-Clixml
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[Depth, System.Management.Automation.ParameterMetadata],
                       [Path, System.Management.Automation.ParameterMetadata], 
                      [InputObject, System.Management.Automation.ParameterMetad
                      ata], [Force, System.Management.Automation.ParameterMetad
                      ata]...}
ParameterSets       : {[-Path] <String> [-Depth <Int32>] -InputObject <PSObject
                      > [-Force] [-NoClobber] [-Encoding <String>] [-Verbose] [
                      -Debug] [-ErrorAction <ActionPreference>] [-WarningAction
                       <ActionPreference>] [-ErrorVariable <String>] [-WarningV
                      ariable <String>] [-OutVariable <String>] [-OutBuffer <In
                      t32>] [-WhatIf] [-Confirm]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113297
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : Export
Noun                : Console
HelpFile            : System.Management.Automation.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Core
ImplementingType    : Microsoft.PowerShell.Commands.ExportConsoleCommand
Definition          : Export-Console [[-Path] <String>] [-Force] [-NoClobber] [
                      -Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-Wa
                      rningAction <ActionPreference>] [-ErrorVariable <String>]
                       [-WarningVariable <String>] [-OutVariable <String>] [-Ou
                      tBuffer <Int32>] [-WhatIf] [-Confirm]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Export-Console
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Core
Module              : 
Parameters          : {[Path, System.Management.Automation.ParameterMetadata], 
                      [Force, System.Management.Automation.ParameterMetadata], 
                      [NoClobber, System.Management.Automation.ParameterMetadat
                      a], [Verbose, System.Management.Automation.ParameterMetad
                      ata]...}
ParameterSets       : {[[-Path] <String>] [-Force] [-NoClobber] [-Verbose] [-De
                      bug] [-ErrorAction <ActionPreference>] [-WarningAction <A
                      ctionPreference>] [-ErrorVariable <String>] [-WarningVari
                      able <String>] [-OutVariable <String>] [-OutBuffer <Int32
                      >] [-WhatIf] [-Confirm]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113298
DLL                 : C:\Windows\assembly\GAC_MSIL\System.Management.Automation
                      \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d
                      ll


Verb                : Export
Noun                : Counter
HelpFile            : Microsoft.PowerShell.Commands.Diagnostics.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Diagnostics
ImplementingType    : Microsoft.PowerShell.Commands.ExportCounterCommand
Definition          : Export-Counter [-Path] <String> [-FileFormat <String>] [-
                      MaxSize <UInt32>] -InputObject <PerformanceCounterSampleS
                      et[]> [-Force] [-Circular] [-Verbose] [-Debug] [-ErrorAct
                      ion <ActionPreference>] [-WarningAction <ActionPreference
                      >] [-ErrorVariable <String>] [-WarningVariable <String>] 
                      [-OutVariable <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : ExportCounterSet
OutputType          : {}
Name                : Export-Counter
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Diagnostics
Module              : 
Parameters          : {[Path, System.Management.Automation.ParameterMetadata], 
                      [FileFormat, System.Management.Automation.ParameterMetada
                      ta], [MaxSize, System.Management.Automation.ParameterMeta
                      data], [InputObject, System.Management.Automation.Paramet
                      erMetadata]...}
ParameterSets       : {[-Path] <String> [-FileFormat <String>] [-MaxSize <UInt3
                      2>] -InputObject <PerformanceCounterSampleSet[]> [-Force]
                       [-Circular] [-Verbose] [-Debug] [-ErrorAction <ActionPre
                      ference>] [-WarningAction <ActionPreference>] [-ErrorVari
                      able <String>] [-WarningVariable <String>] [-OutVariable 
                      <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=138337
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Diagnostics\1.0.0.0__31bf3856ad364e35\Microsoft.PowerSh
                      ell.Commands.Diagnostics.dll


Verb                : Export
Noun                : Csv
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.ExportCsvCommand
Definition          : Export-Csv [-Path] <String> [[-Delimiter] <Char>] -InputO
                      bject <PSObject> [-Force] [-NoClobber] [-Encoding <String
                      >] [-NoTypeInformation] [-Verbose] [-Debug] [-ErrorAction
                       <ActionPreference>] [-WarningAction <ActionPreference>] 
                      [-ErrorVariable <String>] [-WarningVariable <String>] [-O
                      utVariable <String>] [-OutBuffer <Int32>] [-WhatIf] [-Con
                      firm]
                      Export-Csv [-Path] <String> -InputObject <PSObject> [-For
                      ce] [-NoClobber] [-Encoding <String>] [-UseCulture] [-NoT
                      ypeInformation] [-Verbose] [-Debug] [-ErrorAction <Action
                      Preference>] [-WarningAction <ActionPreference>] [-ErrorV
                      ariable <String>] [-WarningVariable <String>] [-OutVariab
                      le <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm]
                      
DefaultParameterSet : Delimiter
OutputType          : {}
Name                : Export-Csv
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[InputObject, System.Management.Automation.ParameterMeta
                      data], [Path, System.Management.Automation.ParameterMetad
                      ata], [Force, System.Management.Automation.ParameterMetad
                      ata], [NoClobber, System.Management.Automation.ParameterM
                      etadata]...}
ParameterSets       : {[-Path] <String> [[-Delimiter] <Char>] -InputObject <PSO
                      bject> [-Force] [-NoClobber] [-Encoding <String>] [-NoTyp
                      eInformation] [-Verbose] [-Debug] [-ErrorAction <ActionPr
                      eference>] [-WarningAction <ActionPreference>] [-ErrorVar
                      iable <String>] [-WarningVariable <String>] [-OutVariable
                       <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm], [-P
                      ath] <String> -InputObject <PSObject> [-Force] [-NoClobbe
                      r] [-Encoding <String>] [-UseCulture] [-NoTypeInformation
                      ] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [
                      -WarningAction <ActionPreference>] [-ErrorVariable <Strin
                      g>] [-WarningVariable <String>] [-OutVariable <String>] [
                      -OutBuffer <Int32>] [-WhatIf] [-Confirm]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113299
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : Export
Noun                : FormatData
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.ExportFormatDataCommand
Definition          : Export-FormatData [-InputObject <ExtendedTypeDefinition[]
                      >] [-Path <String>] [-Force] [-NoClobber] [-IncludeScript
                      Block] [-Verbose] [-Debug] [-ErrorAction <ActionPreferenc
                      e>] [-WarningAction <ActionPreference>] [-ErrorVariable <
                      String>] [-WarningVariable <String>] [-OutVariable <Strin
                      g>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Export-FormatData
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[InputObject, System.Management.Automation.ParameterMeta
                      data], [Path, System.Management.Automation.ParameterMetad
                      ata], [Force, System.Management.Automation.ParameterMetad
                      ata], [NoClobber, System.Management.Automation.ParameterM
                      etadata]...}
ParameterSets       : {[-InputObject <ExtendedTypeDefinition[]>] [-Path <String
                      >] [-Force] [-NoClobber] [-IncludeScriptBlock] [-Verbose]
                       [-Debug] [-ErrorAction <ActionPreference>] [-WarningActi
                      on <ActionPreference>] [-ErrorVariable <String>] [-Warnin
                      gVariable <String>] [-OutVariable <String>] [-OutBuffer <
                      Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=144302
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : Export
Noun                : ModuleMember
HelpFile            : System.Management.Automation.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Core
ImplementingType    : Microsoft.PowerShell.Commands.ExportModuleMemberCommand
Definition          : Export-ModuleMember [[-Function] <String[]>] [-Cmdlet <St
                      ring[]>] [-Variable <String[]>] [-Alias <String[]>] [-Ver
                      bose] [-Debug] [-ErrorAction <ActionPreference>] [-Warnin
                      gAction <ActionPreference>] [-ErrorVariable <String>] [-W
                      arningVariable <String>] [-OutVariable <String>] [-OutBuf
                      fer <Int32>]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Export-ModuleMember
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Core
Module              : 
Parameters          : {[Function, System.Management.Automation.ParameterMetadat
                      a], [Cmdlet, System.Management.Automation.ParameterMetada
                      ta], [Variable, System.Management.Automation.ParameterMet
                      adata], [Alias, System.Management.Automation.ParameterMet
                      adata]...}
ParameterSets       : {[[-Function] <String[]>] [-Cmdlet <String[]>] [-Variable
                       <String[]>] [-Alias <String[]>] [-Verbose] [-Debug] [-Er
                      rorAction <ActionPreference>] [-WarningAction <ActionPref
                      erence>] [-ErrorVariable <String>] [-WarningVariable <Str
                      ing>] [-OutVariable <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=141551
DLL                 : C:\Windows\assembly\GAC_MSIL\System.Management.Automation
                      \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d
                      ll


Verb                : Export
Noun                : PSSession
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.ExportPSSessionCommand
Definition          : Export-PSSession [-Session] <PSSession> [-OutputModule] <
                      String> [[-CommandName] <String[]>] [[-FormatTypeName] <S
                      tring[]>] [-Force] [-Encoding <String>] [-AllowClobber] [
                      -ArgumentList <Object[]>] [-CommandType <CommandTypes>] [
                      -Module <String[]>] [-Verbose] [-Debug] [-ErrorAction <Ac
                      tionPreference>] [-WarningAction <ActionPreference>] [-Er
                      rorVariable <String>] [-WarningVariable <String>] [-OutVa
                      riable <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Export-PSSession
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[OutputModule, System.Management.Automation.ParameterMet
                      adata], [Force, System.Management.Automation.ParameterMet
                      adata], [Encoding, System.Management.Automation.Parameter
                      Metadata], [CommandName, System.Management.Automation.Par
                      ameterMetadata]...}
ParameterSets       : {[-Session] <PSSession> [-OutputModule] <String> [[-Comma
                      ndName] <String[]>] [[-FormatTypeName] <String[]>] [-Forc
                      e] [-Encoding <String>] [-AllowClobber] [-ArgumentList <O
                      bject[]>] [-CommandType <CommandTypes>] [-Module <String[
                      ]>] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>]
                       [-WarningAction <ActionPreference>] [-ErrorVariable <Str
                      ing>] [-WarningVariable <String>] [-OutVariable <String>]
                       [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=135213
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll

Name              : exsn
CommandType       : Alias
Definition        : Exit-PSSession
ReferencedCommand : Exit-PSSession
ResolvedCommand   : Exit-PSSession


ScriptBlock         : Set-Location F:
CmdletBinding       : False
DefaultParameterSet : 
Definition          : Set-Location F:
Options             : None
Description         : 
OutputType          : {}
Name                : F:
CommandType         : Function
Visibility          : Public
ModuleName          : 
Module              : 
Parameters          : {}
ParameterSets       : {}
HelpUri             : 

Name              : fc
CommandType       : Alias
Definition        : Format-Custom
ReferencedCommand : Format-Custom
ResolvedCommand   : Format-Custom

Name              : fl
CommandType       : Alias
Definition        : Format-List
ReferencedCommand : Format-List
ResolvedCommand   : Format-List

Name              : foreach
CommandType       : Alias
Definition        : ForEach-Object
ReferencedCommand : ForEach-Object
ResolvedCommand   : ForEach-Object


Verb                : ForEach
Noun                : Object
HelpFile            : System.Management.Automation.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Core
ImplementingType    : Microsoft.PowerShell.Commands.ForEachObjectCommand
Definition          : ForEach-Object [-Process] <ScriptBlock[]> [-InputObject <
                      PSObject>] [-Begin <ScriptBlock>] [-End <ScriptBlock>] [-
                      Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-War
                      ningAction <ActionPreference>] [-ErrorVariable <String>] 
                      [-WarningVariable <String>] [-OutVariable <String>] [-Out
                      Buffer <Int32>]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : ForEach-Object
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Core
Module              : 
Parameters          : {[InputObject, System.Management.Automation.ParameterMeta
                      data], [Begin, System.Management.Automation.ParameterMeta
                      data], [Process, System.Management.Automation.ParameterMe
                      tadata], [End, System.Management.Automation.ParameterMeta
                      data]...}
ParameterSets       : {[-Process] <ScriptBlock[]> [-InputObject <PSObject>] [-B
                      egin <ScriptBlock>] [-End <ScriptBlock>] [-Verbose] [-Deb
                      ug] [-ErrorAction <ActionPreference>] [-WarningAction <Ac
                      tionPreference>] [-ErrorVariable <String>] [-WarningVaria
                      ble <String>] [-OutVariable <String>] [-OutBuffer <Int32>
                      ]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113300
DLL                 : C:\Windows\assembly\GAC_MSIL\System.Management.Automation
                      \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d
                      ll


Verb                : Format
Noun                : Custom
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.FormatCustomCommand
Definition          : Format-Custom [[-Property] <Object[]>] [-Depth <Int32>] [
                      -GroupBy <Object>] [-View <String>] [-ShowError] [-Displa
                      yError] [-Force] [-Expand <String>] [-InputObject <PSObje
                      ct>] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>
                      ] [-WarningAction <ActionPreference>] [-ErrorVariable <St
                      ring>] [-WarningVariable <String>] [-OutVariable <String>
                      ] [-OutBuffer <Int32>]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Format-Custom
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[Property, System.Management.Automation.ParameterMetadat
                      a], [Depth, System.Management.Automation.ParameterMetadat
                      a], [GroupBy, System.Management.Automation.ParameterMetad
                      ata], [View, System.Management.Automation.ParameterMetada
                      ta]...}
ParameterSets       : {[[-Property] <Object[]>] [-Depth <Int32>] [-GroupBy <Obj
                      ect>] [-View <String>] [-ShowError] [-DisplayError] [-For
                      ce] [-Expand <String>] [-InputObject <PSObject>] [-Verbos
                      e] [-Debug] [-ErrorAction <ActionPreference>] [-WarningAc
                      tion <ActionPreference>] [-ErrorVariable <String>] [-Warn
                      ingVariable <String>] [-OutVariable <String>] [-OutBuffer
                       <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113301
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : Format
Noun                : List
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.FormatListCommand
Definition          : Format-List [[-Property] <Object[]>] [-GroupBy <Object>] 
                      [-View <String>] [-ShowError] [-DisplayError] [-Force] [-
                      Expand <String>] [-InputObject <PSObject>] [-Verbose] [-D
                      ebug] [-ErrorAction <ActionPreference>] [-WarningAction <
                      ActionPreference>] [-ErrorVariable <String>] [-WarningVar
                      iable <String>] [-OutVariable <String>] [-OutBuffer <Int3
                      2>]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Format-List
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[Property, System.Management.Automation.ParameterMetadat
                      a], [GroupBy, System.Management.Automation.ParameterMetad
                      ata], [View, System.Management.Automation.ParameterMetada
                      ta], [ShowError, System.Management.Automation.ParameterMe
                      tadata]...}
ParameterSets       : {[[-Property] <Object[]>] [-GroupBy <Object>] [-View <Str
                      ing>] [-ShowError] [-DisplayError] [-Force] [-Expand <Str
                      ing>] [-InputObject <PSObject>] [-Verbose] [-Debug] [-Err
                      orAction <ActionPreference>] [-WarningAction <ActionPrefe
                      rence>] [-ErrorVariable <String>] [-WarningVariable <Stri
                      ng>] [-OutVariable <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113302
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : Format
Noun                : Table
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.FormatTableCommand
Definition          : Format-Table [[-Property] <Object[]>] [-AutoSize] [-HideT
                      ableHeaders] [-Wrap] [-GroupBy <Object>] [-View <String>]
                       [-ShowError] [-DisplayError] [-Force] [-Expand <String>]
                       [-InputObject <PSObject>] [-Verbose] [-Debug] [-ErrorAct
                      ion <ActionPreference>] [-WarningAction <ActionPreference
                      >] [-ErrorVariable <String>] [-WarningVariable <String>] 
                      [-OutVariable <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Format-Table
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[AutoSize, System.Management.Automation.ParameterMetadat
                      a], [HideTableHeaders, System.Management.Automation.Param
                      eterMetadata], [Wrap, System.Management.Automation.Parame
                      terMetadata], [Property, System.Management.Automation.Par
                      ameterMetadata]...}
ParameterSets       : {[[-Property] <Object[]>] [-AutoSize] [-HideTableHeaders]
                       [-Wrap] [-GroupBy <Object>] [-View <String>] [-ShowError
                      ] [-DisplayError] [-Force] [-Expand <String>] [-InputObje
                      ct <PSObject>] [-Verbose] [-Debug] [-ErrorAction <ActionP
                      reference>] [-WarningAction <ActionPreference>] [-ErrorVa
                      riable <String>] [-WarningVariable <String>] [-OutVariabl
                      e <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113303
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : Format
Noun                : Wide
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.FormatWideCommand
Definition          : Format-Wide [[-Property] <Object>] [-AutoSize] [-Column <
                      Int32>] [-GroupBy <Object>] [-View <String>] [-ShowError]
                       [-DisplayError] [-Force] [-Expand <String>] [-InputObjec
                      t <PSObject>] [-Verbose] [-Debug] [-ErrorAction <ActionPr
                      eference>] [-WarningAction <ActionPreference>] [-ErrorVar
                      iable <String>] [-WarningVariable <String>] [-OutVariable
                       <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Format-Wide
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[Property, System.Management.Automation.ParameterMetadat
                      a], [AutoSize, System.Management.Automation.ParameterMeta
                      data], [Column, System.Management.Automation.ParameterMet
                      adata], [GroupBy, System.Management.Automation.ParameterM
                      etadata]...}
ParameterSets       : {[[-Property] <Object>] [-AutoSize] [-Column <Int32>] [-G
                      roupBy <Object>] [-View <String>] [-ShowError] [-DisplayE
                      rror] [-Force] [-Expand <String>] [-InputObject <PSObject
                      >] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] 
                      [-WarningAction <ActionPreference>] [-ErrorVariable <Stri
                      ng>] [-WarningVariable <String>] [-OutVariable <String>] 
                      [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113304
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll

Name              : ft
CommandType       : Alias
Definition        : Format-Table
ReferencedCommand : Format-Table
ResolvedCommand   : Format-Table

Name              : fw
CommandType       : Alias
Definition        : Format-Wide
ReferencedCommand : Format-Wide
ResolvedCommand   : Format-Wide


ScriptBlock         : Set-Location G:
CmdletBinding       : False
DefaultParameterSet : 
Definition          : Set-Location G:
Options             : None
Description         : 
OutputType          : {}
Name                : G:
CommandType         : Function
Visibility          : Public
ModuleName          : 
Module              : 
Parameters          : {}
ParameterSets       : {}
HelpUri             : 

Name              : gal
CommandType       : Alias
Definition        : Get-Alias
ReferencedCommand : Get-Alias
ResolvedCommand   : Get-Alias

Name              : gbp
CommandType       : Alias
Definition        : Get-PSBreakpoint
ReferencedCommand : Get-PSBreakpoint
ResolvedCommand   : Get-PSBreakpoint

Name              : gc
CommandType       : Alias
Definition        : Get-Content
ReferencedCommand : Get-Content
ResolvedCommand   : Get-Content

Name              : gci
CommandType       : Alias
Definition        : Get-ChildItem
ReferencedCommand : Get-ChildItem
ResolvedCommand   : Get-ChildItem

Name              : gcm
CommandType       : Alias
Definition        : Get-Command
ReferencedCommand : Get-Command
ResolvedCommand   : Get-Command

Name              : gcs
CommandType       : Alias
Definition        : Get-PSCallStack
ReferencedCommand : Get-PSCallStack
ResolvedCommand   : Get-PSCallStack

Name              : gdr
CommandType       : Alias
Definition        : Get-PSDrive
ReferencedCommand : Get-PSDrive
ResolvedCommand   : Get-PSDrive


Verb                : Get
Noun                : Acl
HelpFile            : Microsoft.PowerShell.Security.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Security
ImplementingType    : Microsoft.PowerShell.Commands.GetAclCommand
Definition          : Get-Acl [[-Path] <String[]>] [-Audit] [-Filter <String>] 
                      [-Include <String[]>] [-Exclude <String[]>] [-Verbose] [-
                      Debug] [-ErrorAction <ActionPreference>] [-WarningAction 
                      <ActionPreference>] [-ErrorVariable <String>] [-WarningVa
                      riable <String>] [-OutVariable <String>] [-OutBuffer <Int
                      32>] [-UseTransaction]
                      
DefaultParameterSet : 
OutputType          : {System.Security.AccessControl.FileSecurity, System.Secur
                      ity.AccessControl.DirectorySecurity}
Name                : Get-Acl
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Security
Module              : 
Parameters          : {[Path, System.Management.Automation.ParameterMetadata], 
                      [Audit, System.Management.Automation.ParameterMetadata], 
                      [Filter, System.Management.Automation.ParameterMetadata],
                       [Include, System.Management.Automation.ParameterMetadata
                      ]...}
ParameterSets       : {[[-Path] <String[]>] [-Audit] [-Filter <String>] [-Inclu
                      de <String[]>] [-Exclude <String[]>] [-Verbose] [-Debug] 
                      [-ErrorAction <ActionPreference>] [-WarningAction <Action
                      Preference>] [-ErrorVariable <String>] [-WarningVariable 
                      <String>] [-OutVariable <String>] [-OutBuffer <Int32>] [-
                      UseTransaction]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113305
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Securit
                      y\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.Security
                      .dll


Verb                : Get
Noun                : Alias
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.GetAliasCommand
Definition          : Get-Alias [[-Name] <String[]>] [-Exclude <String[]>] [-Sc
                      ope <String>] [-Verbose] [-Debug] [-ErrorAction <ActionPr
                      eference>] [-WarningAction <ActionPreference>] [-ErrorVar
                      iable <String>] [-WarningVariable <String>] [-OutVariable
                       <String>] [-OutBuffer <Int32>]
                      Get-Alias [-Exclude <String[]>] [-Scope <String>] [-Defin
                      ition <String[]>] [-Verbose] [-Debug] [-ErrorAction <Acti
                      onPreference>] [-WarningAction <ActionPreference>] [-Erro
                      rVariable <String>] [-WarningVariable <String>] [-OutVari
                      able <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : Default
OutputType          : {System.Management.Automation.AliasInfo}
Name                : Get-Alias
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[Name, System.Management.Automation.ParameterMetadata], 
                      [Exclude, System.Management.Automation.ParameterMetadata]
                      , [Scope, System.Management.Automation.ParameterMetadata]
                      , [Definition, System.Management.Automation.ParameterMeta
                      data]...}
ParameterSets       : {[[-Name] <String[]>] [-Exclude <String[]>] [-Scope <Stri
                      ng>] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>
                      ] [-WarningAction <ActionPreference>] [-ErrorVariable <St
                      ring>] [-WarningVariable <String>] [-OutVariable <String>
                      ] [-OutBuffer <Int32>], [-Exclude <String[]>] [-Scope <St
                      ring>] [-Definition <String[]>] [-Verbose] [-Debug] [-Err
                      orAction <ActionPreference>] [-WarningAction <ActionPrefe
                      rence>] [-ErrorVariable <String>] [-WarningVariable <Stri
                      ng>] [-OutVariable <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113306
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : Get
Noun                : AuthenticodeSignature
HelpFile            : Microsoft.PowerShell.Security.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Security
ImplementingType    : Microsoft.PowerShell.Commands.GetAuthenticodeSignatureCom
                      mand
Definition          : Get-AuthenticodeSignature [-FilePath] <String[]> [-Verbos
                      e] [-Debug] [-ErrorAction <ActionPreference>] [-WarningAc
                      tion <ActionPreference>] [-ErrorVariable <String>] [-Warn
                      ingVariable <String>] [-OutVariable <String>] [-OutBuffer
                       <Int32>]
                      
DefaultParameterSet : 
OutputType          : {System.Management.Automation.Signature}
Name                : Get-AuthenticodeSignature
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Security
Module              : 
Parameters          : {[FilePath, System.Management.Automation.ParameterMetadat
                      a], [Verbose, System.Management.Automation.ParameterMetad
                      ata], [Debug, System.Management.Automation.ParameterMetad
                      ata], [ErrorAction, System.Management.Automation.Paramete
                      rMetadata]...}
ParameterSets       : {[-FilePath] <String[]> [-Verbose] [-Debug] [-ErrorAction
                       <ActionPreference>] [-WarningAction <ActionPreference>] 
                      [-ErrorVariable <String>] [-WarningVariable <String>] [-O
                      utVariable <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113307
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Securit
                      y\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.Security
                      .dll


Verb                : Get
Noun                : ChildItem
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.GetChildItemCommand
Definition          : Get-ChildItem [[-Path] <String[]>] [[-Filter] <String>] [
                      -Include <String[]>] [-Exclude <String[]>] [-Recurse] [-F
                      orce] [-Name] [-Verbose] [-Debug] [-ErrorAction <ActionPr
                      eference>] [-WarningAction <ActionPreference>] [-ErrorVar
                      iable <String>] [-WarningVariable <String>] [-OutVariable
                       <String>] [-OutBuffer <Int32>] [-UseTransaction]
                      Get-ChildItem [-LiteralPath] <String[]> [[-Filter] <Strin
                      g>] [-Include <String[]>] [-Exclude <String[]>] [-Recurse
                      ] [-Force] [-Name] [-Verbose] [-Debug] [-ErrorAction <Act
                      ionPreference>] [-WarningAction <ActionPreference>] [-Err
                      orVariable <String>] [-WarningVariable <String>] [-OutVar
                      iable <String>] [-OutBuffer <Int32>] [-UseTransaction]
                      
DefaultParameterSet : Items
OutputType          : {System.IO.FileInfo, System.IO.DirectoryInfo, System.Stri
                      ng}
Name                : Get-ChildItem
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[Path, System.Management.Automation.ParameterMetadata], 
                      [LiteralPath, System.Management.Automation.ParameterMetad
                      ata], [Filter, System.Management.Automation.ParameterMeta
                      data], [Include, System.Management.Automation.ParameterMe
                      tadata]...}
ParameterSets       : {[[-Path] <String[]>] [[-Filter] <String>] [-Include <Str
                      ing[]>] [-Exclude <String[]>] [-Recurse] [-Force] [-Name]
                       [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-
                      WarningAction <ActionPreference>] [-ErrorVariable <String
                      >] [-WarningVariable <String>] [-OutVariable <String>] [-
                      OutBuffer <Int32>] [-UseTransaction], [-LiteralPath] <Str
                      ing[]> [[-Filter] <String>] [-Include <String[]>] [-Exclu
                      de <String[]>] [-Recurse] [-Force] [-Name] [-Verbose] [-D
                      ebug] [-ErrorAction <ActionPreference>] [-WarningAction <
                      ActionPreference>] [-ErrorVariable <String>] [-WarningVar
                      iable <String>] [-OutVariable <String>] [-OutBuffer <Int3
                      2>] [-UseTransaction]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113308
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : Get
Noun                : Command
HelpFile            : System.Management.Automation.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Core
ImplementingType    : Microsoft.PowerShell.Commands.GetCommandCommand
Definition          : Get-Command [[-ArgumentList] <Object[]>] [-Verb <String[]
                      >] [-Noun <String[]>] [-Module <String[]>] [-TotalCount <
                      Int32>] [-Syntax] [-Verbose] [-Debug] [-ErrorAction <Acti
                      onPreference>] [-WarningAction <ActionPreference>] [-Erro
                      rVariable <String>] [-WarningVariable <String>] [-OutVari
                      able <String>] [-OutBuffer <Int32>]
                      Get-Command [[-Name] <String[]>] [[-ArgumentList] <Object
                      []>] [-Module <String[]>] [-CommandType <CommandTypes>] [
                      -TotalCount <Int32>] [-Syntax] [-Verbose] [-Debug] [-Erro
                      rAction <ActionPreference>] [-WarningAction <ActionPrefer
                      ence>] [-ErrorVariable <String>] [-WarningVariable <Strin
                      g>] [-OutVariable <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : CmdletSet
OutputType          : {System.Management.Automation.AliasInfo, System.Managemen
                      t.Automation.ApplicationInfo, System.Management.Automatio
                      n.FunctionInfo, System.Management.Automation.CmdletInfo..
                      .}
Name                : Get-Command
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Core
Module              : 
Parameters          : {[Name, System.Management.Automation.ParameterMetadata], 
                      [Verb, System.Management.Automation.ParameterMetadata], [
                      Noun, System.Management.Automation.ParameterMetadata], [M
                      odule, System.Management.Automation.ParameterMetadata]...
                      }
ParameterSets       : {[[-ArgumentList] <Object[]>] [-Verb <String[]>] [-Noun <
                      String[]>] [-Module <String[]>] [-TotalCount <Int32>] [-S
                      yntax] [-Verbose] [-Debug] [-ErrorAction <ActionPreferenc
                      e>] [-WarningAction <ActionPreference>] [-ErrorVariable <
                      String>] [-WarningVariable <String>] [-OutVariable <Strin
                      g>] [-OutBuffer <Int32>], [[-Name] <String[]>] [[-Argumen
                      tList] <Object[]>] [-Module <String[]>] [-CommandType <Co
                      mmandTypes>] [-TotalCount <Int32>] [-Syntax] [-Verbose] [
                      -Debug] [-ErrorAction <ActionPreference>] [-WarningAction
                       <ActionPreference>] [-ErrorVariable <String>] [-WarningV
                      ariable <String>] [-OutVariable <String>] [-OutBuffer <In
                      t32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113309
DLL                 : C:\Windows\assembly\GAC_MSIL\System.Management.Automation
                      \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d
                      ll


Verb                : Get
Noun                : ComputerRestorePoint
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.GetComputerRestorePointComm
                      and
Definition          : Get-ComputerRestorePoint [[-RestorePoint] <Int32[]>] [-Ve
                      rbose] [-Debug] [-ErrorAction <ActionPreference>] [-Warni
                      ngAction <ActionPreference>] [-ErrorVariable <String>] [-
                      WarningVariable <String>] [-OutVariable <String>] [-OutBu
                      ffer <Int32>]
                      Get-ComputerRestorePoint -LastStatus [-Verbose] [-Debug] 
                      [-ErrorAction <ActionPreference>] [-WarningAction <Action
                      Preference>] [-ErrorVariable <String>] [-WarningVariable 
                      <String>] [-OutVariable <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : ID
OutputType          : {}
Name                : Get-ComputerRestorePoint
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[RestorePoint, System.Management.Automation.ParameterMet
                      adata], [LastStatus, System.Management.Automation.Paramet
                      erMetadata], [Verbose, System.Management.Automation.Param
                      eterMetadata], [Debug, System.Management.Automation.Param
                      eterMetadata]...}
ParameterSets       : {[[-RestorePoint] <Int32[]>] [-Verbose] [-Debug] [-ErrorA
                      ction <ActionPreference>] [-WarningAction <ActionPreferen
                      ce>] [-ErrorVariable <String>] [-WarningVariable <String>
                      ] [-OutVariable <String>] [-OutBuffer <Int32>], -LastStat
                      us [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] 
                      [-WarningAction <ActionPreference>] [-ErrorVariable <Stri
                      ng>] [-WarningVariable <String>] [-OutVariable <String>] 
                      [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=135215
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : Get
Noun                : Content
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.GetContentCommand
Definition          : Get-Content [-Path] <String[]> [-ReadCount <Int64>] [-Tot
                      alCount <Int64>] [-Filter <String>] [-Include <String[]>]
                       [-Exclude <String[]>] [-Force] [-Credential <PSCredentia
                      l>] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>]
                       [-WarningAction <ActionPreference>] [-ErrorVariable <Str
                      ing>] [-WarningVariable <String>] [-OutVariable <String>]
                       [-OutBuffer <Int32>] [-UseTransaction] [-Delimiter <Stri
                      ng>] [-Wait] [-Encoding <FileSystemCmdletProviderEncoding
                      >]
                      Get-Content [-LiteralPath] <String[]> [-ReadCount <Int64>
                      ] [-TotalCount <Int64>] [-Filter <String>] [-Include <Str
                      ing[]>] [-Exclude <String[]>] [-Force] [-Credential <PSCr
                      edential>] [-Verbose] [-Debug] [-ErrorAction <ActionPrefe
                      rence>] [-WarningAction <ActionPreference>] [-ErrorVariab
                      le <String>] [-WarningVariable <String>] [-OutVariable <S
                      tring>] [-OutBuffer <Int32>] [-UseTransaction] [-Delimite
                      r <String>] [-Wait] [-Encoding <FileSystemCmdletProviderE
                      ncoding>]
                      
DefaultParameterSet : Path
OutputType          : {}
Name                : Get-Content
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[ReadCount, System.Management.Automation.ParameterMetada
                      ta], [TotalCount, System.Management.Automation.ParameterM
                      etadata], [Path, System.Management.Automation.ParameterMe
                      tadata], [LiteralPath, System.Management.Automation.Param
                      eterMetadata]...}
ParameterSets       : {[-Path] <String[]> [-ReadCount <Int64>] [-TotalCount <In
                      t64>] [-Filter <String>] [-Include <String[]>] [-Exclude 
                      <String[]>] [-Force] [-Credential <PSCredential>] [-Verbo
                      se] [-Debug] [-ErrorAction <ActionPreference>] [-WarningA
                      ction <ActionPreference>] [-ErrorVariable <String>] [-War
                      ningVariable <String>] [-OutVariable <String>] [-OutBuffe
                      r <Int32>] [-UseTransaction] [-Delimiter <String>] [-Wait
                      ] [-Encoding <FileSystemCmdletProviderEncoding>], [-Liter
                      alPath] <String[]> [-ReadCount <Int64>] [-TotalCount <Int
                      64>] [-Filter <String>] [-Include <String[]>] [-Exclude <
                      String[]>] [-Force] [-Credential <PSCredential>] [-Verbos
                      e] [-Debug] [-ErrorAction <ActionPreference>] [-WarningAc
                      tion <ActionPreference>] [-ErrorVariable <String>] [-Warn
                      ingVariable <String>] [-OutVariable <String>] [-OutBuffer
                       <Int32>] [-UseTransaction] [-Delimiter <String>] [-Wait]
                       [-Encoding <FileSystemCmdletProviderEncoding>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113310
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : Get
Noun                : Counter
HelpFile            : Microsoft.PowerShell.Commands.Diagnostics.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Diagnostics
ImplementingType    : Microsoft.PowerShell.Commands.GetCounterCommand
Definition          : Get-Counter [[-Counter] <String[]>] [-SampleInterval <Int
                      32>] [-MaxSamples <Int64>] [-Continuous] [-ComputerName <
                      String[]>] [-Verbose] [-Debug] [-ErrorAction <ActionPrefe
                      rence>] [-WarningAction <ActionPreference>] [-ErrorVariab
                      le <String>] [-WarningVariable <String>] [-OutVariable <S
                      tring>] [-OutBuffer <Int32>]
                      Get-Counter [-ListSet] <String[]> [-ComputerName <String[
                      ]>] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>]
                       [-WarningAction <ActionPreference>] [-ErrorVariable <Str
                      ing>] [-WarningVariable <String>] [-OutVariable <String>]
                       [-OutBuffer <Int32>]
                      
DefaultParameterSet : GetCounterSet
OutputType          : {}
Name                : Get-Counter
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Diagnostics
Module              : 
Parameters          : {[ListSet, System.Management.Automation.ParameterMetadata
                      ], [Counter, System.Management.Automation.ParameterMetada
                      ta], [SampleInterval, System.Management.Automation.Parame
                      terMetadata], [MaxSamples, System.Management.Automation.P
                      arameterMetadata]...}
ParameterSets       : {[[-Counter] <String[]>] [-SampleInterval <Int32>] [-MaxS
                      amples <Int64>] [-Continuous] [-ComputerName <String[]>] 
                      [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-W
                      arningAction <ActionPreference>] [-ErrorVariable <String>
                      ] [-WarningVariable <String>] [-OutVariable <String>] [-O
                      utBuffer <Int32>], [-ListSet] <String[]> [-ComputerName <
                      String[]>] [-Verbose] [-Debug] [-ErrorAction <ActionPrefe
                      rence>] [-WarningAction <ActionPreference>] [-ErrorVariab
                      le <String>] [-WarningVariable <String>] [-OutVariable <S
                      tring>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=138335
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Diagnostics\1.0.0.0__31bf3856ad364e35\Microsoft.PowerSh
                      ell.Commands.Diagnostics.dll


Verb                : Get
Noun                : Credential
HelpFile            : Microsoft.PowerShell.Security.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Security
ImplementingType    : Microsoft.PowerShell.Commands.GetCredentialCommand
Definition          : Get-Credential [-Credential] <PSCredential> [-Verbose] [-
                      Debug] [-ErrorAction <ActionPreference>] [-WarningAction 
                      <ActionPreference>] [-ErrorVariable <String>] [-WarningVa
                      riable <String>] [-OutVariable <String>] [-OutBuffer <Int
                      32>]
                      
DefaultParameterSet : 
OutputType          : {System.Management.Automation.PSCredential}
Name                : Get-Credential
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Security
Module              : 
Parameters          : {[Credential, System.Management.Automation.ParameterMetad
                      ata], [Verbose, System.Management.Automation.ParameterMet
                      adata], [Debug, System.Management.Automation.ParameterMet
                      adata], [ErrorAction, System.Management.Automation.Parame
                      terMetadata]...}
ParameterSets       : {[-Credential] <PSCredential> [-Verbose] [-Debug] [-Error
                      Action <ActionPreference>] [-WarningAction <ActionPrefere
                      nce>] [-ErrorVariable <String>] [-WarningVariable <String
                      >] [-OutVariable <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113311
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Securit
                      y\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.Security
                      .dll


Verb                : Get
Noun                : Culture
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.GetCultureCommand
Definition          : Get-Culture [-Verbose] [-Debug] [-ErrorAction <ActionPref
                      erence>] [-WarningAction <ActionPreference>] [-ErrorVaria
                      ble <String>] [-WarningVariable <String>] [-OutVariable <
                      String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : 
OutputType          : {System.Globalization.CultureInfo}
Name                : Get-Culture
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[Verbose, System.Management.Automation.ParameterMetadata
                      ], [Debug, System.Management.Automation.ParameterMetadata
                      ], [ErrorAction, System.Management.Automation.ParameterMe
                      tadata], [WarningAction, System.Management.Automation.Par
                      ameterMetadata]...}
ParameterSets       : {[-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-
                      WarningAction <ActionPreference>] [-ErrorVariable <String
                      >] [-WarningVariable <String>] [-OutVariable <String>] [-
                      OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113312
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : Get
Noun                : Date
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.GetDateCommand
Definition          : Get-Date [[-Date] <DateTime>] [-Year <Int32>] [-Month <In
                      t32>] [-Day <Int32>] [-Hour <Int32>] [-Minute <Int32>] [-
                      Second <Int32>] [-DisplayHint <DisplayHintType>] [-Format
                       <String>] [-Verbose] [-Debug] [-ErrorAction <ActionPrefe
                      rence>] [-WarningAction <ActionPreference>] [-ErrorVariab
                      le <String>] [-WarningVariable <String>] [-OutVariable <S
                      tring>] [-OutBuffer <Int32>]
                      Get-Date [[-Date] <DateTime>] [-Year <Int32>] [-Month <In
                      t32>] [-Day <Int32>] [-Hour <Int32>] [-Minute <Int32>] [-
                      Second <Int32>] [-DisplayHint <DisplayHintType>] [-UForma
                      t <String>] [-Verbose] [-Debug] [-ErrorAction <ActionPref
                      erence>] [-WarningAction <ActionPreference>] [-ErrorVaria
                      ble <String>] [-WarningVariable <String>] [-OutVariable <
                      String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : net
OutputType          : {System.String, System.DateTime}
Name                : Get-Date
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[Date, System.Management.Automation.ParameterMetadata], 
                      [Year, System.Management.Automation.ParameterMetadata], [
                      Month, System.Management.Automation.ParameterMetadata], [
                      Day, System.Management.Automation.ParameterMetadata]...}
ParameterSets       : {[[-Date] <DateTime>] [-Year <Int32>] [-Month <Int32>] [-
                      Day <Int32>] [-Hour <Int32>] [-Minute <Int32>] [-Second <
                      Int32>] [-DisplayHint <DisplayHintType>] [-Format <String
                      >] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] 
                      [-WarningAction <ActionPreference>] [-ErrorVariable <Stri
                      ng>] [-WarningVariable <String>] [-OutVariable <String>] 
                      [-OutBuffer <Int32>], [[-Date] <DateTime>] [-Year <Int32>
                      ] [-Month <Int32>] [-Day <Int32>] [-Hour <Int32>] [-Minut
                      e <Int32>] [-Second <Int32>] [-DisplayHint <DisplayHintTy
                      pe>] [-UFormat <String>] [-Verbose] [-Debug] [-ErrorActio
                      n <ActionPreference>] [-WarningAction <ActionPreference>]
                       [-ErrorVariable <String>] [-WarningVariable <String>] [-
                      OutVariable <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113313
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : Get
Noun                : Event
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.GetEventCommand
Definition          : Get-Event [[-SourceIdentifier] <String>] [-Verbose] [-Deb
                      ug] [-ErrorAction <ActionPreference>] [-WarningAction <Ac
                      tionPreference>] [-ErrorVariable <String>] [-WarningVaria
                      ble <String>] [-OutVariable <String>] [-OutBuffer <Int32>
                      ]
                      Get-Event [-EventIdentifier] <Int32> [-Verbose] [-Debug] 
                      [-ErrorAction <ActionPreference>] [-WarningAction <Action
                      Preference>] [-ErrorVariable <String>] [-WarningVariable 
                      <String>] [-OutVariable <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : BySource
OutputType          : {System.Management.Automation.PSEventArgs}
Name                : Get-Event
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[SourceIdentifier, System.Management.Automation.Paramete
                      rMetadata], [EventIdentifier, System.Management.Automatio
                      n.ParameterMetadata], [Verbose, System.Management.Automat
                      ion.ParameterMetadata], [Debug, System.Management.Automat
                      ion.ParameterMetadata]...}
ParameterSets       : {[[-SourceIdentifier] <String>] [-Verbose] [-Debug] [-Err
                      orAction <ActionPreference>] [-WarningAction <ActionPrefe
                      rence>] [-ErrorVariable <String>] [-WarningVariable <Stri
                      ng>] [-OutVariable <String>] [-OutBuffer <Int32>], [-Even
                      tIdentifier] <Int32> [-Verbose] [-Debug] [-ErrorAction <A
                      ctionPreference>] [-WarningAction <ActionPreference>] [-E
                      rrorVariable <String>] [-WarningVariable <String>] [-OutV
                      ariable <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113453
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : Get
Noun                : EventLog
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.GetEventLogCommand
Definition          : Get-EventLog [-LogName] <String> [[-InstanceId] <Int64[]>
                      ] [-ComputerName <String[]>] [-Newest <Int32>] [-After <D
                      ateTime>] [-Before <DateTime>] [-UserName <String[]>] [-I
                      ndex <Int32[]>] [-EntryType <String[]>] [-Source <String[
                      ]>] [-Message <String>] [-AsBaseObject] [-Verbose] [-Debu
                      g] [-ErrorAction <ActionPreference>] [-WarningAction <Act
                      ionPreference>] [-ErrorVariable <String>] [-WarningVariab
                      le <String>] [-OutVariable <String>] [-OutBuffer <Int32>]
                      Get-EventLog [-ComputerName <String[]>] [-List] [-AsStrin
                      g] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] 
                      [-WarningAction <ActionPreference>] [-ErrorVariable <Stri
                      ng>] [-WarningVariable <String>] [-OutVariable <String>] 
                      [-OutBuffer <Int32>]
                      
DefaultParameterSet : LogName
OutputType          : {}
Name                : Get-EventLog
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[LogName, System.Management.Automation.ParameterMetadata
                      ], [ComputerName, System.Management.Automation.ParameterM
                      etadata], [Newest, System.Management.Automation.Parameter
                      Metadata], [After, System.Management.Automation.Parameter
                      Metadata]...}
ParameterSets       : {[-LogName] <String> [[-InstanceId] <Int64[]>] [-Computer
                      Name <String[]>] [-Newest <Int32>] [-After <DateTime>] [-
                      Before <DateTime>] [-UserName <String[]>] [-Index <Int32[
                      ]>] [-EntryType <String[]>] [-Source <String[]>] [-Messag
                      e <String>] [-AsBaseObject] [-Verbose] [-Debug] [-ErrorAc
                      tion <ActionPreference>] [-WarningAction <ActionPreferenc
                      e>] [-ErrorVariable <String>] [-WarningVariable <String>]
                       [-OutVariable <String>] [-OutBuffer <Int32>], [-Computer
                      Name <String[]>] [-List] [-AsString] [-Verbose] [-Debug] 
                      [-ErrorAction <ActionPreference>] [-WarningAction <Action
                      Preference>] [-ErrorVariable <String>] [-WarningVariable 
                      <String>] [-OutVariable <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113314
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : Get
Noun                : EventSubscriber
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.GetEventSubscriberCommand
Definition          : Get-EventSubscriber [[-SourceIdentifier] <String>] [-Forc
                      e] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] 
                      [-WarningAction <ActionPreference>] [-ErrorVariable <Stri
                      ng>] [-WarningVariable <String>] [-OutVariable <String>] 
                      [-OutBuffer <Int32>]
                      Get-EventSubscriber [-SubscriptionId] <Int32> [-Force] [-
                      Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-War
                      ningAction <ActionPreference>] [-ErrorVariable <String>] 
                      [-WarningVariable <String>] [-OutVariable <String>] [-Out
                      Buffer <Int32>]
                      
DefaultParameterSet : BySource
OutputType          : {System.Management.Automation.PSEventSubscriber}
Name                : Get-EventSubscriber
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[SourceIdentifier, System.Management.Automation.Paramete
                      rMetadata], [SubscriptionId, System.Management.Automation
                      .ParameterMetadata], [Force, System.Management.Automation
                      .ParameterMetadata], [Verbose, System.Management.Automati
                      on.ParameterMetadata]...}
ParameterSets       : {[[-SourceIdentifier] <String>] [-Force] [-Verbose] [-Deb
                      ug] [-ErrorAction <ActionPreference>] [-WarningAction <Ac
                      tionPreference>] [-ErrorVariable <String>] [-WarningVaria
                      ble <String>] [-OutVariable <String>] [-OutBuffer <Int32>
                      ], [-SubscriptionId] <Int32> [-Force] [-Verbose] [-Debug]
                       [-ErrorAction <ActionPreference>] [-WarningAction <Actio
                      nPreference>] [-ErrorVariable <String>] [-WarningVariable
                       <String>] [-OutVariable <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=135155
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : Get
Noun                : ExecutionPolicy
HelpFile            : Microsoft.PowerShell.Security.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Security
ImplementingType    : Microsoft.PowerShell.Commands.GetExecutionPolicyCommand
Definition          : Get-ExecutionPolicy [[-Scope] <ExecutionPolicyScope>] [-L
                      ist] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>
                      ] [-WarningAction <ActionPreference>] [-ErrorVariable <St
                      ring>] [-WarningVariable <String>] [-OutVariable <String>
                      ] [-OutBuffer <Int32>]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Get-ExecutionPolicy
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Security
Module              : 
Parameters          : {[Scope, System.Management.Automation.ParameterMetadata],
                       [List, System.Management.Automation.ParameterMetadata], 
                      [Verbose, System.Management.Automation.ParameterMetadata]
                      , [Debug, System.Management.Automation.ParameterMetadata]
                      ...}
ParameterSets       : {[[-Scope] <ExecutionPolicyScope>] [-List] [-Verbose] [-D
                      ebug] [-ErrorAction <ActionPreference>] [-WarningAction <
                      ActionPreference>] [-ErrorVariable <String>] [-WarningVar
                      iable <String>] [-OutVariable <String>] [-OutBuffer <Int3
                      2>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113315
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Securit
                      y\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.Security
                      .dll


Verb                : Get
Noun                : FormatData
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.GetFormatDataCommand
Definition          : Get-FormatData [[-TypeName] <String[]>] [-Verbose] [-Debu
                      g] [-ErrorAction <ActionPreference>] [-WarningAction <Act
                      ionPreference>] [-ErrorVariable <String>] [-WarningVariab
                      le <String>] [-OutVariable <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Get-FormatData
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[TypeName, System.Management.Automation.ParameterMetadat
                      a], [Verbose, System.Management.Automation.ParameterMetad
                      ata], [Debug, System.Management.Automation.ParameterMetad
                      ata], [ErrorAction, System.Management.Automation.Paramete
                      rMetadata]...}
ParameterSets       : {[[-TypeName] <String[]>] [-Verbose] [-Debug] [-ErrorActi
                      on <ActionPreference>] [-WarningAction <ActionPreference>
                      ] [-ErrorVariable <String>] [-WarningVariable <String>] [
                      -OutVariable <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=144303
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : Get
Noun                : Help
HelpFile            : System.Management.Automation.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Core
ImplementingType    : Microsoft.PowerShell.Commands.GetHelpCommand
Definition          : Get-Help [[-Name] <String>] [-Path <String>] [-Category <
                      String[]>] [-Component <String[]>] [-Functionality <Strin
                      g[]>] [-Role <String[]>] [-Full] [-Online] [-Verbose] [-D
                      ebug] [-ErrorAction <ActionPreference>] [-WarningAction <
                      ActionPreference>] [-ErrorVariable <String>] [-WarningVar
                      iable <String>] [-OutVariable <String>] [-OutBuffer <Int3
                      2>]
                      Get-Help [[-Name] <String>] [-Path <String>] [-Category <
                      String[]>] [-Component <String[]>] [-Functionality <Strin
                      g[]>] [-Role <String[]>] [-Detailed] [-Online] [-Verbose]
                       [-Debug] [-ErrorAction <ActionPreference>] [-WarningActi
                      on <ActionPreference>] [-ErrorVariable <String>] [-Warnin
                      gVariable <String>] [-OutVariable <String>] [-OutBuffer <
                      Int32>]
                      Get-Help [[-Name] <String>] [-Path <String>] [-Category <
                      String[]>] [-Component <String[]>] [-Functionality <Strin
                      g[]>] [-Role <String[]>] [-Examples] [-Online] [-Verbose]
                       [-Debug] [-ErrorAction <ActionPreference>] [-WarningActi
                      on <ActionPreference>] [-ErrorVariable <String>] [-Warnin
                      gVariable <String>] [-OutVariable <String>] [-OutBuffer <
                      Int32>]
                      Get-Help [[-Name] <String>] [-Path <String>] [-Category <
                      String[]>] [-Component <String[]>] [-Functionality <Strin
                      g[]>] [-Role <String[]>] [-Parameter <String>] [-Online] 
                      [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-W
                      arningAction <ActionPreference>] [-ErrorVariable <String>
                      ] [-WarningVariable <String>] [-OutVariable <String>] [-O
                      utBuffer <Int32>]
                      
DefaultParameterSet : AllUsersView
OutputType          : {}
Name                : Get-Help
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Core
Module              : 
Parameters          : {[Name, System.Management.Automation.ParameterMetadata], 
                      [Path, System.Management.Automation.ParameterMetadata], [
                      Category, System.Management.Automation.ParameterMetadata]
                      , [Component, System.Management.Automation.ParameterMetad
                      ata]...}
ParameterSets       : {[[-Name] <String>] [-Path <String>] [-Category <String[]
                      >] [-Component <String[]>] [-Functionality <String[]>] [-
                      Role <String[]>] [-Full] [-Online] [-Verbose] [-Debug] [-
                      ErrorAction <ActionPreference>] [-WarningAction <ActionPr
                      eference>] [-ErrorVariable <String>] [-WarningVariable <S
                      tring>] [-OutVariable <String>] [-OutBuffer <Int32>], [[-
                      Name] <String>] [-Path <String>] [-Category <String[]>] [
                      -Component <String[]>] [-Functionality <String[]>] [-Role
                       <String[]>] [-Detailed] [-Online] [-Verbose] [-Debug] [-
                      ErrorAction <ActionPreference>] [-WarningAction <ActionPr
                      eference>] [-ErrorVariable <String>] [-WarningVariable <S
                      tring>] [-OutVariable <String>] [-OutBuffer <Int32>], [[-
                      Name] <String>] [-Path <String>] [-Category <String[]>] [
                      -Component <String[]>] [-Functionality <String[]>] [-Role
                       <String[]>] [-Examples] [-Online] [-Verbose] [-Debug] [-
                      ErrorAction <ActionPreference>] [-WarningAction <ActionPr
                      eference>] [-ErrorVariable <String>] [-WarningVariable <S
                      tring>] [-OutVariable <String>] [-OutBuffer <Int32>], [[-
                      Name] <String>] [-Path <String>] [-Category <String[]>] [
                      -Component <String[]>] [-Functionality <String[]>] [-Role
                       <String[]>] [-Parameter <String>] [-Online] [-Verbose] [
                      -Debug] [-ErrorAction <ActionPreference>] [-WarningAction
                       <ActionPreference>] [-ErrorVariable <String>] [-WarningV
                      ariable <String>] [-OutVariable <String>] [-OutBuffer <In
                      t32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113316
DLL                 : C:\Windows\assembly\GAC_MSIL\System.Management.Automation
                      \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d
                      ll


Verb                : Get
Noun                : History
HelpFile            : System.Management.Automation.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Core
ImplementingType    : Microsoft.PowerShell.Commands.GetHistoryCommand
Definition          : Get-History [[-Id] <Int64[]>] [[-Count] <Int32>] [-Verbos
                      e] [-Debug] [-ErrorAction <ActionPreference>] [-WarningAc
                      tion <ActionPreference>] [-ErrorVariable <String>] [-Warn
                      ingVariable <String>] [-OutVariable <String>] [-OutBuffer
                       <Int32>]
                      
DefaultParameterSet : 
OutputType          : {Microsoft.PowerShell.Commands.HistoryInfo}
Name                : Get-History
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Core
Module              : 
Parameters          : {[Id, System.Management.Automation.ParameterMetadata], [C
                      ount, System.Management.Automation.ParameterMetadata], [V
                      erbose, System.Management.Automation.ParameterMetadata], 
                      [Debug, System.Management.Automation.ParameterMetadata]..
                      .}
ParameterSets       : {[[-Id] <Int64[]>] [[-Count] <Int32>] [-Verbose] [-Debug]
                       [-ErrorAction <ActionPreference>] [-WarningAction <Actio
                      nPreference>] [-ErrorVariable <String>] [-WarningVariable
                       <String>] [-OutVariable <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113317
DLL                 : C:\Windows\assembly\GAC_MSIL\System.Management.Automation
                      \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d
                      ll


Verb                : Get
Noun                : Host
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.GetHostCommand
Definition          : Get-Host [-Verbose] [-Debug] [-ErrorAction <ActionPrefere
                      nce>] [-WarningAction <ActionPreference>] [-ErrorVariable
                       <String>] [-WarningVariable <String>] [-OutVariable <Str
                      ing>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : 
OutputType          : {System.Management.Automation.Host.PSHost}
Name                : Get-Host
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[Verbose, System.Management.Automation.ParameterMetadata
                      ], [Debug, System.Management.Automation.ParameterMetadata
                      ], [ErrorAction, System.Management.Automation.ParameterMe
                      tadata], [WarningAction, System.Management.Automation.Par
                      ameterMetadata]...}
ParameterSets       : {[-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-
                      WarningAction <ActionPreference>] [-ErrorVariable <String
                      >] [-WarningVariable <String>] [-OutVariable <String>] [-
                      OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113318
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : Get
Noun                : HotFix
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.GetHotFixCommand
Definition          : Get-HotFix [[-Id] <String[]>] [-ComputerName <String[]>] 
                      [-Credential <PSCredential>] [-Verbose] [-Debug] [-ErrorA
                      ction <ActionPreference>] [-WarningAction <ActionPreferen
                      ce>] [-ErrorVariable <String>] [-WarningVariable <String>
                      ] [-OutVariable <String>] [-OutBuffer <Int32>]
                      Get-HotFix [-Description <String[]>] [-ComputerName <Stri
                      ng[]>] [-Credential <PSCredential>] [-Verbose] [-Debug] [
                      -ErrorAction <ActionPreference>] [-WarningAction <ActionP
                      reference>] [-ErrorVariable <String>] [-WarningVariable <
                      String>] [-OutVariable <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : Default
OutputType          : {}
Name                : Get-HotFix
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[Id, System.Management.Automation.ParameterMetadata], [D
                      escription, System.Management.Automation.ParameterMetadat
                      a], [ComputerName, System.Management.Automation.Parameter
                      Metadata], [Credential, System.Management.Automation.Para
                      meterMetadata]...}
ParameterSets       : {[[-Id] <String[]>] [-ComputerName <String[]>] [-Credenti
                      al <PSCredential>] [-Verbose] [-Debug] [-ErrorAction <Act
                      ionPreference>] [-WarningAction <ActionPreference>] [-Err
                      orVariable <String>] [-WarningVariable <String>] [-OutVar
                      iable <String>] [-OutBuffer <Int32>], [-Description <Stri
                      ng[]>] [-ComputerName <String[]>] [-Credential <PSCredent
                      ial>] [-Verbose] [-Debug] [-ErrorAction <ActionPreference
                      >] [-WarningAction <ActionPreference>] [-ErrorVariable <S
                      tring>] [-WarningVariable <String>] [-OutVariable <String
                      >] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=135217
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : Get
Noun                : Item
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.GetItemCommand
Definition          : Get-Item [-Path] <String[]> [-Filter <String>] [-Include 
                      <String[]>] [-Exclude <String[]>] [-Force] [-Credential <
                      PSCredential>] [-Verbose] [-Debug] [-ErrorAction <ActionP
                      reference>] [-WarningAction <ActionPreference>] [-ErrorVa
                      riable <String>] [-WarningVariable <String>] [-OutVariabl
                      e <String>] [-OutBuffer <Int32>] [-UseTransaction]
                      Get-Item [-LiteralPath] <String[]> [-Filter <String>] [-I
                      nclude <String[]>] [-Exclude <String[]>] [-Force] [-Crede
                      ntial <PSCredential>] [-Verbose] [-Debug] [-ErrorAction <
                      ActionPreference>] [-WarningAction <ActionPreference>] [-
                      ErrorVariable <String>] [-WarningVariable <String>] [-Out
                      Variable <String>] [-OutBuffer <Int32>] [-UseTransaction]
                      
DefaultParameterSet : Path
OutputType          : {System.IO.FileInfo, System.IO.DirectoryInfo}
Name                : Get-Item
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[Path, System.Management.Automation.ParameterMetadata], 
                      [LiteralPath, System.Management.Automation.ParameterMetad
                      ata], [Filter, System.Management.Automation.ParameterMeta
                      data], [Include, System.Management.Automation.ParameterMe
                      tadata]...}
ParameterSets       : {[-Path] <String[]> [-Filter <String>] [-Include <String[
                      ]>] [-Exclude <String[]>] [-Force] [-Credential <PSCreden
                      tial>] [-Verbose] [-Debug] [-ErrorAction <ActionPreferenc
                      e>] [-WarningAction <ActionPreference>] [-ErrorVariable <
                      String>] [-WarningVariable <String>] [-OutVariable <Strin
                      g>] [-OutBuffer <Int32>] [-UseTransaction], [-LiteralPath
                      ] <String[]> [-Filter <String>] [-Include <String[]>] [-E
                      xclude <String[]>] [-Force] [-Credential <PSCredential>] 
                      [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-W
                      arningAction <ActionPreference>] [-ErrorVariable <String>
                      ] [-WarningVariable <String>] [-OutVariable <String>] [-O
                      utBuffer <Int32>] [-UseTransaction]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113319
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : Get
Noun                : ItemProperty
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.GetItemPropertyCommand
Definition          : Get-ItemProperty [-Path] <String[]> [[-Name] <String[]>] 
                      [-Filter <String>] [-Include <String[]>] [-Exclude <Strin
                      g[]>] [-Credential <PSCredential>] [-Verbose] [-Debug] [-
                      ErrorAction <ActionPreference>] [-WarningAction <ActionPr
                      eference>] [-ErrorVariable <String>] [-WarningVariable <S
                      tring>] [-OutVariable <String>] [-OutBuffer <Int32>] [-Us
                      eTransaction]
                      Get-ItemProperty [-LiteralPath] <String[]> [[-Name] <Stri
                      ng[]>] [-Filter <String>] [-Include <String[]>] [-Exclude
                       <String[]>] [-Credential <PSCredential>] [-Verbose] [-De
                      bug] [-ErrorAction <ActionPreference>] [-WarningAction <A
                      ctionPreference>] [-ErrorVariable <String>] [-WarningVari
                      able <String>] [-OutVariable <String>] [-OutBuffer <Int32
                      >] [-UseTransaction]
                      
DefaultParameterSet : Path
OutputType          : {}
Name                : Get-ItemProperty
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[Path, System.Management.Automation.ParameterMetadata], 
                      [LiteralPath, System.Management.Automation.ParameterMetad
                      ata], [Name, System.Management.Automation.ParameterMetada
                      ta], [Filter, System.Management.Automation.ParameterMetad
                      ata]...}
ParameterSets       : {[-Path] <String[]> [[-Name] <String[]>] [-Filter <String
                      >] [-Include <String[]>] [-Exclude <String[]>] [-Credenti
                      al <PSCredential>] [-Verbose] [-Debug] [-ErrorAction <Act
                      ionPreference>] [-WarningAction <ActionPreference>] [-Err
                      orVariable <String>] [-WarningVariable <String>] [-OutVar
                      iable <String>] [-OutBuffer <Int32>] [-UseTransaction], [
                      -LiteralPath] <String[]> [[-Name] <String[]>] [-Filter <S
                      tring>] [-Include <String[]>] [-Exclude <String[]>] [-Cre
                      dential <PSCredential>] [-Verbose] [-Debug] [-ErrorAction
                       <ActionPreference>] [-WarningAction <ActionPreference>] 
                      [-ErrorVariable <String>] [-WarningVariable <String>] [-O
                      utVariable <String>] [-OutBuffer <Int32>] [-UseTransactio
                      n]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113320
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : Get
Noun                : Job
HelpFile            : System.Management.Automation.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Core
ImplementingType    : Microsoft.PowerShell.Commands.GetJobCommand
Definition          : Get-Job [[-Id] <Int32[]>] [-Verbose] [-Debug] [-ErrorActi
                      on <ActionPreference>] [-WarningAction <ActionPreference>
                      ] [-ErrorVariable <String>] [-WarningVariable <String>] [
                      -OutVariable <String>] [-OutBuffer <Int32>]
                      Get-Job [[-Name] <String[]>] [-Verbose] [-Debug] [-ErrorA
                      ction <ActionPreference>] [-WarningAction <ActionPreferen
                      ce>] [-ErrorVariable <String>] [-WarningVariable <String>
                      ] [-OutVariable <String>] [-OutBuffer <Int32>]
                      Get-Job [[-InstanceId] <Guid[]>] [-Verbose] [-Debug] [-Er
                      rorAction <ActionPreference>] [-WarningAction <ActionPref
                      erence>] [-ErrorVariable <String>] [-WarningVariable <Str
                      ing>] [-OutVariable <String>] [-OutBuffer <Int32>]
                      Get-Job [-State <JobState>] [-Verbose] [-Debug] [-ErrorAc
                      tion <ActionPreference>] [-WarningAction <ActionPreferenc
                      e>] [-ErrorVariable <String>] [-WarningVariable <String>]
                       [-OutVariable <String>] [-OutBuffer <Int32>]
                      Get-Job [-Command <String[]>] [-Verbose] [-Debug] [-Error
                      Action <ActionPreference>] [-WarningAction <ActionPrefere
                      nce>] [-ErrorVariable <String>] [-WarningVariable <String
                      >] [-OutVariable <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : SessionIdParameterSet
OutputType          : {}
Name                : Get-Job
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Core
Module              : 
Parameters          : {[Id, System.Management.Automation.ParameterMetadata], [N
                      ame, System.Management.Automation.ParameterMetadata], [In
                      stanceId, System.Management.Automation.ParameterMetadata]
                      , [State, System.Management.Automation.ParameterMetadata]
                      ...}
ParameterSets       : {[[-Id] <Int32[]>] [-Verbose] [-Debug] [-ErrorAction <Act
                      ionPreference>] [-WarningAction <ActionPreference>] [-Err
                      orVariable <String>] [-WarningVariable <String>] [-OutVar
                      iable <String>] [-OutBuffer <Int32>], [[-Name] <String[]>
                      ] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [
                      -WarningAction <ActionPreference>] [-ErrorVariable <Strin
                      g>] [-WarningVariable <String>] [-OutVariable <String>] [
                      -OutBuffer <Int32>], [[-InstanceId] <Guid[]>] [-Verbose] 
                      [-Debug] [-ErrorAction <ActionPreference>] [-WarningActio
                      n <ActionPreference>] [-ErrorVariable <String>] [-Warning
                      Variable <String>] [-OutVariable <String>] [-OutBuffer <I
                      nt32>], [-State <JobState>] [-Verbose] [-Debug] [-ErrorAc
                      tion <ActionPreference>] [-WarningAction <ActionPreferenc
                      e>] [-ErrorVariable <String>] [-WarningVariable <String>]
                       [-OutVariable <String>] [-OutBuffer <Int32>]...}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113328
DLL                 : C:\Windows\assembly\GAC_MSIL\System.Management.Automation
                      \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d
                      ll


Verb                : Get
Noun                : Location
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.GetLocationCommand
Definition          : Get-Location [-PSProvider <String[]>] [-PSDrive <String[]
                      >] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] 
                      [-WarningAction <ActionPreference>] [-ErrorVariable <Stri
                      ng>] [-WarningVariable <String>] [-OutVariable <String>] 
                      [-OutBuffer <Int32>] [-UseTransaction]
                      Get-Location [-Stack] [-StackName <String[]>] [-Verbose] 
                      [-Debug] [-ErrorAction <ActionPreference>] [-WarningActio
                      n <ActionPreference>] [-ErrorVariable <String>] [-Warning
                      Variable <String>] [-OutVariable <String>] [-OutBuffer <I
                      nt32>] [-UseTransaction]
                      
DefaultParameterSet : Location
OutputType          : {System.Management.Automation.PathInfo, System.Management
                      .Automation.PathInfoStack}
Name                : Get-Location
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[PSProvider, System.Management.Automation.ParameterMetad
                      ata], [PSDrive, System.Management.Automation.ParameterMet
                      adata], [Stack, System.Management.Automation.ParameterMet
                      adata], [StackName, System.Management.Automation.Paramete
                      rMetadata]...}
ParameterSets       : {[-PSProvider <String[]>] [-PSDrive <String[]>] [-Verbose
                      ] [-Debug] [-ErrorAction <ActionPreference>] [-WarningAct
                      ion <ActionPreference>] [-ErrorVariable <String>] [-Warni
                      ngVariable <String>] [-OutVariable <String>] [-OutBuffer 
                      <Int32>] [-UseTransaction], [-Stack] [-StackName <String[
                      ]>] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>]
                       [-WarningAction <ActionPreference>] [-ErrorVariable <Str
                      ing>] [-WarningVariable <String>] [-OutVariable <String>]
                       [-OutBuffer <Int32>] [-UseTransaction]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113321
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : Get
Noun                : Member
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.GetMemberCommand
Definition          : Get-Member [[-Name] <String[]>] [-InputObject <PSObject>]
                       [-MemberType <PSMemberTypes>] [-View <PSMemberViewTypes>
                      ] [-Static] [-Force] [-Verbose] [-Debug] [-ErrorAction <A
                      ctionPreference>] [-WarningAction <ActionPreference>] [-E
                      rrorVariable <String>] [-WarningVariable <String>] [-OutV
                      ariable <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : 
OutputType          : {Microsoft.PowerShell.Commands.MemberDefinition}
Name                : Get-Member
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[InputObject, System.Management.Automation.ParameterMeta
                      data], [Name, System.Management.Automation.ParameterMetad
                      ata], [MemberType, System.Management.Automation.Parameter
                      Metadata], [View, System.Management.Automation.ParameterM
                      etadata]...}
ParameterSets       : {[[-Name] <String[]>] [-InputObject <PSObject>] [-MemberT
                      ype <PSMemberTypes>] [-View <PSMemberViewTypes>] [-Static
                      ] [-Force] [-Verbose] [-Debug] [-ErrorAction <ActionPrefe
                      rence>] [-WarningAction <ActionPreference>] [-ErrorVariab
                      le <String>] [-WarningVariable <String>] [-OutVariable <S
                      tring>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113322
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : Get
Noun                : Module
HelpFile            : System.Management.Automation.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Core
ImplementingType    : Microsoft.PowerShell.Commands.GetModuleCommand
Definition          : Get-Module [[-Name] <String[]>] [-All] [-Verbose] [-Debug
                      ] [-ErrorAction <ActionPreference>] [-WarningAction <Acti
                      onPreference>] [-ErrorVariable <String>] [-WarningVariabl
                      e <String>] [-OutVariable <String>] [-OutBuffer <Int32>]
                      Get-Module [[-Name] <String[]>] [-All] [-ListAvailable] [
                      -Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-Wa
                      rningAction <ActionPreference>] [-ErrorVariable <String>]
                       [-WarningVariable <String>] [-OutVariable <String>] [-Ou
                      tBuffer <Int32>]
                      
DefaultParameterSet : Loaded
OutputType          : {System.Management.Automation.PSModuleInfo}
Name                : Get-Module
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Core
Module              : 
Parameters          : {[Name, System.Management.Automation.ParameterMetadata], 
                      [All, System.Management.Automation.ParameterMetadata], [L
                      istAvailable, System.Management.Automation.ParameterMetad
                      ata], [Verbose, System.Management.Automation.ParameterMet
                      adata]...}
ParameterSets       : {[[-Name] <String[]>] [-All] [-Verbose] [-Debug] [-ErrorA
                      ction <ActionPreference>] [-WarningAction <ActionPreferen
                      ce>] [-ErrorVariable <String>] [-WarningVariable <String>
                      ] [-OutVariable <String>] [-OutBuffer <Int32>], [[-Name] 
                      <String[]>] [-All] [-ListAvailable] [-Verbose] [-Debug] [
                      -ErrorAction <ActionPreference>] [-WarningAction <ActionP
                      reference>] [-ErrorVariable <String>] [-WarningVariable <
                      String>] [-OutVariable <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=141552
DLL                 : C:\Windows\assembly\GAC_MSIL\System.Management.Automation
                      \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d
                      ll


Verb                : Get
Noun                : PfxCertificate
HelpFile            : Microsoft.PowerShell.Security.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Security
ImplementingType    : Microsoft.PowerShell.Commands.GetPfxCertificateCommand
Definition          : Get-PfxCertificate [-FilePath] <String[]> [-Verbose] [-De
                      bug] [-ErrorAction <ActionPreference>] [-WarningAction <A
                      ctionPreference>] [-ErrorVariable <String>] [-WarningVari
                      able <String>] [-OutVariable <String>] [-OutBuffer <Int32
                      >]
                      
DefaultParameterSet : 
OutputType          : {System.Security.Cryptography.X509Certificates.X509Certif
                      icate2}
Name                : Get-PfxCertificate
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Security
Module              : 
Parameters          : {[FilePath, System.Management.Automation.ParameterMetadat
                      a], [Verbose, System.Management.Automation.ParameterMetad
                      ata], [Debug, System.Management.Automation.ParameterMetad
                      ata], [ErrorAction, System.Management.Automation.Paramete
                      rMetadata]...}
ParameterSets       : {[-FilePath] <String[]> [-Verbose] [-Debug] [-ErrorAction
                       <ActionPreference>] [-WarningAction <ActionPreference>] 
                      [-ErrorVariable <String>] [-WarningVariable <String>] [-O
                      utVariable <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113323
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Securit
                      y\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.Security
                      .dll


Verb                : Get
Noun                : Process
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.GetProcessCommand
Definition          : Get-Process [[-Name] <String[]>] [-ComputerName <String[]
                      >] [-Module] [-FileVersionInfo] [-Verbose] [-Debug] [-Err
                      orAction <ActionPreference>] [-WarningAction <ActionPrefe
                      rence>] [-ErrorVariable <String>] [-WarningVariable <Stri
                      ng>] [-OutVariable <String>] [-OutBuffer <Int32>]
                      Get-Process -Id <Int32[]> [-ComputerName <String[]>] [-Mo
                      dule] [-FileVersionInfo] [-Verbose] [-Debug] [-ErrorActio
                      n <ActionPreference>] [-WarningAction <ActionPreference>]
                       [-ErrorVariable <String>] [-WarningVariable <String>] [-
                      OutVariable <String>] [-OutBuffer <Int32>]
                      Get-Process [-ComputerName <String[]>] [-Module] [-FileVe
                      rsionInfo] -InputObject <Process[]> [-Verbose] [-Debug] [
                      -ErrorAction <ActionPreference>] [-WarningAction <ActionP
                      reference>] [-ErrorVariable <String>] [-WarningVariable <
                      String>] [-OutVariable <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : Name
OutputType          : {System.Diagnostics.ProcessModule, System.Diagnostics.Fil
                      eVersionInfo, System.Diagnostics.Process}
Name                : Get-Process
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[Name, System.Management.Automation.ParameterMetadata], 
                      [Id, System.Management.Automation.ParameterMetadata], [Co
                      mputerName, System.Management.Automation.ParameterMetadat
                      a], [Module, System.Management.Automation.ParameterMetada
                      ta]...}
ParameterSets       : {[[-Name] <String[]>] [-ComputerName <String[]>] [-Module
                      ] [-FileVersionInfo] [-Verbose] [-Debug] [-ErrorAction <A
                      ctionPreference>] [-WarningAction <ActionPreference>] [-E
                      rrorVariable <String>] [-WarningVariable <String>] [-OutV
                      ariable <String>] [-OutBuffer <Int32>], -Id <Int32[]> [-C
                      omputerName <String[]>] [-Module] [-FileVersionInfo] [-Ve
                      rbose] [-Debug] [-ErrorAction <ActionPreference>] [-Warni
                      ngAction <ActionPreference>] [-ErrorVariable <String>] [-
                      WarningVariable <String>] [-OutVariable <String>] [-OutBu
                      ffer <Int32>], [-ComputerName <String[]>] [-Module] [-Fil
                      eVersionInfo] -InputObject <Process[]> [-Verbose] [-Debug
                      ] [-ErrorAction <ActionPreference>] [-WarningAction <Acti
                      onPreference>] [-ErrorVariable <String>] [-WarningVariabl
                      e <String>] [-OutVariable <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113324
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : Get
Noun                : PSBreakpoint
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.GetPSBreakpointCommand
Definition          : Get-PSBreakpoint [[-Script] <String[]>] [-Verbose] [-Debu
                      g] [-ErrorAction <ActionPreference>] [-WarningAction <Act
                      ionPreference>] [-ErrorVariable <String>] [-WarningVariab
                      le <String>] [-OutVariable <String>] [-OutBuffer <Int32>]
                      Get-PSBreakpoint [-Type] <BreakpointType[]> [-Script <Str
                      ing[]>] [-Verbose] [-Debug] [-ErrorAction <ActionPreferen
                      ce>] [-WarningAction <ActionPreference>] [-ErrorVariable 
                      <String>] [-WarningVariable <String>] [-OutVariable <Stri
                      ng>] [-OutBuffer <Int32>]
                      Get-PSBreakpoint [-Script <String[]>] -Variable <String[]
                      > [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [
                      -WarningAction <ActionPreference>] [-ErrorVariable <Strin
                      g>] [-WarningVariable <String>] [-OutVariable <String>] [
                      -OutBuffer <Int32>]
                      Get-PSBreakpoint [-Script <String[]>] -Command <String[]>
                       [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-
                      WarningAction <ActionPreference>] [-ErrorVariable <String
                      >] [-WarningVariable <String>] [-OutVariable <String>] [-
                      OutBuffer <Int32>]
                      Get-PSBreakpoint [-Id] <Int32[]> [-Verbose] [-Debug] [-Er
                      rorAction <ActionPreference>] [-WarningAction <ActionPref
                      erence>] [-ErrorVariable <String>] [-WarningVariable <Str
                      ing>] [-OutVariable <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : Script
OutputType          : {System.Management.Automation.Breakpoint}
Name                : Get-PSBreakpoint
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[Script, System.Management.Automation.ParameterMetadata]
                      , [Id, System.Management.Automation.ParameterMetadata], [
                      Variable, System.Management.Automation.ParameterMetadata]
                      , [Command, System.Management.Automation.ParameterMetadat
                      a]...}
ParameterSets       : {[[-Script] <String[]>] [-Verbose] [-Debug] [-ErrorAction
                       <ActionPreference>] [-WarningAction <ActionPreference>] 
                      [-ErrorVariable <String>] [-WarningVariable <String>] [-O
                      utVariable <String>] [-OutBuffer <Int32>], [-Type] <Break
                      pointType[]> [-Script <String[]>] [-Verbose] [-Debug] [-E
                      rrorAction <ActionPreference>] [-WarningAction <ActionPre
                      ference>] [-ErrorVariable <String>] [-WarningVariable <St
                      ring>] [-OutVariable <String>] [-OutBuffer <Int32>], [-Sc
                      ript <String[]>] -Variable <String[]> [-Verbose] [-Debug]
                       [-ErrorAction <ActionPreference>] [-WarningAction <Actio
                      nPreference>] [-ErrorVariable <String>] [-WarningVariable
                       <String>] [-OutVariable <String>] [-OutBuffer <Int32>], 
                      [-Script <String[]>] -Command <String[]> [-Verbose] [-Deb
                      ug] [-ErrorAction <ActionPreference>] [-WarningAction <Ac
                      tionPreference>] [-ErrorVariable <String>] [-WarningVaria
                      ble <String>] [-OutVariable <String>] [-OutBuffer <Int32>
                      ]...}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113325
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : Get
Noun                : PSCallStack
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.GetPSCallStackCommand
Definition          : Get-PSCallStack [-Verbose] [-Debug] [-ErrorAction <Action
                      Preference>] [-WarningAction <ActionPreference>] [-ErrorV
                      ariable <String>] [-WarningVariable <String>] [-OutVariab
                      le <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : 
OutputType          : {System.Management.Automation.CallStackFrame}
Name                : Get-PSCallStack
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[Verbose, System.Management.Automation.ParameterMetadata
                      ], [Debug, System.Management.Automation.ParameterMetadata
                      ], [ErrorAction, System.Management.Automation.ParameterMe
                      tadata], [WarningAction, System.Management.Automation.Par
                      ameterMetadata]...}
ParameterSets       : {[-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-
                      WarningAction <ActionPreference>] [-ErrorVariable <String
                      >] [-WarningVariable <String>] [-OutVariable <String>] [-
                      OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113326
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : Get
Noun                : PSDrive
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.GetPSDriveCommand
Definition          : Get-PSDrive [[-Name] <String[]>] [-Scope <String>] [-PSPr
                      ovider <String[]>] [-Verbose] [-Debug] [-ErrorAction <Act
                      ionPreference>] [-WarningAction <ActionPreference>] [-Err
                      orVariable <String>] [-WarningVariable <String>] [-OutVar
                      iable <String>] [-OutBuffer <Int32>] [-UseTransaction]
                      Get-PSDrive [-LiteralName] <String[]> [-Scope <String>] [
                      -PSProvider <String[]>] [-Verbose] [-Debug] [-ErrorAction
                       <ActionPreference>] [-WarningAction <ActionPreference>] 
                      [-ErrorVariable <String>] [-WarningVariable <String>] [-O
                      utVariable <String>] [-OutBuffer <Int32>] [-UseTransactio
                      n]
                      
DefaultParameterSet : Name
OutputType          : {System.Management.Automation.PSDriveInfo}
Name                : Get-PSDrive
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[Name, System.Management.Automation.ParameterMetadata], 
                      [LiteralName, System.Management.Automation.ParameterMetad
                      ata], [Scope, System.Management.Automation.ParameterMetad
                      ata], [PSProvider, System.Management.Automation.Parameter
                      Metadata]...}
ParameterSets       : {[[-Name] <String[]>] [-Scope <String>] [-PSProvider <Str
                      ing[]>] [-Verbose] [-Debug] [-ErrorAction <ActionPreferen
                      ce>] [-WarningAction <ActionPreference>] [-ErrorVariable 
                      <String>] [-WarningVariable <String>] [-OutVariable <Stri
                      ng>] [-OutBuffer <Int32>] [-UseTransaction], [-LiteralNam
                      e] <String[]> [-Scope <String>] [-PSProvider <String[]>] 
                      [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-W
                      arningAction <ActionPreference>] [-ErrorVariable <String>
                      ] [-WarningVariable <String>] [-OutVariable <String>] [-O
                      utBuffer <Int32>] [-UseTransaction]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113327
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : Get
Noun                : PSProvider
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.GetPSProviderCommand
Definition          : Get-PSProvider [[-PSProvider] <String[]>] [-Verbose] [-De
                      bug] [-ErrorAction <ActionPreference>] [-WarningAction <A
                      ctionPreference>] [-ErrorVariable <String>] [-WarningVari
                      able <String>] [-OutVariable <String>] [-OutBuffer <Int32
                      >]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Get-PSProvider
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[PSProvider, System.Management.Automation.ParameterMetad
                      ata], [Verbose, System.Management.Automation.ParameterMet
                      adata], [Debug, System.Management.Automation.ParameterMet
                      adata], [ErrorAction, System.Management.Automation.Parame
                      terMetadata]...}
ParameterSets       : {[[-PSProvider] <String[]>] [-Verbose] [-Debug] [-ErrorAc
                      tion <ActionPreference>] [-WarningAction <ActionPreferenc
                      e>] [-ErrorVariable <String>] [-WarningVariable <String>]
                       [-OutVariable <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113329
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : Get
Noun                : PSSession
HelpFile            : System.Management.Automation.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Core
ImplementingType    : Microsoft.PowerShell.Commands.GetPSSessionCommand
Definition          : Get-PSSession [[-ComputerName] <String[]>] [-Verbose] [-D
                      ebug] [-ErrorAction <ActionPreference>] [-WarningAction <
                      ActionPreference>] [-ErrorVariable <String>] [-WarningVar
                      iable <String>] [-OutVariable <String>] [-OutBuffer <Int3
                      2>]
                      Get-PSSession [-InstanceId <Guid[]>] [-Verbose] [-Debug] 
                      [-ErrorAction <ActionPreference>] [-WarningAction <Action
                      Preference>] [-ErrorVariable <String>] [-WarningVariable 
                      <String>] [-OutVariable <String>] [-OutBuffer <Int32>]
                      Get-PSSession [-Id] <Int32[]> [-Verbose] [-Debug] [-Error
                      Action <ActionPreference>] [-WarningAction <ActionPrefere
                      nce>] [-ErrorVariable <String>] [-WarningVariable <String
                      >] [-OutVariable <String>] [-OutBuffer <Int32>]
                      Get-PSSession [-Name <String[]>] [-Verbose] [-Debug] [-Er
                      rorAction <ActionPreference>] [-WarningAction <ActionPref
                      erence>] [-ErrorVariable <String>] [-WarningVariable <Str
                      ing>] [-OutVariable <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : ComputerName
OutputType          : {}
Name                : Get-PSSession
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Core
Module              : 
Parameters          : {[InstanceId, System.Management.Automation.ParameterMetad
                      ata], [Id, System.Management.Automation.ParameterMetadata
                      ], [Name, System.Management.Automation.ParameterMetadata]
                      , [ComputerName, System.Management.Automation.ParameterMe
                      tadata]...}
ParameterSets       : {[[-ComputerName] <String[]>] [-Verbose] [-Debug] [-Error
                      Action <ActionPreference>] [-WarningAction <ActionPrefere
                      nce>] [-ErrorVariable <String>] [-WarningVariable <String
                      >] [-OutVariable <String>] [-OutBuffer <Int32>], [-Instan
                      ceId <Guid[]>] [-Verbose] [-Debug] [-ErrorAction <ActionP
                      reference>] [-WarningAction <ActionPreference>] [-ErrorVa
                      riable <String>] [-WarningVariable <String>] [-OutVariabl
                      e <String>] [-OutBuffer <Int32>], [-Id] <Int32[]> [-Verbo
                      se] [-Debug] [-ErrorAction <ActionPreference>] [-WarningA
                      ction <ActionPreference>] [-ErrorVariable <String>] [-War
                      ningVariable <String>] [-OutVariable <String>] [-OutBuffe
                      r <Int32>], [-Name <String[]>] [-Verbose] [-Debug] [-Erro
                      rAction <ActionPreference>] [-WarningAction <ActionPrefer
                      ence>] [-ErrorVariable <String>] [-WarningVariable <Strin
                      g>] [-OutVariable <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=135219
DLL                 : C:\Windows\assembly\GAC_MSIL\System.Management.Automation
                      \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d
                      ll


Verb                : Get
Noun                : PSSessionConfiguration
HelpFile            : System.Management.Automation.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Core
ImplementingType    : Microsoft.PowerShell.Commands.GetPSSessionConfigurationCo
                      mmand
Definition          : Get-PSSessionConfiguration [[-Name] <String[]>] [-Verbose
                      ] [-Debug] [-ErrorAction <ActionPreference>] [-WarningAct
                      ion <ActionPreference>] [-ErrorVariable <String>] [-Warni
                      ngVariable <String>] [-OutVariable <String>] [-OutBuffer 
                      <Int32>]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Get-PSSessionConfiguration
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Core
Module              : 
Parameters          : {[Name, System.Management.Automation.ParameterMetadata], 
                      [Verbose, System.Management.Automation.ParameterMetadata]
                      , [Debug, System.Management.Automation.ParameterMetadata]
                      , [ErrorAction, System.Management.Automation.ParameterMet
                      adata]...}
ParameterSets       : {[[-Name] <String[]>] [-Verbose] [-Debug] [-ErrorAction <
                      ActionPreference>] [-WarningAction <ActionPreference>] [-
                      ErrorVariable <String>] [-WarningVariable <String>] [-Out
                      Variable <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=144304
DLL                 : C:\Windows\assembly\GAC_MSIL\System.Management.Automation
                      \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d
                      ll


Verb                : Get
Noun                : PSSnapin
HelpFile            : System.Management.Automation.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Core
ImplementingType    : Microsoft.PowerShell.Commands.GetPSSnapinCommand
Definition          : Get-PSSnapin [[-Name] <String[]>] [-Registered] [-Verbose
                      ] [-Debug] [-ErrorAction <ActionPreference>] [-WarningAct
                      ion <ActionPreference>] [-ErrorVariable <String>] [-Warni
                      ngVariable <String>] [-OutVariable <String>] [-OutBuffer 
                      <Int32>]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Get-PSSnapin
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Core
Module              : 
Parameters          : {[Name, System.Management.Automation.ParameterMetadata], 
                      [Registered, System.Management.Automation.ParameterMetada
                      ta], [Verbose, System.Management.Automation.ParameterMeta
                      data], [Debug, System.Management.Automation.ParameterMeta
                      data]...}
ParameterSets       : {[[-Name] <String[]>] [-Registered] [-Verbose] [-Debug] [
                      -ErrorAction <ActionPreference>] [-WarningAction <ActionP
                      reference>] [-ErrorVariable <String>] [-WarningVariable <
                      String>] [-OutVariable <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113330
DLL                 : C:\Windows\assembly\GAC_MSIL\System.Management.Automation
                      \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d
                      ll


Verb                : Get
Noun                : Random
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.GetRandomCommand
Definition          : Get-Random [[-Maximum] <Object>] [-SetSeed <Nullable`1>] 
                      [-Minimum <Object>] [-Verbose] [-Debug] [-ErrorAction <Ac
                      tionPreference>] [-WarningAction <ActionPreference>] [-Er
                      rorVariable <String>] [-WarningVariable <String>] [-OutVa
                      riable <String>] [-OutBuffer <Int32>]
                      Get-Random [-InputObject] <Object[]> [-SetSeed <Nullable`
                      1>] [-Count <Int32>] [-Verbose] [-Debug] [-ErrorAction <A
                      ctionPreference>] [-WarningAction <ActionPreference>] [-E
                      rrorVariable <String>] [-WarningVariable <String>] [-OutV
                      ariable <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : RandomNumberParameterSet
OutputType          : {}
Name                : Get-Random
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[SetSeed, System.Management.Automation.ParameterMetadata
                      ], [Maximum, System.Management.Automation.ParameterMetada
                      ta], [Minimum, System.Management.Automation.ParameterMeta
                      data], [InputObject, System.Management.Automation.Paramet
                      erMetadata]...}
ParameterSets       : {[[-Maximum] <Object>] [-SetSeed <Nullable`1>] [-Minimum 
                      <Object>] [-Verbose] [-Debug] [-ErrorAction <ActionPrefer
                      ence>] [-WarningAction <ActionPreference>] [-ErrorVariabl
                      e <String>] [-WarningVariable <String>] [-OutVariable <St
                      ring>] [-OutBuffer <Int32>], [-InputObject] <Object[]> [-
                      SetSeed <Nullable`1>] [-Count <Int32>] [-Verbose] [-Debug
                      ] [-ErrorAction <ActionPreference>] [-WarningAction <Acti
                      onPreference>] [-ErrorVariable <String>] [-WarningVariabl
                      e <String>] [-OutVariable <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113446
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : Get
Noun                : Service
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.GetServiceCommand
Definition          : Get-Service [[-Name] <String[]>] [-ComputerName <String[]
                      >] [-DependentServices] [-RequiredServices] [-Include <St
                      ring[]>] [-Exclude <String[]>] [-Verbose] [-Debug] [-Erro
                      rAction <ActionPreference>] [-WarningAction <ActionPrefer
                      ence>] [-ErrorVariable <String>] [-WarningVariable <Strin
                      g>] [-OutVariable <String>] [-OutBuffer <Int32>]
                      Get-Service [-ComputerName <String[]>] [-DependentService
                      s] [-RequiredServices] -DisplayName <String[]> [-Include 
                      <String[]>] [-Exclude <String[]>] [-Verbose] [-Debug] [-E
                      rrorAction <ActionPreference>] [-WarningAction <ActionPre
                      ference>] [-ErrorVariable <String>] [-WarningVariable <St
                      ring>] [-OutVariable <String>] [-OutBuffer <Int32>]
                      Get-Service [-ComputerName <String[]>] [-DependentService
                      s] [-RequiredServices] [-Include <String[]>] [-Exclude <S
                      tring[]>] [-InputObject <ServiceController[]>] [-Verbose]
                       [-Debug] [-ErrorAction <ActionPreference>] [-WarningActi
                      on <ActionPreference>] [-ErrorVariable <String>] [-Warnin
                      gVariable <String>] [-OutVariable <String>] [-OutBuffer <
                      Int32>]
                      
DefaultParameterSet : Default
OutputType          : {System.ServiceProcess.ServiceController}
Name                : Get-Service
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[Name, System.Management.Automation.ParameterMetadata], 
                      [ComputerName, System.Management.Automation.ParameterMeta
                      data], [DependentServices, System.Management.Automation.P
                      arameterMetadata], [RequiredServices, System.Management.A
                      utomation.ParameterMetadata]...}
ParameterSets       : {[[-Name] <String[]>] [-ComputerName <String[]>] [-Depend
                      entServices] [-RequiredServices] [-Include <String[]>] [-
                      Exclude <String[]>] [-Verbose] [-Debug] [-ErrorAction <Ac
                      tionPreference>] [-WarningAction <ActionPreference>] [-Er
                      rorVariable <String>] [-WarningVariable <String>] [-OutVa
                      riable <String>] [-OutBuffer <Int32>], [-ComputerName <St
                      ring[]>] [-DependentServices] [-RequiredServices] -Displa
                      yName <String[]> [-Include <String[]>] [-Exclude <String[
                      ]>] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>]
                       [-WarningAction <ActionPreference>] [-ErrorVariable <Str
                      ing>] [-WarningVariable <String>] [-OutVariable <String>]
                       [-OutBuffer <Int32>], [-ComputerName <String[]>] [-Depen
                      dentServices] [-RequiredServices] [-Include <String[]>] [
                      -Exclude <String[]>] [-InputObject <ServiceController[]>]
                       [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-
                      WarningAction <ActionPreference>] [-ErrorVariable <String
                      >] [-WarningVariable <String>] [-OutVariable <String>] [-
                      OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113332
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : Get
Noun                : TraceSource
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.GetTraceSourceCommand
Definition          : Get-TraceSource [[-Name] <String[]>] [-Verbose] [-Debug] 
                      [-ErrorAction <ActionPreference>] [-WarningAction <Action
                      Preference>] [-ErrorVariable <String>] [-WarningVariable 
                      <String>] [-OutVariable <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Get-TraceSource
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[Name, System.Management.Automation.ParameterMetadata], 
                      [Verbose, System.Management.Automation.ParameterMetadata]
                      , [Debug, System.Management.Automation.ParameterMetadata]
                      , [ErrorAction, System.Management.Automation.ParameterMet
                      adata]...}
ParameterSets       : {[[-Name] <String[]>] [-Verbose] [-Debug] [-ErrorAction <
                      ActionPreference>] [-WarningAction <ActionPreference>] [-
                      ErrorVariable <String>] [-WarningVariable <String>] [-Out
                      Variable <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113333
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : Get
Noun                : Transaction
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.GetTransactionCommand
Definition          : Get-Transaction [-Verbose] [-Debug] [-ErrorAction <Action
                      Preference>] [-WarningAction <ActionPreference>] [-ErrorV
                      ariable <String>] [-WarningVariable <String>] [-OutVariab
                      le <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : 
OutputType          : {System.Management.Automation.PSTransaction}
Name                : Get-Transaction
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[Verbose, System.Management.Automation.ParameterMetadata
                      ], [Debug, System.Management.Automation.ParameterMetadata
                      ], [ErrorAction, System.Management.Automation.ParameterMe
                      tadata], [WarningAction, System.Management.Automation.Par
                      ameterMetadata]...}
ParameterSets       : {[-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-
                      WarningAction <ActionPreference>] [-ErrorVariable <String
                      >] [-WarningVariable <String>] [-OutVariable <String>] [-
                      OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=135220
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : Get
Noun                : UICulture
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.GetUICultureCommand
Definition          : Get-UICulture [-Verbose] [-Debug] [-ErrorAction <ActionPr
                      eference>] [-WarningAction <ActionPreference>] [-ErrorVar
                      iable <String>] [-WarningVariable <String>] [-OutVariable
                       <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : 
OutputType          : {System.Globalization.CultureInfo}
Name                : Get-UICulture
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[Verbose, System.Management.Automation.ParameterMetadata
                      ], [Debug, System.Management.Automation.ParameterMetadata
                      ], [ErrorAction, System.Management.Automation.ParameterMe
                      tadata], [WarningAction, System.Management.Automation.Par
                      ameterMetadata]...}
ParameterSets       : {[-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-
                      WarningAction <ActionPreference>] [-ErrorVariable <String
                      >] [-WarningVariable <String>] [-OutVariable <String>] [-
                      OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113334
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : Get
Noun                : Unique
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.GetUniqueCommand
Definition          : Get-Unique [-InputObject <PSObject>] [-AsString] [-Verbos
                      e] [-Debug] [-ErrorAction <ActionPreference>] [-WarningAc
                      tion <ActionPreference>] [-ErrorVariable <String>] [-Warn
                      ingVariable <String>] [-OutVariable <String>] [-OutBuffer
                       <Int32>]
                      Get-Unique [-InputObject <PSObject>] [-OnType] [-Verbose]
                       [-Debug] [-ErrorAction <ActionPreference>] [-WarningActi
                      on <ActionPreference>] [-ErrorVariable <String>] [-Warnin
                      gVariable <String>] [-OutVariable <String>] [-OutBuffer <
                      Int32>]
                      
DefaultParameterSet : AsString
OutputType          : {}
Name                : Get-Unique
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[InputObject, System.Management.Automation.ParameterMeta
                      data], [AsString, System.Management.Automation.ParameterM
                      etadata], [OnType, System.Management.Automation.Parameter
                      Metadata], [Verbose, System.Management.Automation.Paramet
                      erMetadata]...}
ParameterSets       : {[-InputObject <PSObject>] [-AsString] [-Verbose] [-Debug
                      ] [-ErrorAction <ActionPreference>] [-WarningAction <Acti
                      onPreference>] [-ErrorVariable <String>] [-WarningVariabl
                      e <String>] [-OutVariable <String>] [-OutBuffer <Int32>],
                       [-InputObject <PSObject>] [-OnType] [-Verbose] [-Debug] 
                      [-ErrorAction <ActionPreference>] [-WarningAction <Action
                      Preference>] [-ErrorVariable <String>] [-WarningVariable 
                      <String>] [-OutVariable <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113335
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : Get
Noun                : Variable
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.GetVariableCommand
Definition          : Get-Variable [[-Name] <String[]>] [-ValueOnly] [-Include 
                      <String[]>] [-Exclude <String[]>] [-Scope <String>] [-Ver
                      bose] [-Debug] [-ErrorAction <ActionPreference>] [-Warnin
                      gAction <ActionPreference>] [-ErrorVariable <String>] [-W
                      arningVariable <String>] [-OutVariable <String>] [-OutBuf
                      fer <Int32>]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Get-Variable
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[Name, System.Management.Automation.ParameterMetadata], 
                      [ValueOnly, System.Management.Automation.ParameterMetadat
                      a], [Include, System.Management.Automation.ParameterMetad
                      ata], [Exclude, System.Management.Automation.ParameterMet
                      adata]...}
ParameterSets       : {[[-Name] <String[]>] [-ValueOnly] [-Include <String[]>] 
                      [-Exclude <String[]>] [-Scope <String>] [-Verbose] [-Debu
                      g] [-ErrorAction <ActionPreference>] [-WarningAction <Act
                      ionPreference>] [-ErrorVariable <String>] [-WarningVariab
                      le <String>] [-OutVariable <String>] [-OutBuffer <Int32>]
                      }
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113336
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


ScriptBlock         : 
                      param(
                          [Parameter(ValueFromPipeline=$true)]
                          [string[]]
                          $verb = '*'
                      )
                      begin {
                      
                          $allVerbs = [PSObject].Assembly.GetTypes() |
                              Where-Object {$_.Name -match '^Verbs.'} |
                              Get-Member -type Properties -static |
                              Select-Object @{
                                  Name='Verb'
                                  Expression = {$_.Name}
                              }, @{
                                  Name='Group'
                                  Expression = {
                                      $str = "$($_.TypeName)"
                                      $str.Substring($str.LastIndexOf('Verbs') 
                      + 5)
                                  }                
                              }        
                      
                      }
                      process {
                      
                          foreach ($v in $verb) {
                              $allVerbs | Where-Object { $_.Verb -like $v }
                          }       
                      
                      }
                      
CmdletBinding       : True
DefaultParameterSet : 
Definition          : 
                      param(
                          [Parameter(ValueFromPipeline=$true)]
                          [string[]]
                          $verb = '*'
                      )
                      begin {
                      
                          $allVerbs = [PSObject].Assembly.GetTypes() |
                              Where-Object {$_.Name -match '^Verbs.'} |
                              Get-Member -type Properties -static |
                              Select-Object @{
                                  Name='Verb'
                                  Expression = {$_.Name}
                              }, @{
                                  Name='Group'
                                  Expression = {
                                      $str = "$($_.TypeName)"
                                      $str.Substring($str.LastIndexOf('Verbs') 
                      + 5)
                                  }                
                              }        
                      
                      }
                      process {
                      
                          foreach ($v in $verb) {
                              $allVerbs | Where-Object { $_.Verb -like $v }
                          }       
                      
                      }
                      
Options             : None
Description         : 
OutputType          : {}
Name                : Get-Verb
CommandType         : Function
Visibility          : Public
ModuleName          : 
Module              : 
Parameters          : {[verb, System.Management.Automation.ParameterMetadata], 
                      [Verbose, System.Management.Automation.ParameterMetadata]
                      , [Debug, System.Management.Automation.ParameterMetadata]
                      , [ErrorAction, System.Management.Automation.ParameterMet
                      adata]...}
ParameterSets       : {[[-verb] <String[]>] [-Verbose] [-Debug] [-ErrorAction <
                      ActionPreference>] [-WarningAction <ActionPreference>] [-
                      ErrorVariable <String>] [-WarningVariable <String>] [-Out
                      Variable <String>] [-OutBuffer <Int32>]}
HelpUri             : 


Verb                : Get
Noun                : WinEvent
HelpFile            : Microsoft.PowerShell.Commands.Diagnostics.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Diagnostics
ImplementingType    : Microsoft.PowerShell.Commands.GetWinEventCommand
Definition          : Get-WinEvent [[-LogName] <String[]>] [-MaxEvents <Int64>]
                       [-ComputerName <String>] [-Credential <PSCredential>] [-
                      FilterXPath <String>] [-Force] [-Oldest] [-Verbose] [-Deb
                      ug] [-ErrorAction <ActionPreference>] [-WarningAction <Ac
                      tionPreference>] [-ErrorVariable <String>] [-WarningVaria
                      ble <String>] [-OutVariable <String>] [-OutBuffer <Int32>
                      ]
                      Get-WinEvent [-ListLog] <String[]> [-ComputerName <String
                      >] [-Credential <PSCredential>] [-Force] [-Verbose] [-Deb
                      ug] [-ErrorAction <ActionPreference>] [-WarningAction <Ac
                      tionPreference>] [-ErrorVariable <String>] [-WarningVaria
                      ble <String>] [-OutVariable <String>] [-OutBuffer <Int32>
                      ]
                      Get-WinEvent [-ListProvider] <String[]> [-ComputerName <S
                      tring>] [-Credential <PSCredential>] [-Verbose] [-Debug] 
                      [-ErrorAction <ActionPreference>] [-WarningAction <Action
                      Preference>] [-ErrorVariable <String>] [-WarningVariable 
                      <String>] [-OutVariable <String>] [-OutBuffer <Int32>]
                      Get-WinEvent [-ProviderName] <String[]> [-MaxEvents <Int6
                      4>] [-ComputerName <String>] [-Credential <PSCredential>]
                       [-FilterXPath <String>] [-Force] [-Oldest] [-Verbose] [-
                      Debug] [-ErrorAction <ActionPreference>] [-WarningAction 
                      <ActionPreference>] [-ErrorVariable <String>] [-WarningVa
                      riable <String>] [-OutVariable <String>] [-OutBuffer <Int
                      32>]
                      Get-WinEvent [-Path] <String[]> [-MaxEvents <Int64>] [-Cr
                      edential <PSCredential>] [-FilterXPath <String>] [-Oldest
                      ] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [
                      -WarningAction <ActionPreference>] [-ErrorVariable <Strin
                      g>] [-WarningVariable <String>] [-OutVariable <String>] [
                      -OutBuffer <Int32>]
                      Get-WinEvent [-FilterXml] <XmlDocument> [-MaxEvents <Int6
                      4>] [-ComputerName <String>] [-Credential <PSCredential>]
                       [-Oldest] [-Verbose] [-Debug] [-ErrorAction <ActionPrefe
                      rence>] [-WarningAction <ActionPreference>] [-ErrorVariab
                      le <String>] [-WarningVariable <String>] [-OutVariable <S
                      tring>] [-OutBuffer <Int32>]
                      Get-WinEvent [-FilterHashtable] <Hashtable[]> [-MaxEvents
                       <Int64>] [-ComputerName <String>] [-Credential <PSCreden
                      tial>] [-Force] [-Oldest] [-Verbose] [-Debug] [-ErrorActi
                      on <ActionPreference>] [-WarningAction <ActionPreference>
                      ] [-ErrorVariable <String>] [-WarningVariable <String>] [
                      -OutVariable <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : GetLogSet
OutputType          : {}
Name                : Get-WinEvent
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Diagnostics
Module              : 
Parameters          : {[ListLog, System.Management.Automation.ParameterMetadata
                      ], [LogName, System.Management.Automation.ParameterMetada
                      ta], [ListProvider, System.Management.Automation.Paramete
                      rMetadata], [ProviderName, System.Management.Automation.P
                      arameterMetadata]...}
ParameterSets       : {[[-LogName] <String[]>] [-MaxEvents <Int64>] [-ComputerN
                      ame <String>] [-Credential <PSCredential>] [-FilterXPath 
                      <String>] [-Force] [-Oldest] [-Verbose] [-Debug] [-ErrorA
                      ction <ActionPreference>] [-WarningAction <ActionPreferen
                      ce>] [-ErrorVariable <String>] [-WarningVariable <String>
                      ] [-OutVariable <String>] [-OutBuffer <Int32>], [-ListLog
                      ] <String[]> [-ComputerName <String>] [-Credential <PSCre
                      dential>] [-Force] [-Verbose] [-Debug] [-ErrorAction <Act
                      ionPreference>] [-WarningAction <ActionPreference>] [-Err
                      orVariable <String>] [-WarningVariable <String>] [-OutVar
                      iable <String>] [-OutBuffer <Int32>], [-ListProvider] <St
                      ring[]> [-ComputerName <String>] [-Credential <PSCredenti
                      al>] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>
                      ] [-WarningAction <ActionPreference>] [-ErrorVariable <St
                      ring>] [-WarningVariable <String>] [-OutVariable <String>
                      ] [-OutBuffer <Int32>], [-ProviderName] <String[]> [-MaxE
                      vents <Int64>] [-ComputerName <String>] [-Credential <PSC
                      redential>] [-FilterXPath <String>] [-Force] [-Oldest] [-
                      Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-War
                      ningAction <ActionPreference>] [-ErrorVariable <String>] 
                      [-WarningVariable <String>] [-OutVariable <String>] [-Out
                      Buffer <Int32>]...}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=138336
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Diagnostics\1.0.0.0__31bf3856ad364e35\Microsoft.PowerSh
                      ell.Commands.Diagnostics.dll


Verb                : Get
Noun                : WmiObject
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.GetWmiObjectCommand
Definition          : Get-WmiObject [-Class] <String> [[-Property] <String[]>] 
                      [-Filter <String>] [-Amended] [-DirectRead] [-AsJob] [-Im
                      personation <ImpersonationLevel>] [-Authentication <Authe
                      nticationLevel>] [-Locale <String>] [-EnableAllPrivileges
                      ] [-Authority <String>] [-Credential <PSCredential>] [-Th
                      rottleLimit <Int32>] [-ComputerName <String[]>] [-Namespa
                      ce <String>] [-Verbose] [-Debug] [-ErrorAction <ActionPre
                      ference>] [-WarningAction <ActionPreference>] [-ErrorVari
                      able <String>] [-WarningVariable <String>] [-OutVariable 
                      <String>] [-OutBuffer <Int32>]
                      Get-WmiObject [[-Class] <String>] [-Recurse] [-Amended] [
                      -List] [-AsJob] [-Impersonation <ImpersonationLevel>] [-A
                      uthentication <AuthenticationLevel>] [-Locale <String>] [
                      -EnableAllPrivileges] [-Authority <String>] [-Credential 
                      <PSCredential>] [-ThrottleLimit <Int32>] [-ComputerName <
                      String[]>] [-Namespace <String>] [-Verbose] [-Debug] [-Er
                      rorAction <ActionPreference>] [-WarningAction <ActionPref
                      erence>] [-ErrorVariable <String>] [-WarningVariable <Str
                      ing>] [-OutVariable <String>] [-OutBuffer <Int32>]
                      Get-WmiObject [-Amended] [-DirectRead] -Query <String> [-
                      AsJob] [-Impersonation <ImpersonationLevel>] [-Authentica
                      tion <AuthenticationLevel>] [-Locale <String>] [-EnableAl
                      lPrivileges] [-Authority <String>] [-Credential <PSCreden
                      tial>] [-ThrottleLimit <Int32>] [-ComputerName <String[]>
                      ] [-Namespace <String>] [-Verbose] [-Debug] [-ErrorAction
                       <ActionPreference>] [-WarningAction <ActionPreference>] 
                      [-ErrorVariable <String>] [-WarningVariable <String>] [-O
                      utVariable <String>] [-OutBuffer <Int32>]
                      Get-WmiObject [-Amended] [-AsJob] [-Impersonation <Impers
                      onationLevel>] [-Authentication <AuthenticationLevel>] [-
                      Locale <String>] [-EnableAllPrivileges] [-Authority <Stri
                      ng>] [-Credential <PSCredential>] [-ThrottleLimit <Int32>
                      ] [-ComputerName <String[]>] [-Namespace <String>] [-Verb
                      ose] [-Debug] [-ErrorAction <ActionPreference>] [-Warning
                      Action <ActionPreference>] [-ErrorVariable <String>] [-Wa
                      rningVariable <String>] [-OutVariable <String>] [-OutBuff
                      er <Int32>]
                      Get-WmiObject [-Amended] [-AsJob] [-Impersonation <Impers
                      onationLevel>] [-Authentication <AuthenticationLevel>] [-
                      Locale <String>] [-EnableAllPrivileges] [-Authority <Stri
                      ng>] [-Credential <PSCredential>] [-ThrottleLimit <Int32>
                      ] [-ComputerName <String[]>] [-Namespace <String>] [-Verb
                      ose] [-Debug] [-ErrorAction <ActionPreference>] [-Warning
                      Action <ActionPreference>] [-ErrorVariable <String>] [-Wa
                      rningVariable <String>] [-OutVariable <String>] [-OutBuff
                      er <Int32>]
                      
DefaultParameterSet : query
OutputType          : {}
Name                : Get-WmiObject
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[Class, System.Management.Automation.ParameterMetadata],
                       [Recurse, System.Management.Automation.ParameterMetadata
                      ], [Property, System.Management.Automation.ParameterMetad
                      ata], [Filter, System.Management.Automation.ParameterMeta
                      data]...}
ParameterSets       : {[-Class] <String> [[-Property] <String[]>] [-Filter <Str
                      ing>] [-Amended] [-DirectRead] [-AsJob] [-Impersonation <
                      ImpersonationLevel>] [-Authentication <AuthenticationLeve
                      l>] [-Locale <String>] [-EnableAllPrivileges] [-Authority
                       <String>] [-Credential <PSCredential>] [-ThrottleLimit <
                      Int32>] [-ComputerName <String[]>] [-Namespace <String>] 
                      [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-W
                      arningAction <ActionPreference>] [-ErrorVariable <String>
                      ] [-WarningVariable <String>] [-OutVariable <String>] [-O
                      utBuffer <Int32>], [[-Class] <String>] [-Recurse] [-Amend
                      ed] [-List] [-AsJob] [-Impersonation <ImpersonationLevel>
                      ] [-Authentication <AuthenticationLevel>] [-Locale <Strin
                      g>] [-EnableAllPrivileges] [-Authority <String>] [-Creden
                      tial <PSCredential>] [-ThrottleLimit <Int32>] [-ComputerN
                      ame <String[]>] [-Namespace <String>] [-Verbose] [-Debug]
                       [-ErrorAction <ActionPreference>] [-WarningAction <Actio
                      nPreference>] [-ErrorVariable <String>] [-WarningVariable
                       <String>] [-OutVariable <String>] [-OutBuffer <Int32>], 
                      [-Amended] [-DirectRead] -Query <String> [-AsJob] [-Imper
                      sonation <ImpersonationLevel>] [-Authentication <Authenti
                      cationLevel>] [-Locale <String>] [-EnableAllPrivileges] [
                      -Authority <String>] [-Credential <PSCredential>] [-Throt
                      tleLimit <Int32>] [-ComputerName <String[]>] [-Namespace 
                      <String>] [-Verbose] [-Debug] [-ErrorAction <ActionPrefer
                      ence>] [-WarningAction <ActionPreference>] [-ErrorVariabl
                      e <String>] [-WarningVariable <String>] [-OutVariable <St
                      ring>] [-OutBuffer <Int32>], [-Amended] [-AsJob] [-Impers
                      onation <ImpersonationLevel>] [-Authentication <Authentic
                      ationLevel>] [-Locale <String>] [-EnableAllPrivileges] [-
                      Authority <String>] [-Credential <PSCredential>] [-Thrott
                      leLimit <Int32>] [-ComputerName <String[]>] [-Namespace <
                      String>] [-Verbose] [-Debug] [-ErrorAction <ActionPrefere
                      nce>] [-WarningAction <ActionPreference>] [-ErrorVariable
                       <String>] [-WarningVariable <String>] [-OutVariable <Str
                      ing>] [-OutBuffer <Int32>]...}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113337
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : Get
Noun                : WSManCredSSP
HelpFile            : Microsoft.WSMan.Management.dll-Help.xml
PSSnapIn            : Microsoft.WSMan.Management
ImplementingType    : Microsoft.WSMan.Management.GetWSManCredSSPCommand
Definition          : Get-WSManCredSSP [-Verbose] [-Debug] [-ErrorAction <Actio
                      nPreference>] [-WarningAction <ActionPreference>] [-Error
                      Variable <String>] [-WarningVariable <String>] [-OutVaria
                      ble <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Get-WSManCredSSP
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.WSMan.Management
Module              : 
Parameters          : {[Verbose, System.Management.Automation.ParameterMetadata
                      ], [Debug, System.Management.Automation.ParameterMetadata
                      ], [ErrorAction, System.Management.Automation.ParameterMe
                      tadata], [WarningAction, System.Management.Automation.Par
                      ameterMetadata]...}
ParameterSets       : {[-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-
                      WarningAction <ActionPreference>] [-ErrorVariable <String
                      >] [-WarningVariable <String>] [-OutVariable <String>] [-
                      OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkId=141443
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.WSMan.Management\1
                      .0.0.0__31bf3856ad364e35\Microsoft.WSMan.Management.dll


Verb                : Get
Noun                : WSManInstance
HelpFile            : Microsoft.WSMan.Management.dll-Help.xml
PSSnapIn            : Microsoft.WSMan.Management
ImplementingType    : Microsoft.WSMan.Management.GetWSManInstanceCommand
Definition          : Get-WSManInstance [-ResourceURI] <Uri> [-ApplicationName 
                      <String>] [-ComputerName <String>] [-ConnectionURI <Uri>]
                       [-Dialect <Uri>] [-Fragment <String>] [-OptionSet <Hasht
                      able>] [-Port <Int32>] [-SelectorSet <Hashtable>] [-Sessi
                      onOption <SessionOption>] [-UseSSL] [-Credential <PSCrede
                      ntial>] [-Authentication <AuthenticationMechanism>] [-Cer
                      tificateThumbprint <String>] [-Verbose] [-Debug] [-ErrorA
                      ction <ActionPreference>] [-WarningAction <ActionPreferen
                      ce>] [-ErrorVariable <String>] [-WarningVariable <String>
                      ] [-OutVariable <String>] [-OutBuffer <Int32>]
                      Get-WSManInstance [-ResourceURI] <Uri> [-ApplicationName 
                      <String>] [-BasePropertiesOnly] [-ComputerName <String>] 
                      [-ConnectionURI <Uri>] [-Dialect <Uri>] -Enumerate [-Filt
                      er <String>] [-OptionSet <Hashtable>] [-Port <Int32>] [-A
                      ssociations] [-ReturnType <String>] [-SessionOption <Sess
                      ionOption>] [-Shallow] [-UseSSL] [-Credential <PSCredenti
                      al>] [-Authentication <AuthenticationMechanism>] [-Certif
                      icateThumbprint <String>] [-Verbose] [-Debug] [-ErrorActi
                      on <ActionPreference>] [-WarningAction <ActionPreference>
                      ] [-ErrorVariable <String>] [-WarningVariable <String>] [
                      -OutVariable <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : GetInstance
OutputType          : {}
Name                : Get-WSManInstance
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.WSMan.Management
Module              : 
Parameters          : {[ApplicationName, System.Management.Automation.Parameter
                      Metadata], [BasePropertiesOnly, System.Management.Automat
                      ion.ParameterMetadata], [ComputerName, System.Management.
                      Automation.ParameterMetadata], [ConnectionURI, System.Man
                      agement.Automation.ParameterMetadata]...}
ParameterSets       : {[-ResourceURI] <Uri> [-ApplicationName <String>] [-Compu
                      terName <String>] [-ConnectionURI <Uri>] [-Dialect <Uri>]
                       [-Fragment <String>] [-OptionSet <Hashtable>] [-Port <In
                      t32>] [-SelectorSet <Hashtable>] [-SessionOption <Session
                      Option>] [-UseSSL] [-Credential <PSCredential>] [-Authent
                      ication <AuthenticationMechanism>] [-CertificateThumbprin
                      t <String>] [-Verbose] [-Debug] [-ErrorAction <ActionPref
                      erence>] [-WarningAction <ActionPreference>] [-ErrorVaria
                      ble <String>] [-WarningVariable <String>] [-OutVariable <
                      String>] [-OutBuffer <Int32>], [-ResourceURI] <Uri> [-App
                      licationName <String>] [-BasePropertiesOnly] [-ComputerNa
                      me <String>] [-ConnectionURI <Uri>] [-Dialect <Uri>] -Enu
                      merate [-Filter <String>] [-OptionSet <Hashtable>] [-Port
                       <Int32>] [-Associations] [-ReturnType <String>] [-Sessio
                      nOption <SessionOption>] [-Shallow] [-UseSSL] [-Credentia
                      l <PSCredential>] [-Authentication <AuthenticationMechani
                      sm>] [-CertificateThumbprint <String>] [-Verbose] [-Debug
                      ] [-ErrorAction <ActionPreference>] [-WarningAction <Acti
                      onPreference>] [-ErrorVariable <String>] [-WarningVariabl
                      e <String>] [-OutVariable <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkId=141444
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.WSMan.Management\1
                      .0.0.0__31bf3856ad364e35\Microsoft.WSMan.Management.dll

Name              : ghy
CommandType       : Alias
Definition        : Get-History
ReferencedCommand : Get-History
ResolvedCommand   : Get-History

Name              : gi
CommandType       : Alias
Definition        : Get-Item
ReferencedCommand : Get-Item
ResolvedCommand   : Get-Item

Name              : gjb
CommandType       : Alias
Definition        : Get-Job
ReferencedCommand : Get-Job
ResolvedCommand   : Get-Job

Name              : gl
CommandType       : Alias
Definition        : Get-Location
ReferencedCommand : Get-Location
ResolvedCommand   : Get-Location

Name              : gm
CommandType       : Alias
Definition        : Get-Member
ReferencedCommand : Get-Member
ResolvedCommand   : Get-Member

Name              : gmo
CommandType       : Alias
Definition        : Get-Module
ReferencedCommand : Get-Module
ResolvedCommand   : Get-Module

Name              : gp
CommandType       : Alias
Definition        : Get-ItemProperty
ReferencedCommand : Get-ItemProperty
ResolvedCommand   : Get-ItemProperty

Name              : gps
CommandType       : Alias
Definition        : Get-Process
ReferencedCommand : Get-Process
ResolvedCommand   : Get-Process

Name              : group
CommandType       : Alias
Definition        : Group-Object
ReferencedCommand : Group-Object
ResolvedCommand   : Group-Object


Verb                : Group
Noun                : Object
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.GroupObjectCommand
Definition          : Group-Object [[-Property] <Object[]>] [-NoElement] [-AsHa
                      shTable] [-AsString] [-InputObject <PSObject>] [-Culture 
                      <String>] [-CaseSensitive] [-Verbose] [-Debug] [-ErrorAct
                      ion <ActionPreference>] [-WarningAction <ActionPreference
                      >] [-ErrorVariable <String>] [-WarningVariable <String>] 
                      [-OutVariable <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Group-Object
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[NoElement, System.Management.Automation.ParameterMetada
                      ta], [AsHashTable, System.Management.Automation.Parameter
                      Metadata], [AsString, System.Management.Automation.Parame
                      terMetadata], [InputObject, System.Management.Automation.
                      ParameterMetadata]...}
ParameterSets       : {[[-Property] <Object[]>] [-NoElement] [-AsHashTable] [-A
                      sString] [-InputObject <PSObject>] [-Culture <String>] [-
                      CaseSensitive] [-Verbose] [-Debug] [-ErrorAction <ActionP
                      reference>] [-WarningAction <ActionPreference>] [-ErrorVa
                      riable <String>] [-WarningVariable <String>] [-OutVariabl
                      e <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113338
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll

Name              : gsn
CommandType       : Alias
Definition        : Get-PSSession
ReferencedCommand : Get-PSSession
ResolvedCommand   : Get-PSSession

Name              : gsnp
CommandType       : Alias
Definition        : Get-PSSnapIn
ReferencedCommand : Get-PSSnapin
ResolvedCommand   : Get-PSSnapin

Name              : gsv
CommandType       : Alias
Definition        : Get-Service
ReferencedCommand : Get-Service
ResolvedCommand   : Get-Service

Name              : gu
CommandType       : Alias
Definition        : Get-Unique
ReferencedCommand : Get-Unique
ResolvedCommand   : Get-Unique

Name              : gv
CommandType       : Alias
Definition        : Get-Variable
ReferencedCommand : Get-Variable
ResolvedCommand   : Get-Variable

Name              : gwmi
CommandType       : Alias
Definition        : Get-WmiObject
ReferencedCommand : Get-WmiObject
ResolvedCommand   : Get-WmiObject

Name              : h
CommandType       : Alias
Definition        : Get-History
ReferencedCommand : Get-History
ResolvedCommand   : Get-History


ScriptBlock         : Set-Location H:
CmdletBinding       : False
DefaultParameterSet : 
Definition          : Set-Location H:
Options             : None
Description         : 
OutputType          : {}
Name                : H:
CommandType         : Function
Visibility          : Public
ModuleName          : 
Module              : 
Parameters          : {}
ParameterSets       : {}
HelpUri             : 


ScriptBlock         : 
                      <#
                      .FORWARDHELPTARGETNAME Get-Help
                      .FORWARDHELPCATEGORY Cmdlet
                      #>
                      [CmdletBinding(DefaultParameterSetName='AllUsersView')]
                      param(
                          [Parameter(Position=0, ValueFromPipelineByPropertyNam
                      e=$true)]
                          [System.String]
                          ${Name},
                      
                          [System.String]
                          ${Path},
                      
                          [System.String[]]
                          ${Category},
                      
                          [System.String[]]
                          ${Component},
                      
                          [System.String[]]
                          ${Functionality},
                      
                          [System.String[]]
                          ${Role},
                      
                          [Parameter(ParameterSetName='DetailedView')]
                          [Switch]
                          ${Detailed},
                      
                          [Parameter(ParameterSetName='AllUsersView')]
                          [Switch]
                          ${Full},
                      
                          [Parameter(ParameterSetName='Examples')]
                          [Switch]
                          ${Examples},
                      
                          [Parameter(ParameterSetName='Parameters')]
                          [System.String]
                          ${Parameter},
                      
                          [Switch]
                          ${Online})
                      $outputEncoding=[System.Console]::OutputEncoding
                      
                            Get-Help @PSBoundParameters | more
                      
CmdletBinding       : True
DefaultParameterSet : AllUsersView
Definition          : 
                      <#
                      .FORWARDHELPTARGETNAME Get-Help
                      .FORWARDHELPCATEGORY Cmdlet
                      #>
                      [CmdletBinding(DefaultParameterSetName='AllUsersView')]
                      param(
                          [Parameter(Position=0, ValueFromPipelineByPropertyNam
                      e=$true)]
                          [System.String]
                          ${Name},
                      
                          [System.String]
                          ${Path},
                      
                          [System.String[]]
                          ${Category},
                      
                          [System.String[]]
                          ${Component},
                      
                          [System.String[]]
                          ${Functionality},
                      
                          [System.String[]]
                          ${Role},
                      
                          [Parameter(ParameterSetName='DetailedView')]
                          [Switch]
                          ${Detailed},
                      
                          [Parameter(ParameterSetName='AllUsersView')]
                          [Switch]
                          ${Full},
                      
                          [Parameter(ParameterSetName='Examples')]
                          [Switch]
                          ${Examples},
                      
                          [Parameter(ParameterSetName='Parameters')]
                          [System.String]
                          ${Parameter},
                      
                          [Switch]
                          ${Online})
                      $outputEncoding=[System.Console]::OutputEncoding
                      
                            Get-Help @PSBoundParameters | more
                      
Options             : None
Description         : 
OutputType          : {}
Name                : help
CommandType         : Function
Visibility          : Public
ModuleName          : 
Module              : 
Parameters          : {[Name, System.Management.Automation.ParameterMetadata], 
                      [Path, System.Management.Automation.ParameterMetadata], [
                      Category, System.Management.Automation.ParameterMetadata]
                      , [Component, System.Management.Automation.ParameterMetad
                      ata]...}
ParameterSets       : {[[-Name] <String>] [-Path <String>] [-Category <String[]
                      >] [-Component <String[]>] [-Functionality <String[]>] [-
                      Role <String[]>] [-Full] [-Online] [-Verbose] [-Debug] [-
                      ErrorAction <ActionPreference>] [-WarningAction <ActionPr
                      eference>] [-ErrorVariable <String>] [-WarningVariable <S
                      tring>] [-OutVariable <String>] [-OutBuffer <Int32>], [[-
                      Name] <String>] [-Path <String>] [-Category <String[]>] [
                      -Component <String[]>] [-Functionality <String[]>] [-Role
                       <String[]>] [-Detailed] [-Online] [-Verbose] [-Debug] [-
                      ErrorAction <ActionPreference>] [-WarningAction <ActionPr
                      eference>] [-ErrorVariable <String>] [-WarningVariable <S
                      tring>] [-OutVariable <String>] [-OutBuffer <Int32>], [[-
                      Name] <String>] [-Path <String>] [-Category <String[]>] [
                      -Component <String[]>] [-Functionality <String[]>] [-Role
                       <String[]>] [-Examples] [-Online] [-Verbose] [-Debug] [-
                      ErrorAction <ActionPreference>] [-WarningAction <ActionPr
                      eference>] [-ErrorVariable <String>] [-WarningVariable <S
                      tring>] [-OutVariable <String>] [-OutBuffer <Int32>], [[-
                      Name] <String>] [-Path <String>] [-Category <String[]>] [
                      -Component <String[]>] [-Functionality <String[]>] [-Role
                       <String[]>] [-Parameter <String>] [-Online] [-Verbose] [
                      -Debug] [-ErrorAction <ActionPreference>] [-WarningAction
                       <ActionPreference>] [-ErrorVariable <String>] [-WarningV
                      ariable <String>] [-OutVariable <String>] [-OutBuffer <In
                      t32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113316

Name              : history
CommandType       : Alias
Definition        : Get-History
ReferencedCommand : Get-History
ResolvedCommand   : Get-History


ScriptBlock         : Set-Location I:
CmdletBinding       : False
DefaultParameterSet : 
Definition          : Set-Location I:
Options             : None
Description         : 
OutputType          : {}
Name                : I:
CommandType         : Function
Visibility          : Public
ModuleName          : 
Module              : 
Parameters          : {}
ParameterSets       : {}
HelpUri             : 

Name              : icm
CommandType       : Alias
Definition        : Invoke-Command
ReferencedCommand : Invoke-Command
ResolvedCommand   : Invoke-Command

Name              : iex
CommandType       : Alias
Definition        : Invoke-Expression
ReferencedCommand : Invoke-Expression
ResolvedCommand   : Invoke-Expression

Name              : ihy
CommandType       : Alias
Definition        : Invoke-History
ReferencedCommand : Invoke-History
ResolvedCommand   : Invoke-History

Name              : ii
CommandType       : Alias
Definition        : Invoke-Item
ReferencedCommand : Invoke-Item
ResolvedCommand   : Invoke-Item


Verb                : Import
Noun                : Alias
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.ImportAliasCommand
Definition          : Import-Alias [-Path] <String> [-Scope <String>] [-PassThr
                      u] [-Force] [-Verbose] [-Debug] [-ErrorAction <ActionPref
                      erence>] [-WarningAction <ActionPreference>] [-ErrorVaria
                      ble <String>] [-WarningVariable <String>] [-OutVariable <
                      String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Import-Alias
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[Path, System.Management.Automation.ParameterMetadata], 
                      [Scope, System.Management.Automation.ParameterMetadata], 
                      [PassThru, System.Management.Automation.ParameterMetadata
                      ], [Force, System.Management.Automation.ParameterMetadata
                      ]...}
ParameterSets       : {[-Path] <String> [-Scope <String>] [-PassThru] [-Force] 
                      [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-W
                      arningAction <ActionPreference>] [-ErrorVariable <String>
                      ] [-WarningVariable <String>] [-OutVariable <String>] [-O
                      utBuffer <Int32>] [-WhatIf] [-Confirm]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113339
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : Import
Noun                : Clixml
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.ImportClixmlCommand
Definition          : Import-Clixml [-Path] <String[]> [-Verbose] [-Debug] [-Er
                      rorAction <ActionPreference>] [-WarningAction <ActionPref
                      erence>] [-ErrorVariable <String>] [-WarningVariable <Str
                      ing>] [-OutVariable <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Import-Clixml
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[Path, System.Management.Automation.ParameterMetadata], 
                      [Verbose, System.Management.Automation.ParameterMetadata]
                      , [Debug, System.Management.Automation.ParameterMetadata]
                      , [ErrorAction, System.Management.Automation.ParameterMet
                      adata]...}
ParameterSets       : {[-Path] <String[]> [-Verbose] [-Debug] [-ErrorAction <Ac
                      tionPreference>] [-WarningAction <ActionPreference>] [-Er
                      rorVariable <String>] [-WarningVariable <String>] [-OutVa
                      riable <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113340
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : Import
Noun                : Counter
HelpFile            : Microsoft.PowerShell.Commands.Diagnostics.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Diagnostics
ImplementingType    : Microsoft.PowerShell.Commands.ImportCounterCommand
Definition          : Import-Counter [-Path] <String[]> [-StartTime <DateTime>]
                       [-EndTime <DateTime>] [-Counter <String[]>] [-MaxSamples
                       <Int64>] [-Verbose] [-Debug] [-ErrorAction <ActionPrefer
                      ence>] [-WarningAction <ActionPreference>] [-ErrorVariabl
                      e <String>] [-WarningVariable <String>] [-OutVariable <St
                      ring>] [-OutBuffer <Int32>]
                      Import-Counter [-Path] <String[]> -ListSet <String[]> [-V
                      erbose] [-Debug] [-ErrorAction <ActionPreference>] [-Warn
                      ingAction <ActionPreference>] [-ErrorVariable <String>] [
                      -WarningVariable <String>] [-OutVariable <String>] [-OutB
                      uffer <Int32>]
                      Import-Counter [-Path] <String[]> [-Summary] [-Verbose] [
                      -Debug] [-ErrorAction <ActionPreference>] [-WarningAction
                       <ActionPreference>] [-ErrorVariable <String>] [-WarningV
                      ariable <String>] [-OutVariable <String>] [-OutBuffer <In
                      t32>]
                      
DefaultParameterSet : GetCounterSet
OutputType          : {}
Name                : Import-Counter
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Diagnostics
Module              : 
Parameters          : {[Path, System.Management.Automation.ParameterMetadata], 
                      [ListSet, System.Management.Automation.ParameterMetadata]
                      , [StartTime, System.Management.Automation.ParameterMetad
                      ata], [EndTime, System.Management.Automation.ParameterMet
                      adata]...}
ParameterSets       : {[-Path] <String[]> [-StartTime <DateTime>] [-EndTime <Da
                      teTime>] [-Counter <String[]>] [-MaxSamples <Int64>] [-Ve
                      rbose] [-Debug] [-ErrorAction <ActionPreference>] [-Warni
                      ngAction <ActionPreference>] [-ErrorVariable <String>] [-
                      WarningVariable <String>] [-OutVariable <String>] [-OutBu
                      ffer <Int32>], [-Path] <String[]> -ListSet <String[]> [-V
                      erbose] [-Debug] [-ErrorAction <ActionPreference>] [-Warn
                      ingAction <ActionPreference>] [-ErrorVariable <String>] [
                      -WarningVariable <String>] [-OutVariable <String>] [-OutB
                      uffer <Int32>], [-Path] <String[]> [-Summary] [-Verbose] 
                      [-Debug] [-ErrorAction <ActionPreference>] [-WarningActio
                      n <ActionPreference>] [-ErrorVariable <String>] [-Warning
                      Variable <String>] [-OutVariable <String>] [-OutBuffer <I
                      nt32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=138338
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Diagnostics\1.0.0.0__31bf3856ad364e35\Microsoft.PowerSh
                      ell.Commands.Diagnostics.dll


Verb                : Import
Noun                : Csv
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.ImportCsvCommand
Definition          : Import-Csv [-Path] <String[]> [[-Delimiter] <Char>] [-Hea
                      der <String[]>] [-Verbose] [-Debug] [-ErrorAction <Action
                      Preference>] [-WarningAction <ActionPreference>] [-ErrorV
                      ariable <String>] [-WarningVariable <String>] [-OutVariab
                      le <String>] [-OutBuffer <Int32>]
                      Import-Csv [-Path] <String[]> -UseCulture [-Header <Strin
                      g[]>] [-Verbose] [-Debug] [-ErrorAction <ActionPreference
                      >] [-WarningAction <ActionPreference>] [-ErrorVariable <S
                      tring>] [-WarningVariable <String>] [-OutVariable <String
                      >] [-OutBuffer <Int32>]
                      
DefaultParameterSet : Delimiter
OutputType          : {}
Name                : Import-Csv
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[Delimiter, System.Management.Automation.ParameterMetada
                      ta], [Path, System.Management.Automation.ParameterMetadat
                      a], [UseCulture, System.Management.Automation.ParameterMe
                      tadata], [Header, System.Management.Automation.ParameterM
                      etadata]...}
ParameterSets       : {[-Path] <String[]> [[-Delimiter] <Char>] [-Header <Strin
                      g[]>] [-Verbose] [-Debug] [-ErrorAction <ActionPreference
                      >] [-WarningAction <ActionPreference>] [-ErrorVariable <S
                      tring>] [-WarningVariable <String>] [-OutVariable <String
                      >] [-OutBuffer <Int32>], [-Path] <String[]> -UseCulture [
                      -Header <String[]>] [-Verbose] [-Debug] [-ErrorAction <Ac
                      tionPreference>] [-WarningAction <ActionPreference>] [-Er
                      rorVariable <String>] [-WarningVariable <String>] [-OutVa
                      riable <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113341
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : Import
Noun                : LocalizedData
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.ImportLocalizedData
Definition          : Import-LocalizedData [-BindingVariable] <String> [[-UICul
                      ture] <String>] [-BaseDirectory <String>] [-FileName <Str
                      ing>] [-SupportedCommand <String[]>] [-Verbose] [-Debug] 
                      [-ErrorAction <ActionPreference>] [-WarningAction <Action
                      Preference>] [-ErrorVariable <String>] [-WarningVariable 
                      <String>] [-OutVariable <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Import-LocalizedData
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[BindingVariable, System.Management.Automation.Parameter
                      Metadata], [UICulture, System.Management.Automation.Param
                      eterMetadata], [BaseDirectory, System.Management.Automati
                      on.ParameterMetadata], [FileName, System.Management.Autom
                      ation.ParameterMetadata]...}
ParameterSets       : {[-BindingVariable] <String> [[-UICulture] <String>] [-Ba
                      seDirectory <String>] [-FileName <String>] [-SupportedCom
                      mand <String[]>] [-Verbose] [-Debug] [-ErrorAction <Actio
                      nPreference>] [-WarningAction <ActionPreference>] [-Error
                      Variable <String>] [-WarningVariable <String>] [-OutVaria
                      ble <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113342
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : Import
Noun                : Module
HelpFile            : System.Management.Automation.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Core
ImplementingType    : Microsoft.PowerShell.Commands.ImportModuleCommand
Definition          : Import-Module [-Name] <String[]> [-Global] [-Prefix <Stri
                      ng>] [-Function <String[]>] [-Cmdlet <String[]>] [-Variab
                      le <String[]>] [-Alias <String[]>] [-Force] [-PassThru] [
                      -AsCustomObject] [-Version <Version>] [-ArgumentList <Obj
                      ect[]>] [-DisableNameChecking] [-Verbose] [-Debug] [-Erro
                      rAction <ActionPreference>] [-WarningAction <ActionPrefer
                      ence>] [-ErrorVariable <String>] [-WarningVariable <Strin
                      g>] [-OutVariable <String>] [-OutBuffer <Int32>]
                      Import-Module [-Assembly] <Assembly[]> [-Global] [-Prefix
                       <String>] [-Function <String[]>] [-Cmdlet <String[]>] [-
                      Variable <String[]>] [-Alias <String[]>] [-Force] [-PassT
                      hru] [-AsCustomObject] [-ArgumentList <Object[]>] [-Disab
                      leNameChecking] [-Verbose] [-Debug] [-ErrorAction <Action
                      Preference>] [-WarningAction <ActionPreference>] [-ErrorV
                      ariable <String>] [-WarningVariable <String>] [-OutVariab
                      le <String>] [-OutBuffer <Int32>]
                      Import-Module [-ModuleInfo] <PSModuleInfo[]> [-Global] [-
                      Prefix <String>] [-Function <String[]>] [-Cmdlet <String[
                      ]>] [-Variable <String[]>] [-Alias <String[]>] [-Force] [
                      -PassThru] [-AsCustomObject] [-ArgumentList <Object[]>] [
                      -DisableNameChecking] [-Verbose] [-Debug] [-ErrorAction <
                      ActionPreference>] [-WarningAction <ActionPreference>] [-
                      ErrorVariable <String>] [-WarningVariable <String>] [-Out
                      Variable <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : Name
OutputType          : {System.Management.Automation.PSModuleInfo}
Name                : Import-Module
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Core
Module              : 
Parameters          : {[Global, System.Management.Automation.ParameterMetadata]
                      , [Prefix, System.Management.Automation.ParameterMetadata
                      ], [Name, System.Management.Automation.ParameterMetadata]
                      , [Assembly, System.Management.Automation.ParameterMetada
                      ta]...}
ParameterSets       : {[-Name] <String[]> [-Global] [-Prefix <String>] [-Functi
                      on <String[]>] [-Cmdlet <String[]>] [-Variable <String[]>
                      ] [-Alias <String[]>] [-Force] [-PassThru] [-AsCustomObje
                      ct] [-Version <Version>] [-ArgumentList <Object[]>] [-Dis
                      ableNameChecking] [-Verbose] [-Debug] [-ErrorAction <Acti
                      onPreference>] [-WarningAction <ActionPreference>] [-Erro
                      rVariable <String>] [-WarningVariable <String>] [-OutVari
                      able <String>] [-OutBuffer <Int32>], [-Assembly] <Assembl
                      y[]> [-Global] [-Prefix <String>] [-Function <String[]>] 
                      [-Cmdlet <String[]>] [-Variable <String[]>] [-Alias <Stri
                      ng[]>] [-Force] [-PassThru] [-AsCustomObject] [-ArgumentL
                      ist <Object[]>] [-DisableNameChecking] [-Verbose] [-Debug
                      ] [-ErrorAction <ActionPreference>] [-WarningAction <Acti
                      onPreference>] [-ErrorVariable <String>] [-WarningVariabl
                      e <String>] [-OutVariable <String>] [-OutBuffer <Int32>],
                       [-ModuleInfo] <PSModuleInfo[]> [-Global] [-Prefix <Strin
                      g>] [-Function <String[]>] [-Cmdlet <String[]>] [-Variabl
                      e <String[]>] [-Alias <String[]>] [-Force] [-PassThru] [-
                      AsCustomObject] [-ArgumentList <Object[]>] [-DisableNameC
                      hecking] [-Verbose] [-Debug] [-ErrorAction <ActionPrefere
                      nce>] [-WarningAction <ActionPreference>] [-ErrorVariable
                       <String>] [-WarningVariable <String>] [-OutVariable <Str
                      ing>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=141553
DLL                 : C:\Windows\assembly\GAC_MSIL\System.Management.Automation
                      \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d
                      ll


Verb                : Import
Noun                : PSSession
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.ImportPSSessionCommand
Definition          : Import-PSSession [-Session] <PSSession> [[-CommandName] <
                      String[]>] [[-FormatTypeName] <String[]>] [-Prefix <Strin
                      g>] [-DisableNameChecking] [-AllowClobber] [-ArgumentList
                       <Object[]>] [-CommandType <CommandTypes>] [-Module <Stri
                      ng[]>] [-Verbose] [-Debug] [-ErrorAction <ActionPreferenc
                      e>] [-WarningAction <ActionPreference>] [-ErrorVariable <
                      String>] [-WarningVariable <String>] [-OutVariable <Strin
                      g>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Import-PSSession
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[Prefix, System.Management.Automation.ParameterMetadata]
                      , [DisableNameChecking, System.Management.Automation.Para
                      meterMetadata], [CommandName, System.Management.Automatio
                      n.ParameterMetadata], [AllowClobber, System.Management.Au
                      tomation.ParameterMetadata]...}
ParameterSets       : {[-Session] <PSSession> [[-CommandName] <String[]>] [[-Fo
                      rmatTypeName] <String[]>] [-Prefix <String>] [-DisableNam
                      eChecking] [-AllowClobber] [-ArgumentList <Object[]>] [-C
                      ommandType <CommandTypes>] [-Module <String[]>] [-Verbose
                      ] [-Debug] [-ErrorAction <ActionPreference>] [-WarningAct
                      ion <ActionPreference>] [-ErrorVariable <String>] [-Warni
                      ngVariable <String>] [-OutVariable <String>] [-OutBuffer 
                      <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=135221
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


ScriptBlock         : 
                                  $SnapIns = @(Get-PSSnapin -Registered -ErrorA
                      ction SilentlyContinue)
                                  $Modules = @(Get-Module -ListAvailable -Error
                      Action SilentlyContinue | ? { $_.ModuleBase -like "$pshom
                      e*" })
                                  Import-LocalizedData -BindingVariable Message
                      s -BaseDirectory $pshome -FileName ImportAllModules.psd1
                                  $PreviousErrorCount = $error.Count
                      
                                  $LoadedModules = 0
                                  $TotalModules = $SnapIns.Count + $Modules.Cou
                      nt
                      
                                  $SnapIns | % {
                                      $LoadedModules ++
                                      $Percentage = ($LoadedModules/$TotalModul
                      es) * 100
                                      Write-Progress -Activity $Messages.Loadin
                      gSnapins -Status $_.Name -PercentComplete $Percentage
                                      Add-PSSnapin $_ -ErrorAction SilentlyCont
                      inue
                                  }
                      
                                  $Modules | % {
                                      $LoadedModules ++
                                      $Percentage = ($LoadedModules/$TotalModul
                      es) * 100
                                      Write-Progress -Activity $Messages.Import
                      ingModules -Status $_.Name -PercentComplete $Percentage
                      
                                      try
                                      {
                                          Import-Module $_.Name -ErrorAction Si
                      lentlyContinue
                                      }
                                      catch [System.Management.Automation.PsSec
                      urityException] { Write-Warning $_; $GLOBAL:error.RemoveA
                      t(0) }
                                  }
                      
                                  if ($error.Count -gt $PreviousErrorCount)
                                  {
                                       Write-Host $Messages.ErrorInImport
                                  }
                              
CmdletBinding       : False
DefaultParameterSet : 
Definition          : 
                                  $SnapIns = @(Get-PSSnapin -Registered -ErrorA
                      ction SilentlyContinue)
                                  $Modules = @(Get-Module -ListAvailable -Error
                      Action SilentlyContinue | ? { $_.ModuleBase -like "$pshom
                      e*" })
                                  Import-LocalizedData -BindingVariable Message
                      s -BaseDirectory $pshome -FileName ImportAllModules.psd1
                                  $PreviousErrorCount = $error.Count
                      
                                  $LoadedModules = 0
                                  $TotalModules = $SnapIns.Count + $Modules.Cou
                      nt
                      
                                  $SnapIns | % {
                                      $LoadedModules ++
                                      $Percentage = ($LoadedModules/$TotalModul
                      es) * 100
                                      Write-Progress -Activity $Messages.Loadin
                      gSnapins -Status $_.Name -PercentComplete $Percentage
                                      Add-PSSnapin $_ -ErrorAction SilentlyCont
                      inue
                                  }
                      
                                  $Modules | % {
                                      $LoadedModules ++
                                      $Percentage = ($LoadedModules/$TotalModul
                      es) * 100
                                      Write-Progress -Activity $Messages.Import
                      ingModules -Status $_.Name -PercentComplete $Percentage
                      
                                      try
                                      {
                                          Import-Module $_.Name -ErrorAction Si
                      lentlyContinue
                                      }
                                      catch [System.Management.Automation.PsSec
                      urityException] { Write-Warning $_; $GLOBAL:error.RemoveA
                      t(0) }
                                  }
                      
                                  if ($error.Count -gt $PreviousErrorCount)
                                  {
                                       Write-Host $Messages.ErrorInImport
                                  }
                              
Options             : None
Description         : 
OutputType          : {}
Name                : ImportSystemModules
CommandType         : Function
Visibility          : Public
ModuleName          : 
Module              : 
Parameters          : {}
ParameterSets       : {}
HelpUri             : 


Verb                : Invoke
Noun                : Command
HelpFile            : System.Management.Automation.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Core
ImplementingType    : Microsoft.PowerShell.Commands.InvokeCommandCommand
Definition          : Invoke-Command [-ScriptBlock] <ScriptBlock> [-InputObject
                       <PSObject>] [-ArgumentList <Object[]>] [-Verbose] [-Debu
                      g] [-ErrorAction <ActionPreference>] [-WarningAction <Act
                      ionPreference>] [-ErrorVariable <String>] [-WarningVariab
                      le <String>] [-OutVariable <String>] [-OutBuffer <Int32>]
                      Invoke-Command [[-Session] <PSSession[]>] [-ScriptBlock] 
                      <ScriptBlock> [-ThrottleLimit <Int32>] [-AsJob] [-HideCom
                      puterName] [-JobName <String>] [-InputObject <PSObject>] 
                      [-ArgumentList <Object[]>] [-Verbose] [-Debug] [-ErrorAct
                      ion <ActionPreference>] [-WarningAction <ActionPreference
                      >] [-ErrorVariable <String>] [-WarningVariable <String>] 
                      [-OutVariable <String>] [-OutBuffer <Int32>]
                      Invoke-Command [[-Session] <PSSession[]>] [-FilePath] <St
                      ring> [-ThrottleLimit <Int32>] [-AsJob] [-HideComputerNam
                      e] [-JobName <String>] [-InputObject <PSObject>] [-Argume
                      ntList <Object[]>] [-Verbose] [-Debug] [-ErrorAction <Act
                      ionPreference>] [-WarningAction <ActionPreference>] [-Err
                      orVariable <String>] [-WarningVariable <String>] [-OutVar
                      iable <String>] [-OutBuffer <Int32>]
                      Invoke-Command [[-ComputerName] <String[]>] [-FilePath] <
                      String> [-Credential <PSCredential>] [-Port <Int32>] [-Us
                      eSSL] [-ConfigurationName <String>] [-ApplicationName <St
                      ring>] [-ThrottleLimit <Int32>] [-AsJob] [-HideComputerNa
                      me] [-JobName <String>] [-SessionOption <PSSessionOption>
                      ] [-Authentication <AuthenticationMechanism>] [-InputObje
                      ct <PSObject>] [-ArgumentList <Object[]>] [-Verbose] [-De
                      bug] [-ErrorAction <ActionPreference>] [-WarningAction <A
                      ctionPreference>] [-ErrorVariable <String>] [-WarningVari
                      able <String>] [-OutVariable <String>] [-OutBuffer <Int32
                      >]
                      Invoke-Command [[-ComputerName] <String[]>] [-ScriptBlock
                      ] <ScriptBlock> [-Credential <PSCredential>] [-Port <Int3
                      2>] [-UseSSL] [-ConfigurationName <String>] [-Application
                      Name <String>] [-ThrottleLimit <Int32>] [-AsJob] [-HideCo
                      mputerName] [-JobName <String>] [-SessionOption <PSSessio
                      nOption>] [-Authentication <AuthenticationMechanism>] [-I
                      nputObject <PSObject>] [-ArgumentList <Object[]>] [-Certi
                      ficateThumbprint <String>] [-Verbose] [-Debug] [-ErrorAct
                      ion <ActionPreference>] [-WarningAction <ActionPreference
                      >] [-ErrorVariable <String>] [-WarningVariable <String>] 
                      [-OutVariable <String>] [-OutBuffer <Int32>]
                      Invoke-Command [[-ConnectionUri] <Uri[]>] [-ScriptBlock] 
                      <ScriptBlock> [-Credential <PSCredential>] [-Configuratio
                      nName <String>] [-ThrottleLimit <Int32>] [-AsJob] [-HideC
                      omputerName] [-JobName <String>] [-AllowRedirection] [-Se
                      ssionOption <PSSessionOption>] [-Authentication <Authenti
                      cationMechanism>] [-InputObject <PSObject>] [-ArgumentLis
                      t <Object[]>] [-CertificateThumbprint <String>] [-Verbose
                      ] [-Debug] [-ErrorAction <ActionPreference>] [-WarningAct
                      ion <ActionPreference>] [-ErrorVariable <String>] [-Warni
                      ngVariable <String>] [-OutVariable <String>] [-OutBuffer 
                      <Int32>]
                      Invoke-Command [[-ConnectionUri] <Uri[]>] [-FilePath] <St
                      ring> [-Credential <PSCredential>] [-ConfigurationName <S
                      tring>] [-ThrottleLimit <Int32>] [-AsJob] [-HideComputerN
                      ame] [-JobName <String>] [-AllowRedirection] [-SessionOpt
                      ion <PSSessionOption>] [-Authentication <AuthenticationMe
                      chanism>] [-InputObject <PSObject>] [-ArgumentList <Objec
                      t[]>] [-Verbose] [-Debug] [-ErrorAction <ActionPreference
                      >] [-WarningAction <ActionPreference>] [-ErrorVariable <S
                      tring>] [-WarningVariable <String>] [-OutVariable <String
                      >] [-OutBuffer <Int32>]
                      
DefaultParameterSet : InProcess
OutputType          : {}
Name                : Invoke-Command
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Core
Module              : 
Parameters          : {[Session, System.Management.Automation.ParameterMetadata
                      ], [ComputerName, System.Management.Automation.ParameterM
                      etadata], [Credential, System.Management.Automation.Param
                      eterMetadata], [Port, System.Management.Automation.Parame
                      terMetadata]...}
ParameterSets       : {[-ScriptBlock] <ScriptBlock> [-InputObject <PSObject>] [
                      -ArgumentList <Object[]>] [-Verbose] [-Debug] [-ErrorActi
                      on <ActionPreference>] [-WarningAction <ActionPreference>
                      ] [-ErrorVariable <String>] [-WarningVariable <String>] [
                      -OutVariable <String>] [-OutBuffer <Int32>], [[-Session] 
                      <PSSession[]>] [-ScriptBlock] <ScriptBlock> [-ThrottleLim
                      it <Int32>] [-AsJob] [-HideComputerName] [-JobName <Strin
                      g>] [-InputObject <PSObject>] [-ArgumentList <Object[]>] 
                      [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-W
                      arningAction <ActionPreference>] [-ErrorVariable <String>
                      ] [-WarningVariable <String>] [-OutVariable <String>] [-O
                      utBuffer <Int32>], [[-Session] <PSSession[]>] [-FilePath]
                       <String> [-ThrottleLimit <Int32>] [-AsJob] [-HideCompute
                      rName] [-JobName <String>] [-InputObject <PSObject>] [-Ar
                      gumentList <Object[]>] [-Verbose] [-Debug] [-ErrorAction 
                      <ActionPreference>] [-WarningAction <ActionPreference>] [
                      -ErrorVariable <String>] [-WarningVariable <String>] [-Ou
                      tVariable <String>] [-OutBuffer <Int32>], [[-ComputerName
                      ] <String[]>] [-FilePath] <String> [-Credential <PSCreden
                      tial>] [-Port <Int32>] [-UseSSL] [-ConfigurationName <Str
                      ing>] [-ApplicationName <String>] [-ThrottleLimit <Int32>
                      ] [-AsJob] [-HideComputerName] [-JobName <String>] [-Sess
                      ionOption <PSSessionOption>] [-Authentication <Authentica
                      tionMechanism>] [-InputObject <PSObject>] [-ArgumentList 
                      <Object[]>] [-Verbose] [-Debug] [-ErrorAction <ActionPref
                      erence>] [-WarningAction <ActionPreference>] [-ErrorVaria
                      ble <String>] [-WarningVariable <String>] [-OutVariable <
                      String>] [-OutBuffer <Int32>]...}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=135225
DLL                 : C:\Windows\assembly\GAC_MSIL\System.Management.Automation
                      \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d
                      ll


Verb                : Invoke
Noun                : Expression
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.InvokeExpressionCommand
Definition          : Invoke-Expression [-Command] <String> [-Verbose] [-Debug]
                       [-ErrorAction <ActionPreference>] [-WarningAction <Actio
                      nPreference>] [-ErrorVariable <String>] [-WarningVariable
                       <String>] [-OutVariable <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Invoke-Expression
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[Command, System.Management.Automation.ParameterMetadata
                      ], [Verbose, System.Management.Automation.ParameterMetada
                      ta], [Debug, System.Management.Automation.ParameterMetada
                      ta], [ErrorAction, System.Management.Automation.Parameter
                      Metadata]...}
ParameterSets       : {[-Command] <String> [-Verbose] [-Debug] [-ErrorAction <A
                      ctionPreference>] [-WarningAction <ActionPreference>] [-E
                      rrorVariable <String>] [-WarningVariable <String>] [-OutV
                      ariable <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113343
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : Invoke
Noun                : History
HelpFile            : System.Management.Automation.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Core
ImplementingType    : Microsoft.PowerShell.Commands.InvokeHistoryCommand
Definition          : Invoke-History [[-Id] <String>] [-Verbose] [-Debug] [-Err
                      orAction <ActionPreference>] [-WarningAction <ActionPrefe
                      rence>] [-ErrorVariable <String>] [-WarningVariable <Stri
                      ng>] [-OutVariable <String>] [-OutBuffer <Int32>] [-WhatI
                      f] [-Confirm]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Invoke-History
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Core
Module              : 
Parameters          : {[Id, System.Management.Automation.ParameterMetadata], [V
                      erbose, System.Management.Automation.ParameterMetadata], 
                      [Debug, System.Management.Automation.ParameterMetadata], 
                      [ErrorAction, System.Management.Automation.ParameterMetad
                      ata]...}
ParameterSets       : {[[-Id] <String>] [-Verbose] [-Debug] [-ErrorAction <Acti
                      onPreference>] [-WarningAction <ActionPreference>] [-Erro
                      rVariable <String>] [-WarningVariable <String>] [-OutVari
                      able <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113344
DLL                 : C:\Windows\assembly\GAC_MSIL\System.Management.Automation
                      \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d
                      ll


Verb                : Invoke
Noun                : Item
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.InvokeItemCommand
Definition          : Invoke-Item [-Path] <String[]> [-Filter <String>] [-Inclu
                      de <String[]>] [-Exclude <String[]>] [-Credential <PSCred
                      ential>] [-Verbose] [-Debug] [-ErrorAction <ActionPrefere
                      nce>] [-WarningAction <ActionPreference>] [-ErrorVariable
                       <String>] [-WarningVariable <String>] [-OutVariable <Str
                      ing>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm] [-UseTran
                      saction]
                      Invoke-Item [-LiteralPath] <String[]> [-Filter <String>] 
                      [-Include <String[]>] [-Exclude <String[]>] [-Credential 
                      <PSCredential>] [-Verbose] [-Debug] [-ErrorAction <Action
                      Preference>] [-WarningAction <ActionPreference>] [-ErrorV
                      ariable <String>] [-WarningVariable <String>] [-OutVariab
                      le <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm] [-
                      UseTransaction]
                      
DefaultParameterSet : Path
OutputType          : {}
Name                : Invoke-Item
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[Path, System.Management.Automation.ParameterMetadata], 
                      [LiteralPath, System.Management.Automation.ParameterMetad
                      ata], [Filter, System.Management.Automation.ParameterMeta
                      data], [Include, System.Management.Automation.ParameterMe
                      tadata]...}
ParameterSets       : {[-Path] <String[]> [-Filter <String>] [-Include <String[
                      ]>] [-Exclude <String[]>] [-Credential <PSCredential>] [-
                      Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-War
                      ningAction <ActionPreference>] [-ErrorVariable <String>] 
                      [-WarningVariable <String>] [-OutVariable <String>] [-Out
                      Buffer <Int32>] [-WhatIf] [-Confirm] [-UseTransaction], [
                      -LiteralPath] <String[]> [-Filter <String>] [-Include <St
                      ring[]>] [-Exclude <String[]>] [-Credential <PSCredential
                      >] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] 
                      [-WarningAction <ActionPreference>] [-ErrorVariable <Stri
                      ng>] [-WarningVariable <String>] [-OutVariable <String>] 
                      [-OutBuffer <Int32>] [-WhatIf] [-Confirm] [-UseTransactio
                      n]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113345
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : Invoke
Noun                : WmiMethod
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.InvokeWmiMethod
Definition          : Invoke-WmiMethod [-Class] <String> [-Name] <String> [[-Ar
                      gumentList] <Object[]>] [-AsJob] [-Impersonation <Imperso
                      nationLevel>] [-Authentication <AuthenticationLevel>] [-L
                      ocale <String>] [-EnableAllPrivileges] [-Authority <Strin
                      g>] [-Credential <PSCredential>] [-ThrottleLimit <Int32>]
                       [-ComputerName <String[]>] [-Namespace <String>] [-Verbo
                      se] [-Debug] [-ErrorAction <ActionPreference>] [-WarningA
                      ction <ActionPreference>] [-ErrorVariable <String>] [-War
                      ningVariable <String>] [-OutVariable <String>] [-OutBuffe
                      r <Int32>] [-WhatIf] [-Confirm]
                      Invoke-WmiMethod [-Name] <String> -InputObject <Managemen
                      tObject> [-ArgumentList <Object[]>] [-AsJob] [-ThrottleLi
                      mit <Int32>] [-Verbose] [-Debug] [-ErrorAction <ActionPre
                      ference>] [-WarningAction <ActionPreference>] [-ErrorVari
                      able <String>] [-WarningVariable <String>] [-OutVariable 
                      <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm]
                      Invoke-WmiMethod [-Name] <String> -Path <String> [-Argume
                      ntList <Object[]>] [-AsJob] [-Impersonation <Impersonatio
                      nLevel>] [-Authentication <AuthenticationLevel>] [-Locale
                       <String>] [-EnableAllPrivileges] [-Authority <String>] [
                      -Credential <PSCredential>] [-ThrottleLimit <Int32>] [-Co
                      mputerName <String[]>] [-Namespace <String>] [-Verbose] [
                      -Debug] [-ErrorAction <ActionPreference>] [-WarningAction
                       <ActionPreference>] [-ErrorVariable <String>] [-WarningV
                      ariable <String>] [-OutVariable <String>] [-OutBuffer <In
                      t32>] [-WhatIf] [-Confirm]
                      Invoke-WmiMethod [-Name] <String> [-AsJob] [-Impersonatio
                      n <ImpersonationLevel>] [-Authentication <AuthenticationL
                      evel>] [-Locale <String>] [-EnableAllPrivileges] [-Author
                      ity <String>] [-Credential <PSCredential>] [-ThrottleLimi
                      t <Int32>] [-ComputerName <String[]>] [-Namespace <String
                      >] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] 
                      [-WarningAction <ActionPreference>] [-ErrorVariable <Stri
                      ng>] [-WarningVariable <String>] [-OutVariable <String>] 
                      [-OutBuffer <Int32>] [-WhatIf] [-Confirm]
                      Invoke-WmiMethod [-Name] <String> [-AsJob] [-Impersonatio
                      n <ImpersonationLevel>] [-Authentication <AuthenticationL
                      evel>] [-Locale <String>] [-EnableAllPrivileges] [-Author
                      ity <String>] [-Credential <PSCredential>] [-ThrottleLimi
                      t <Int32>] [-ComputerName <String[]>] [-Namespace <String
                      >] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] 
                      [-WarningAction <ActionPreference>] [-ErrorVariable <Stri
                      ng>] [-WarningVariable <String>] [-OutVariable <String>] 
                      [-OutBuffer <Int32>] [-WhatIf] [-Confirm]
                      Invoke-WmiMethod [-Name] <String> [-AsJob] [-Impersonatio
                      n <ImpersonationLevel>] [-Authentication <AuthenticationL
                      evel>] [-Locale <String>] [-EnableAllPrivileges] [-Author
                      ity <String>] [-Credential <PSCredential>] [-ThrottleLimi
                      t <Int32>] [-ComputerName <String[]>] [-Namespace <String
                      >] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] 
                      [-WarningAction <ActionPreference>] [-ErrorVariable <Stri
                      ng>] [-WarningVariable <String>] [-OutVariable <String>] 
                      [-OutBuffer <Int32>] [-WhatIf] [-Confirm]
                      
DefaultParameterSet : class
OutputType          : {}
Name                : Invoke-WmiMethod
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[InputObject, System.Management.Automation.ParameterMeta
                      data], [Path, System.Management.Automation.ParameterMetad
                      ata], [Class, System.Management.Automation.ParameterMetad
                      ata], [Name, System.Management.Automation.ParameterMetada
                      ta]...}
ParameterSets       : {[-Class] <String> [-Name] <String> [[-ArgumentList] <Obj
                      ect[]>] [-AsJob] [-Impersonation <ImpersonationLevel>] [-
                      Authentication <AuthenticationLevel>] [-Locale <String>] 
                      [-EnableAllPrivileges] [-Authority <String>] [-Credential
                       <PSCredential>] [-ThrottleLimit <Int32>] [-ComputerName 
                      <String[]>] [-Namespace <String>] [-Verbose] [-Debug] [-E
                      rrorAction <ActionPreference>] [-WarningAction <ActionPre
                      ference>] [-ErrorVariable <String>] [-WarningVariable <St
                      ring>] [-OutVariable <String>] [-OutBuffer <Int32>] [-Wha
                      tIf] [-Confirm], [-Name] <String> -InputObject <Managemen
                      tObject> [-ArgumentList <Object[]>] [-AsJob] [-ThrottleLi
                      mit <Int32>] [-Verbose] [-Debug] [-ErrorAction <ActionPre
                      ference>] [-WarningAction <ActionPreference>] [-ErrorVari
                      able <String>] [-WarningVariable <String>] [-OutVariable 
                      <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm], [-Na
                      me] <String> -Path <String> [-ArgumentList <Object[]>] [-
                      AsJob] [-Impersonation <ImpersonationLevel>] [-Authentica
                      tion <AuthenticationLevel>] [-Locale <String>] [-EnableAl
                      lPrivileges] [-Authority <String>] [-Credential <PSCreden
                      tial>] [-ThrottleLimit <Int32>] [-ComputerName <String[]>
                      ] [-Namespace <String>] [-Verbose] [-Debug] [-ErrorAction
                       <ActionPreference>] [-WarningAction <ActionPreference>] 
                      [-ErrorVariable <String>] [-WarningVariable <String>] [-O
                      utVariable <String>] [-OutBuffer <Int32>] [-WhatIf] [-Con
                      firm], [-Name] <String> [-AsJob] [-Impersonation <Imperso
                      nationLevel>] [-Authentication <AuthenticationLevel>] [-L
                      ocale <String>] [-EnableAllPrivileges] [-Authority <Strin
                      g>] [-Credential <PSCredential>] [-ThrottleLimit <Int32>]
                       [-ComputerName <String[]>] [-Namespace <String>] [-Verbo
                      se] [-Debug] [-ErrorAction <ActionPreference>] [-WarningA
                      ction <ActionPreference>] [-ErrorVariable <String>] [-War
                      ningVariable <String>] [-OutVariable <String>] [-OutBuffe
                      r <Int32>] [-WhatIf] [-Confirm]...}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113346
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : Invoke
Noun                : WSManAction
HelpFile            : Microsoft.WSMan.Management.dll-Help.xml
PSSnapIn            : Microsoft.WSMan.Management
ImplementingType    : Microsoft.WSMan.Management.InvokeWSManActionCommand
Definition          : Invoke-WSManAction [-ResourceURI] <Uri> [-Action] <String
                      > [[-SelectorSet] <Hashtable>] [-ConnectionURI <Uri>] [-F
                      ilePath <String>] [-OptionSet <Hashtable>] [-SessionOptio
                      n <SessionOption>] [-ValueSet <Hashtable>] [-Credential <
                      PSCredential>] [-Authentication <AuthenticationMechanism>
                      ] [-CertificateThumbprint <String>] [-Verbose] [-Debug] [
                      -ErrorAction <ActionPreference>] [-WarningAction <ActionP
                      reference>] [-ErrorVariable <String>] [-WarningVariable <
                      String>] [-OutVariable <String>] [-OutBuffer <Int32>]
                      Invoke-WSManAction [-ResourceURI] <Uri> [-Action] <String
                      > [[-SelectorSet] <Hashtable>] [-ApplicationName <String>
                      ] [-ComputerName <String>] [-FilePath <String>] [-OptionS
                      et <Hashtable>] [-Port <Int32>] [-SessionOption <SessionO
                      ption>] [-UseSSL] [-ValueSet <Hashtable>] [-Credential <P
                      SCredential>] [-Authentication <AuthenticationMechanism>]
                       [-CertificateThumbprint <String>] [-Verbose] [-Debug] [-
                      ErrorAction <ActionPreference>] [-WarningAction <ActionPr
                      eference>] [-ErrorVariable <String>] [-WarningVariable <S
                      tring>] [-OutVariable <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : URI
OutputType          : {}
Name                : Invoke-WSManAction
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.WSMan.Management
Module              : 
Parameters          : {[Action, System.Management.Automation.ParameterMetadata]
                      , [ApplicationName, System.Management.Automation.Paramete
                      rMetadata], [ComputerName, System.Management.Automation.P
                      arameterMetadata], [ConnectionURI, System.Management.Auto
                      mation.ParameterMetadata]...}
ParameterSets       : {[-ResourceURI] <Uri> [-Action] <String> [[-SelectorSet] 
                      <Hashtable>] [-ConnectionURI <Uri>] [-FilePath <String>] 
                      [-OptionSet <Hashtable>] [-SessionOption <SessionOption>]
                       [-ValueSet <Hashtable>] [-Credential <PSCredential>] [-A
                      uthentication <AuthenticationMechanism>] [-CertificateThu
                      mbprint <String>] [-Verbose] [-Debug] [-ErrorAction <Acti
                      onPreference>] [-WarningAction <ActionPreference>] [-Erro
                      rVariable <String>] [-WarningVariable <String>] [-OutVari
                      able <String>] [-OutBuffer <Int32>], [-ResourceURI] <Uri>
                       [-Action] <String> [[-SelectorSet] <Hashtable>] [-Applic
                      ationName <String>] [-ComputerName <String>] [-FilePath <
                      String>] [-OptionSet <Hashtable>] [-Port <Int32>] [-Sessi
                      onOption <SessionOption>] [-UseSSL] [-ValueSet <Hashtable
                      >] [-Credential <PSCredential>] [-Authentication <Authent
                      icationMechanism>] [-CertificateThumbprint <String>] [-Ve
                      rbose] [-Debug] [-ErrorAction <ActionPreference>] [-Warni
                      ngAction <ActionPreference>] [-ErrorVariable <String>] [-
                      WarningVariable <String>] [-OutVariable <String>] [-OutBu
                      ffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkId=141446
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.WSMan.Management\1
                      .0.0.0__31bf3856ad364e35\Microsoft.WSMan.Management.dll

Name              : ipal
CommandType       : Alias
Definition        : Import-Alias
ReferencedCommand : Import-Alias
ResolvedCommand   : Import-Alias

Name              : ipcsv
CommandType       : Alias
Definition        : Import-Csv
ReferencedCommand : Import-Csv
ResolvedCommand   : Import-Csv

Name              : ipmo
CommandType       : Alias
Definition        : Import-Module
ReferencedCommand : Import-Module
ResolvedCommand   : Import-Module

Name              : ipsn
CommandType       : Alias
Definition        : Import-PSSession
ReferencedCommand : Import-PSSession
ResolvedCommand   : Import-PSSession

Name              : ise
CommandType       : Alias
Definition        : powershell_ise.exe
ReferencedCommand : powershell_ise.exe
ResolvedCommand   : powershell_ise.exe

Name              : iwmi
CommandType       : Alias
Definition        : Invoke-WMIMethod
ReferencedCommand : Invoke-WmiMethod
ResolvedCommand   : Invoke-WmiMethod


ScriptBlock         : Set-Location J:
CmdletBinding       : False
DefaultParameterSet : 
Definition          : Set-Location J:
Options             : None
Description         : 
OutputType          : {}
Name                : J:
CommandType         : Function
Visibility          : Public
ModuleName          : 
Module              : 
Parameters          : {}
ParameterSets       : {}
HelpUri             : 


Verb                : Join
Noun                : Path
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.JoinPathCommand
Definition          : Join-Path [-Path] <String[]> [-ChildPath] <String> [-Reso
                      lve] [-Credential <PSCredential>] [-Verbose] [-Debug] [-E
                      rrorAction <ActionPreference>] [-WarningAction <ActionPre
                      ference>] [-ErrorVariable <String>] [-WarningVariable <St
                      ring>] [-OutVariable <String>] [-OutBuffer <Int32>] [-Use
                      Transaction]
                      
DefaultParameterSet : 
OutputType          : {System.String}
Name                : Join-Path
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[Path, System.Management.Automation.ParameterMetadata], 
                      [ChildPath, System.Management.Automation.ParameterMetadat
                      a], [Resolve, System.Management.Automation.ParameterMetad
                      ata], [Credential, System.Management.Automation.Parameter
                      Metadata]...}
ParameterSets       : {[-Path] <String[]> [-ChildPath] <String> [-Resolve] [-Cr
                      edential <PSCredential>] [-Verbose] [-Debug] [-ErrorActio
                      n <ActionPreference>] [-WarningAction <ActionPreference>]
                       [-ErrorVariable <String>] [-WarningVariable <String>] [-
                      OutVariable <String>] [-OutBuffer <Int32>] [-UseTransacti
                      on]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113347
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


ScriptBlock         : Set-Location K:
CmdletBinding       : False
DefaultParameterSet : 
Definition          : Set-Location K:
Options             : None
Description         : 
OutputType          : {}
Name                : K:
CommandType         : Function
Visibility          : Public
ModuleName          : 
Module              : 
Parameters          : {}
ParameterSets       : {}
HelpUri             : 

Name              : kill
CommandType       : Alias
Definition        : Stop-Process
ReferencedCommand : Stop-Process
ResolvedCommand   : Stop-Process


ScriptBlock         : Set-Location L:
CmdletBinding       : False
DefaultParameterSet : 
Definition          : Set-Location L:
Options             : None
Description         : 
OutputType          : {}
Name                : L:
CommandType         : Function
Visibility          : Public
ModuleName          : 
Module              : 
Parameters          : {}
ParameterSets       : {}
HelpUri             : 


Verb                : Limit
Noun                : EventLog
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.LimitEventLogCommand
Definition          : Limit-EventLog [-LogName] <String[]> [-ComputerName <Stri
                      ng[]>] [-RetentionDays <Int32>] [-OverflowAction <Overflo
                      wAction>] [-MaximumSize <Int64>] [-Verbose] [-Debug] [-Er
                      rorAction <ActionPreference>] [-WarningAction <ActionPref
                      erence>] [-ErrorVariable <String>] [-WarningVariable <Str
                      ing>] [-OutVariable <String>] [-OutBuffer <Int32>] [-What
                      If] [-Confirm]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Limit-EventLog
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[LogName, System.Management.Automation.ParameterMetadata
                      ], [ComputerName, System.Management.Automation.ParameterM
                      etadata], [RetentionDays, System.Management.Automation.Pa
                      rameterMetadata], [OverflowAction, System.Management.Auto
                      mation.ParameterMetadata]...}
ParameterSets       : {[-LogName] <String[]> [-ComputerName <String[]>] [-Reten
                      tionDays <Int32>] [-OverflowAction <OverflowAction>] [-Ma
                      ximumSize <Int64>] [-Verbose] [-Debug] [-ErrorAction <Act
                      ionPreference>] [-WarningAction <ActionPreference>] [-Err
                      orVariable <String>] [-WarningVariable <String>] [-OutVar
                      iable <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm]
                      }
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=135227
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll

Name              : lp
CommandType       : Alias
Definition        : Out-Printer
ReferencedCommand : Out-Printer
ResolvedCommand   : Out-Printer

Name              : ls
CommandType       : Alias
Definition        : Get-ChildItem
ReferencedCommand : Get-ChildItem
ResolvedCommand   : Get-ChildItem


ScriptBlock         : Set-Location M:
CmdletBinding       : False
DefaultParameterSet : 
Definition          : Set-Location M:
Options             : None
Description         : 
OutputType          : {}
Name                : M:
CommandType         : Function
Visibility          : Public
ModuleName          : 
Module              : 
Parameters          : {}
ParameterSets       : {}
HelpUri             : 

Name              : man
CommandType       : Alias
Definition        : help
ReferencedCommand : help
ResolvedCommand   : help

Name              : md
CommandType       : Alias
Definition        : mkdir
ReferencedCommand : mkdir
ResolvedCommand   : mkdir

Name              : measure
CommandType       : Alias
Definition        : Measure-Object
ReferencedCommand : Measure-Object
ResolvedCommand   : Measure-Object


Verb                : Measure
Noun                : Command
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.MeasureCommandCommand
Definition          : Measure-Command [-Expression] <ScriptBlock> [-InputObject
                       <PSObject>] [-Verbose] [-Debug] [-ErrorAction <ActionPre
                      ference>] [-WarningAction <ActionPreference>] [-ErrorVari
                      able <String>] [-WarningVariable <String>] [-OutVariable 
                      <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Measure-Command
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[InputObject, System.Management.Automation.ParameterMeta
                      data], [Expression, System.Management.Automation.Paramete
                      rMetadata], [Verbose, System.Management.Automation.Parame
                      terMetadata], [Debug, System.Management.Automation.Parame
                      terMetadata]...}
ParameterSets       : {[-Expression] <ScriptBlock> [-InputObject <PSObject>] [-
                      Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-War
                      ningAction <ActionPreference>] [-ErrorVariable <String>] 
                      [-WarningVariable <String>] [-OutVariable <String>] [-Out
                      Buffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113348
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : Measure
Noun                : Object
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.MeasureObjectCommand
Definition          : Measure-Object [[-Property] <String[]>] [-InputObject <PS
                      Object>] [-Sum] [-Average] [-Maximum] [-Minimum] [-Verbos
                      e] [-Debug] [-ErrorAction <ActionPreference>] [-WarningAc
                      tion <ActionPreference>] [-ErrorVariable <String>] [-Warn
                      ingVariable <String>] [-OutVariable <String>] [-OutBuffer
                       <Int32>]
                      Measure-Object [[-Property] <String[]>] [-InputObject <PS
                      Object>] [-Line] [-Word] [-Character] [-IgnoreWhiteSpace]
                       [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-
                      WarningAction <ActionPreference>] [-ErrorVariable <String
                      >] [-WarningVariable <String>] [-OutVariable <String>] [-
                      OutBuffer <Int32>]
                      
DefaultParameterSet : GenericMeasure
OutputType          : {}
Name                : Measure-Object
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[InputObject, System.Management.Automation.ParameterMeta
                      data], [Property, System.Management.Automation.ParameterM
                      etadata], [Sum, System.Management.Automation.ParameterMet
                      adata], [Average, System.Management.Automation.ParameterM
                      etadata]...}
ParameterSets       : {[[-Property] <String[]>] [-InputObject <PSObject>] [-Sum
                      ] [-Average] [-Maximum] [-Minimum] [-Verbose] [-Debug] [-
                      ErrorAction <ActionPreference>] [-WarningAction <ActionPr
                      eference>] [-ErrorVariable <String>] [-WarningVariable <S
                      tring>] [-OutVariable <String>] [-OutBuffer <Int32>], [[-
                      Property] <String[]>] [-InputObject <PSObject>] [-Line] [
                      -Word] [-Character] [-IgnoreWhiteSpace] [-Verbose] [-Debu
                      g] [-ErrorAction <ActionPreference>] [-WarningAction <Act
                      ionPreference>] [-ErrorVariable <String>] [-WarningVariab
                      le <String>] [-OutVariable <String>] [-OutBuffer <Int32>]
                      }
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113349
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll

Name              : mi
CommandType       : Alias
Definition        : Move-Item
ReferencedCommand : Move-Item
ResolvedCommand   : Move-Item


ScriptBlock         : 
                      <#
                      .FORWARDHELPTARGETNAME New-Item
                      .FORWARDHELPCATEGORY Cmdlet
                      #>
                      [CmdletBinding(DefaultParameterSetName='pathSet',
                          SupportsShouldProcess=$true,  
                          SupportsTransactions=$true,
                          ConfirmImpact='Medium')]
                      param(
                          [Parameter(ParameterSetName='nameSet', Position=0, Va
                      lueFromPipelineByPropertyName=$true)]
                          [Parameter(ParameterSetName='pathSet', Mandatory=$tru
                      e, Position=0, ValueFromPipelineByPropertyName=$true)]
                          [System.String[]]
                          ${Path},
                      
                          [Parameter(ParameterSetName='nameSet', Mandatory=$tru
                      e, ValueFromPipelineByPropertyName=$true)]
                          [AllowNull()]
                          [AllowEmptyString()]
                          [System.String]
                          ${Name},
                      
                          [Parameter(ValueFromPipeline=$true, ValueFromPipeline
                      ByPropertyName=$true)]
                          [System.Object]
                          ${Value},
                      
                          [Switch]
                          ${Force},
                      
                          [Parameter(ValueFromPipelineByPropertyName=$true)]
                          [System.Management.Automation.PSCredential]
                          ${Credential}
                      )
                      begin {
                      
                      
                          try {
                              $wrappedCmd = $ExecutionContext.InvokeCommand.Get
                      Command('New-Item', [System.Management.Automation.Command
                      Types]::Cmdlet)
                              $scriptCmd = {& $wrappedCmd -Type Directory @PSBo
                      undParameters }
                              $steppablePipeline = $scriptCmd.GetSteppablePipel
                      ine()
                              $steppablePipeline.Begin($PSCmdlet)
                          } catch {
                              throw
                          }
                      
                      
                      }
                      process {
                      
                      
                          try {
                              $steppablePipeline.Process($_)
                          } catch {
                              throw
                          }
                      
                      
                      }
                      end {
                      
                      
                          try {
                              $steppablePipeline.End()
                          } catch {
                              throw
                          }
                      
                      
                      }
                      
CmdletBinding       : True
DefaultParameterSet : pathSet
Definition          : 
                      <#
                      .FORWARDHELPTARGETNAME New-Item
                      .FORWARDHELPCATEGORY Cmdlet
                      #>
                      [CmdletBinding(DefaultParameterSetName='pathSet',
                          SupportsShouldProcess=$true,  
                          SupportsTransactions=$true,
                          ConfirmImpact='Medium')]
                      param(
                          [Parameter(ParameterSetName='nameSet', Position=0, Va
                      lueFromPipelineByPropertyName=$true)]
                          [Parameter(ParameterSetName='pathSet', Mandatory=$tru
                      e, Position=0, ValueFromPipelineByPropertyName=$true)]
                          [System.String[]]
                          ${Path},
                      
                          [Parameter(ParameterSetName='nameSet', Mandatory=$tru
                      e, ValueFromPipelineByPropertyName=$true)]
                          [AllowNull()]
                          [AllowEmptyString()]
                          [System.String]
                          ${Name},
                      
                          [Parameter(ValueFromPipeline=$true, ValueFromPipeline
                      ByPropertyName=$true)]
                          [System.Object]
                          ${Value},
                      
                          [Switch]
                          ${Force},
                      
                          [Parameter(ValueFromPipelineByPropertyName=$true)]
                          [System.Management.Automation.PSCredential]
                          ${Credential}
                      )
                      begin {
                      
                      
                          try {
                              $wrappedCmd = $ExecutionContext.InvokeCommand.Get
                      Command('New-Item', [System.Management.Automation.Command
                      Types]::Cmdlet)
                              $scriptCmd = {& $wrappedCmd -Type Directory @PSBo
                      undParameters }
                              $steppablePipeline = $scriptCmd.GetSteppablePipel
                      ine()
                              $steppablePipeline.Begin($PSCmdlet)
                          } catch {
                              throw
                          }
                      
                      
                      }
                      process {
                      
                      
                          try {
                              $steppablePipeline.Process($_)
                          } catch {
                              throw
                          }
                      
                      
                      }
                      end {
                      
                      
                          try {
                              $steppablePipeline.End()
                          } catch {
                              throw
                          }
                      
                      
                      }
                      
Options             : None
Description         : 
OutputType          : {}
Name                : mkdir
CommandType         : Function
Visibility          : Public
ModuleName          : 
Module              : 
Parameters          : {[Path, System.Management.Automation.ParameterMetadata], 
                      [Name, System.Management.Automation.ParameterMetadata], [
                      Value, System.Management.Automation.ParameterMetadata], [
                      Force, System.Management.Automation.ParameterMetadata]...
                      }
ParameterSets       : {[-Path] <String[]> [-Value <Object>] [-Force] [-Credenti
                      al <PSCredential>] [-Verbose] [-Debug] [-ErrorAction <Act
                      ionPreference>] [-WarningAction <ActionPreference>] [-Err
                      orVariable <String>] [-WarningVariable <String>] [-OutVar
                      iable <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm]
                       [-UseTransaction], [[-Path] <String[]>] -Name <String> [
                      -Value <Object>] [-Force] [-Credential <PSCredential>] [-
                      Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-War
                      ningAction <ActionPreference>] [-ErrorVariable <String>] 
                      [-WarningVariable <String>] [-OutVariable <String>] [-Out
                      Buffer <Int32>] [-WhatIf] [-Confirm] [-UseTransaction]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113353


ScriptBlock         : param([string[]]$paths)
                      $OutputEncoding = [System.Console]::OutputEncoding
                      
                      if($paths)
                      {
                          foreach ($file in $paths)
                          {
                              Get-Content $file | more.com
                          }
                      }
                      else
                      {
                          $input | more.com
                      }
                      
CmdletBinding       : False
DefaultParameterSet : 
Definition          : param([string[]]$paths)
                      $OutputEncoding = [System.Console]::OutputEncoding
                      
                      if($paths)
                      {
                          foreach ($file in $paths)
                          {
                              Get-Content $file | more.com
                          }
                      }
                      else
                      {
                          $input | more.com
                      }
                      
Options             : None
Description         : 
OutputType          : {}
Name                : more
CommandType         : Function
Visibility          : Public
ModuleName          : 
Module              : 
Parameters          : {[paths, System.Management.Automation.ParameterMetadata]}
ParameterSets       : {[[-paths] <String[]>]}
HelpUri             : 

Name              : mount
CommandType       : Alias
Definition        : New-PSDrive
ReferencedCommand : New-PSDrive
ResolvedCommand   : New-PSDrive

Name              : move
CommandType       : Alias
Definition        : Move-Item
ReferencedCommand : Move-Item
ResolvedCommand   : Move-Item


Verb                : Move
Noun                : Item
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.MoveItemCommand
Definition          : Move-Item [-Path] <String[]> [[-Destination] <String>] [-
                      Force] [-Filter <String>] [-Include <String[]>] [-Exclude
                       <String[]>] [-PassThru] [-Credential <PSCredential>] [-V
                      erbose] [-Debug] [-ErrorAction <ActionPreference>] [-Warn
                      ingAction <ActionPreference>] [-ErrorVariable <String>] [
                      -WarningVariable <String>] [-OutVariable <String>] [-OutB
                      uffer <Int32>] [-WhatIf] [-Confirm] [-UseTransaction]
                      Move-Item [-LiteralPath] <String[]> [[-Destination] <Stri
                      ng>] [-Force] [-Filter <String>] [-Include <String[]>] [-
                      Exclude <String[]>] [-PassThru] [-Credential <PSCredentia
                      l>] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>]
                       [-WarningAction <ActionPreference>] [-ErrorVariable <Str
                      ing>] [-WarningVariable <String>] [-OutVariable <String>]
                       [-OutBuffer <Int32>] [-WhatIf] [-Confirm] [-UseTransacti
                      on]
                      
DefaultParameterSet : Path
OutputType          : {}
Name                : Move-Item
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[Path, System.Management.Automation.ParameterMetadata], 
                      [LiteralPath, System.Management.Automation.ParameterMetad
                      ata], [Destination, System.Management.Automation.Paramete
                      rMetadata], [Force, System.Management.Automation.Paramete
                      rMetadata]...}
ParameterSets       : {[-Path] <String[]> [[-Destination] <String>] [-Force] [-
                      Filter <String>] [-Include <String[]>] [-Exclude <String[
                      ]>] [-PassThru] [-Credential <PSCredential>] [-Verbose] [
                      -Debug] [-ErrorAction <ActionPreference>] [-WarningAction
                       <ActionPreference>] [-ErrorVariable <String>] [-WarningV
                      ariable <String>] [-OutVariable <String>] [-OutBuffer <In
                      t32>] [-WhatIf] [-Confirm] [-UseTransaction], [-LiteralPa
                      th] <String[]> [[-Destination] <String>] [-Force] [-Filte
                      r <String>] [-Include <String[]>] [-Exclude <String[]>] [
                      -PassThru] [-Credential <PSCredential>] [-Verbose] [-Debu
                      g] [-ErrorAction <ActionPreference>] [-WarningAction <Act
                      ionPreference>] [-ErrorVariable <String>] [-WarningVariab
                      le <String>] [-OutVariable <String>] [-OutBuffer <Int32>]
                       [-WhatIf] [-Confirm] [-UseTransaction]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113350
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : Move
Noun                : ItemProperty
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.MoveItemPropertyCommand
Definition          : Move-ItemProperty [-Path] <String[]> [-Destination] <Stri
                      ng> [-Name] <String[]> [-PassThru] [-Force] [-Filter <Str
                      ing>] [-Include <String[]>] [-Exclude <String[]>] [-Crede
                      ntial <PSCredential>] [-Verbose] [-Debug] [-ErrorAction <
                      ActionPreference>] [-WarningAction <ActionPreference>] [-
                      ErrorVariable <String>] [-WarningVariable <String>] [-Out
                      Variable <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confi
                      rm] [-UseTransaction]
                      Move-ItemProperty [-LiteralPath] <String[]> [-Destination
                      ] <String> [-Name] <String[]> [-PassThru] [-Force] [-Filt
                      er <String>] [-Include <String[]>] [-Exclude <String[]>] 
                      [-Credential <PSCredential>] [-Verbose] [-Debug] [-ErrorA
                      ction <ActionPreference>] [-WarningAction <ActionPreferen
                      ce>] [-ErrorVariable <String>] [-WarningVariable <String>
                      ] [-OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf] 
                      [-Confirm] [-UseTransaction]
                      
DefaultParameterSet : Path
OutputType          : {}
Name                : Move-ItemProperty
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[Path, System.Management.Automation.ParameterMetadata], 
                      [LiteralPath, System.Management.Automation.ParameterMetad
                      ata], [Name, System.Management.Automation.ParameterMetada
                      ta], [Destination, System.Management.Automation.Parameter
                      Metadata]...}
ParameterSets       : {[-Path] <String[]> [-Destination] <String> [-Name] <Stri
                      ng[]> [-PassThru] [-Force] [-Filter <String>] [-Include <
                      String[]>] [-Exclude <String[]>] [-Credential <PSCredenti
                      al>] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>
                      ] [-WarningAction <ActionPreference>] [-ErrorVariable <St
                      ring>] [-WarningVariable <String>] [-OutVariable <String>
                      ] [-OutBuffer <Int32>] [-WhatIf] [-Confirm] [-UseTransact
                      ion], [-LiteralPath] <String[]> [-Destination] <String> [
                      -Name] <String[]> [-PassThru] [-Force] [-Filter <String>]
                       [-Include <String[]>] [-Exclude <String[]>] [-Credential
                       <PSCredential>] [-Verbose] [-Debug] [-ErrorAction <Actio
                      nPreference>] [-WarningAction <ActionPreference>] [-Error
                      Variable <String>] [-WarningVariable <String>] [-OutVaria
                      ble <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm] [
                      -UseTransaction]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113351
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll

Name              : mp
CommandType       : Alias
Definition        : Move-ItemProperty
ReferencedCommand : Move-ItemProperty
ResolvedCommand   : Move-ItemProperty

Name              : mv
CommandType       : Alias
Definition        : Move-Item
ReferencedCommand : Move-Item
ResolvedCommand   : Move-Item


ScriptBlock         : Set-Location N:
CmdletBinding       : False
DefaultParameterSet : 
Definition          : Set-Location N:
Options             : None
Description         : 
OutputType          : {}
Name                : N:
CommandType         : Function
Visibility          : Public
ModuleName          : 
Module              : 
Parameters          : {}
ParameterSets       : {}
HelpUri             : 

Name              : nal
CommandType       : Alias
Definition        : New-Alias
ReferencedCommand : New-Alias
ResolvedCommand   : New-Alias

Name              : ndr
CommandType       : Alias
Definition        : New-PSDrive
ReferencedCommand : New-PSDrive
ResolvedCommand   : New-PSDrive


Verb                : New
Noun                : Alias
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.NewAliasCommand
Definition          : New-Alias [-Name] <String> [-Value] <String> [-Descriptio
                      n <String>] [-Option <ScopedItemOptions>] [-PassThru] [-S
                      cope <String>] [-Force] [-Verbose] [-Debug] [-ErrorAction
                       <ActionPreference>] [-WarningAction <ActionPreference>] 
                      [-ErrorVariable <String>] [-WarningVariable <String>] [-O
                      utVariable <String>] [-OutBuffer <Int32>] [-WhatIf] [-Con
                      firm]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : New-Alias
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[Name, System.Management.Automation.ParameterMetadata], 
                      [Value, System.Management.Automation.ParameterMetadata], 
                      [Description, System.Management.Automation.ParameterMetad
                      ata], [Option, System.Management.Automation.ParameterMeta
                      data]...}
ParameterSets       : {[-Name] <String> [-Value] <String> [-Description <String
                      >] [-Option <ScopedItemOptions>] [-PassThru] [-Scope <Str
                      ing>] [-Force] [-Verbose] [-Debug] [-ErrorAction <ActionP
                      reference>] [-WarningAction <ActionPreference>] [-ErrorVa
                      riable <String>] [-WarningVariable <String>] [-OutVariabl
                      e <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113352
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : New
Noun                : Event
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.NewEventCommand
Definition          : New-Event [-SourceIdentifier] <String> [[-Sender] <PSObje
                      ct>] [[-EventArguments] <PSObject[]>] [[-MessageData] <PS
                      Object>] [-Verbose] [-Debug] [-ErrorAction <ActionPrefere
                      nce>] [-WarningAction <ActionPreference>] [-ErrorVariable
                       <String>] [-WarningVariable <String>] [-OutVariable <Str
                      ing>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : New-Event
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[SourceIdentifier, System.Management.Automation.Paramete
                      rMetadata], [Sender, System.Management.Automation.Paramet
                      erMetadata], [EventArguments, System.Management.Automatio
                      n.ParameterMetadata], [MessageData, System.Management.Aut
                      omation.ParameterMetadata]...}
ParameterSets       : {[-SourceIdentifier] <String> [[-Sender] <PSObject>] [[-E
                      ventArguments] <PSObject[]>] [[-MessageData] <PSObject>] 
                      [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-W
                      arningAction <ActionPreference>] [-ErrorVariable <String>
                      ] [-WarningVariable <String>] [-OutVariable <String>] [-O
                      utBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=135234
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : New
Noun                : EventLog
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.NewEventLogCommand
Definition          : New-EventLog [-LogName] <String> [-Source] <String[]> [[-
                      ComputerName] <String[]>] [-CategoryResourceFile <String>
                      ] [-MessageResourceFile <String>] [-ParameterResourceFile
                       <String>] [-Verbose] [-Debug] [-ErrorAction <ActionPrefe
                      rence>] [-WarningAction <ActionPreference>] [-ErrorVariab
                      le <String>] [-WarningVariable <String>] [-OutVariable <S
                      tring>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : New-EventLog
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[CategoryResourceFile, System.Management.Automation.Para
                      meterMetadata], [ComputerName, System.Management.Automati
                      on.ParameterMetadata], [LogName, System.Management.Automa
                      tion.ParameterMetadata], [MessageResourceFile, System.Man
                      agement.Automation.ParameterMetadata]...}
ParameterSets       : {[-LogName] <String> [-Source] <String[]> [[-ComputerName
                      ] <String[]>] [-CategoryResourceFile <String>] [-MessageR
                      esourceFile <String>] [-ParameterResourceFile <String>] [
                      -Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-Wa
                      rningAction <ActionPreference>] [-ErrorVariable <String>]
                       [-WarningVariable <String>] [-OutVariable <String>] [-Ou
                      tBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=135235
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : New
Noun                : Item
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.NewItemCommand
Definition          : New-Item [-Path] <String[]> [-ItemType <String>] [-Value 
                      <Object>] [-Force] [-Credential <PSCredential>] [-Verbose
                      ] [-Debug] [-ErrorAction <ActionPreference>] [-WarningAct
                      ion <ActionPreference>] [-ErrorVariable <String>] [-Warni
                      ngVariable <String>] [-OutVariable <String>] [-OutBuffer 
                      <Int32>] [-WhatIf] [-Confirm] [-UseTransaction]
                      New-Item [[-Path] <String[]>] -Name <String> [-ItemType <
                      String>] [-Value <Object>] [-Force] [-Credential <PSCrede
                      ntial>] [-Verbose] [-Debug] [-ErrorAction <ActionPreferen
                      ce>] [-WarningAction <ActionPreference>] [-ErrorVariable 
                      <String>] [-WarningVariable <String>] [-OutVariable <Stri
                      ng>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm] [-UseTrans
                      action]
                      
DefaultParameterSet : pathSet
OutputType          : {}
Name                : New-Item
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[Path, System.Management.Automation.ParameterMetadata], 
                      [Name, System.Management.Automation.ParameterMetadata], [
                      ItemType, System.Management.Automation.ParameterMetadata]
                      , [Value, System.Management.Automation.ParameterMetadata]
                      ...}
ParameterSets       : {[-Path] <String[]> [-ItemType <String>] [-Value <Object>
                      ] [-Force] [-Credential <PSCredential>] [-Verbose] [-Debu
                      g] [-ErrorAction <ActionPreference>] [-WarningAction <Act
                      ionPreference>] [-ErrorVariable <String>] [-WarningVariab
                      le <String>] [-OutVariable <String>] [-OutBuffer <Int32>]
                       [-WhatIf] [-Confirm] [-UseTransaction], [[-Path] <String
                      []>] -Name <String> [-ItemType <String>] [-Value <Object>
                      ] [-Force] [-Credential <PSCredential>] [-Verbose] [-Debu
                      g] [-ErrorAction <ActionPreference>] [-WarningAction <Act
                      ionPreference>] [-ErrorVariable <String>] [-WarningVariab
                      le <String>] [-OutVariable <String>] [-OutBuffer <Int32>]
                       [-WhatIf] [-Confirm] [-UseTransaction]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113353
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : New
Noun                : ItemProperty
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.NewItemPropertyCommand
Definition          : New-ItemProperty [-Path] <String[]> [-Name] <String> [-Pr
                      opertyType <String>] [-Value <Object>] [-Force] [-Filter 
                      <String>] [-Include <String[]>] [-Exclude <String[]>] [-C
                      redential <PSCredential>] [-Verbose] [-Debug] [-ErrorActi
                      on <ActionPreference>] [-WarningAction <ActionPreference>
                      ] [-ErrorVariable <String>] [-WarningVariable <String>] [
                      -OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf] [-C
                      onfirm] [-UseTransaction]
                      New-ItemProperty [-LiteralPath] <String[]> [-Name] <Strin
                      g> [-PropertyType <String>] [-Value <Object>] [-Force] [-
                      Filter <String>] [-Include <String[]>] [-Exclude <String[
                      ]>] [-Credential <PSCredential>] [-Verbose] [-Debug] [-Er
                      rorAction <ActionPreference>] [-WarningAction <ActionPref
                      erence>] [-ErrorVariable <String>] [-WarningVariable <Str
                      ing>] [-OutVariable <String>] [-OutBuffer <Int32>] [-What
                      If] [-Confirm] [-UseTransaction]
                      
DefaultParameterSet : Path
OutputType          : {}
Name                : New-ItemProperty
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[Path, System.Management.Automation.ParameterMetadata], 
                      [LiteralPath, System.Management.Automation.ParameterMetad
                      ata], [Name, System.Management.Automation.ParameterMetada
                      ta], [PropertyType, System.Management.Automation.Paramete
                      rMetadata]...}
ParameterSets       : {[-Path] <String[]> [-Name] <String> [-PropertyType <Stri
                      ng>] [-Value <Object>] [-Force] [-Filter <String>] [-Incl
                      ude <String[]>] [-Exclude <String[]>] [-Credential <PSCre
                      dential>] [-Verbose] [-Debug] [-ErrorAction <ActionPrefer
                      ence>] [-WarningAction <ActionPreference>] [-ErrorVariabl
                      e <String>] [-WarningVariable <String>] [-OutVariable <St
                      ring>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm] [-UseTra
                      nsaction], [-LiteralPath] <String[]> [-Name] <String> [-P
                      ropertyType <String>] [-Value <Object>] [-Force] [-Filter
                       <String>] [-Include <String[]>] [-Exclude <String[]>] [-
                      Credential <PSCredential>] [-Verbose] [-Debug] [-ErrorAct
                      ion <ActionPreference>] [-WarningAction <ActionPreference
                      >] [-ErrorVariable <String>] [-WarningVariable <String>] 
                      [-OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf] [-
                      Confirm] [-UseTransaction]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113354
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : New
Noun                : Module
HelpFile            : System.Management.Automation.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Core
ImplementingType    : Microsoft.PowerShell.Commands.NewModuleCommand
Definition          : New-Module [-ScriptBlock] <ScriptBlock> [-Function <Strin
                      g[]>] [-Cmdlet <String[]>] [-ReturnResult] [-AsCustomObje
                      ct] [-ArgumentList <Object[]>] [-Verbose] [-Debug] [-Erro
                      rAction <ActionPreference>] [-WarningAction <ActionPrefer
                      ence>] [-ErrorVariable <String>] [-WarningVariable <Strin
                      g>] [-OutVariable <String>] [-OutBuffer <Int32>]
                      New-Module [-Name] <String> [-ScriptBlock] <ScriptBlock> 
                      [-Function <String[]>] [-Cmdlet <String[]>] [-ReturnResul
                      t] [-AsCustomObject] [-ArgumentList <Object[]>] [-Verbose
                      ] [-Debug] [-ErrorAction <ActionPreference>] [-WarningAct
                      ion <ActionPreference>] [-ErrorVariable <String>] [-Warni
                      ngVariable <String>] [-OutVariable <String>] [-OutBuffer 
                      <Int32>]
                      
DefaultParameterSet : ScriptBlock
OutputType          : {System.Management.Automation.PSModuleInfo}
Name                : New-Module
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Core
Module              : 
Parameters          : {[Name, System.Management.Automation.ParameterMetadata], 
                      [ScriptBlock, System.Management.Automation.ParameterMetad
                      ata], [Function, System.Management.Automation.ParameterMe
                      tadata], [Cmdlet, System.Management.Automation.ParameterM
                      etadata]...}
ParameterSets       : {[-ScriptBlock] <ScriptBlock> [-Function <String[]>] [-Cm
                      dlet <String[]>] [-ReturnResult] [-AsCustomObject] [-Argu
                      mentList <Object[]>] [-Verbose] [-Debug] [-ErrorAction <A
                      ctionPreference>] [-WarningAction <ActionPreference>] [-E
                      rrorVariable <String>] [-WarningVariable <String>] [-OutV
                      ariable <String>] [-OutBuffer <Int32>], [-Name] <String> 
                      [-ScriptBlock] <ScriptBlock> [-Function <String[]>] [-Cmd
                      let <String[]>] [-ReturnResult] [-AsCustomObject] [-Argum
                      entList <Object[]>] [-Verbose] [-Debug] [-ErrorAction <Ac
                      tionPreference>] [-WarningAction <ActionPreference>] [-Er
                      rorVariable <String>] [-WarningVariable <String>] [-OutVa
                      riable <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=141554
DLL                 : C:\Windows\assembly\GAC_MSIL\System.Management.Automation
                      \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d
                      ll


Verb                : New
Noun                : ModuleManifest
HelpFile            : System.Management.Automation.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Core
ImplementingType    : Microsoft.PowerShell.Commands.NewModuleManifestCommand
Definition          : New-ModuleManifest [-Path] <String> -NestedModules <Strin
                      g[]> [-Guid <Guid>] -Author <String> -CompanyName <String
                      > -Copyright <String> -ModuleToProcess <String> [-ModuleV
                      ersion <Version>] -Description <String> [-ProcessorArchit
                      ecture <ProcessorArchitecture>] [-PowerShellVersion <Vers
                      ion>] [-ClrVersion <Version>] [-DotNetFrameworkVersion <V
                      ersion>] [-PowerShellHostName <String>] [-PowerShellHostV
                      ersion <Version>] [-RequiredModules <Object[]>] -TypesToP
                      rocess <String[]> -FormatsToProcess <String[]> [-ScriptsT
                      oProcess <String[]>] -RequiredAssemblies <String[]> -File
                      List <String[]> [-ModuleList <Object[]>] [-FunctionsToExp
                      ort <String[]>] [-AliasesToExport <String[]>] [-Variables
                      ToExport <String[]>] [-CmdletsToExport <String[]>] [-Priv
                      ateData <Object>] [-PassThru] [-Verbose] [-Debug] [-Error
                      Action <ActionPreference>] [-WarningAction <ActionPrefere
                      nce>] [-ErrorVariable <String>] [-WarningVariable <String
                      >] [-OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf]
                       [-Confirm]
                      
DefaultParameterSet : 
OutputType          : {System.String}
Name                : New-ModuleManifest
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Core
Module              : 
Parameters          : {[Path, System.Management.Automation.ParameterMetadata], 
                      [NestedModules, System.Management.Automation.ParameterMet
                      adata], [Guid, System.Management.Automation.ParameterMeta
                      data], [Author, System.Management.Automation.ParameterMet
                      adata]...}
ParameterSets       : {[-Path] <String> -NestedModules <String[]> [-Guid <Guid>
                      ] -Author <String> -CompanyName <String> -Copyright <Stri
                      ng> -ModuleToProcess <String> [-ModuleVersion <Version>] 
                      -Description <String> [-ProcessorArchitecture <ProcessorA
                      rchitecture>] [-PowerShellVersion <Version>] [-ClrVersion
                       <Version>] [-DotNetFrameworkVersion <Version>] [-PowerSh
                      ellHostName <String>] [-PowerShellHostVersion <Version>] 
                      [-RequiredModules <Object[]>] -TypesToProcess <String[]> 
                      -FormatsToProcess <String[]> [-ScriptsToProcess <String[]
                      >] -RequiredAssemblies <String[]> -FileList <String[]> [-
                      ModuleList <Object[]>] [-FunctionsToExport <String[]>] [-
                      AliasesToExport <String[]>] [-VariablesToExport <String[]
                      >] [-CmdletsToExport <String[]>] [-PrivateData <Object>] 
                      [-PassThru] [-Verbose] [-Debug] [-ErrorAction <ActionPref
                      erence>] [-WarningAction <ActionPreference>] [-ErrorVaria
                      ble <String>] [-WarningVariable <String>] [-OutVariable <
                      String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=141555
DLL                 : C:\Windows\assembly\GAC_MSIL\System.Management.Automation
                      \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d
                      ll


Verb                : New
Noun                : Object
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.NewObjectCommand
Definition          : New-Object [-TypeName] <String> [[-ArgumentList] <Object[
                      ]>] [-Property <Hashtable>] [-Verbose] [-Debug] [-ErrorAc
                      tion <ActionPreference>] [-WarningAction <ActionPreferenc
                      e>] [-ErrorVariable <String>] [-WarningVariable <String>]
                       [-OutVariable <String>] [-OutBuffer <Int32>]
                      New-Object [-ComObject] <String> [-Strict] [-Property <Ha
                      shtable>] [-Verbose] [-Debug] [-ErrorAction <ActionPrefer
                      ence>] [-WarningAction <ActionPreference>] [-ErrorVariabl
                      e <String>] [-WarningVariable <String>] [-OutVariable <St
                      ring>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : Net
OutputType          : {}
Name                : New-Object
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[TypeName, System.Management.Automation.ParameterMetadat
                      a], [ComObject, System.Management.Automation.ParameterMet
                      adata], [ArgumentList, System.Management.Automation.Param
                      eterMetadata], [Strict, System.Management.Automation.Para
                      meterMetadata]...}
ParameterSets       : {[-TypeName] <String> [[-ArgumentList] <Object[]>] [-Prop
                      erty <Hashtable>] [-Verbose] [-Debug] [-ErrorAction <Acti
                      onPreference>] [-WarningAction <ActionPreference>] [-Erro
                      rVariable <String>] [-WarningVariable <String>] [-OutVari
                      able <String>] [-OutBuffer <Int32>], [-ComObject] <String
                      > [-Strict] [-Property <Hashtable>] [-Verbose] [-Debug] [
                      -ErrorAction <ActionPreference>] [-WarningAction <ActionP
                      reference>] [-ErrorVariable <String>] [-WarningVariable <
                      String>] [-OutVariable <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113355
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : New
Noun                : PSDrive
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.NewPSDriveCommand
Definition          : New-PSDrive [-Name] <String> [-PSProvider] <String> [-Roo
                      t] <String> [-Description <String>] [-Scope <String>] [-C
                      redential <PSCredential>] [-Verbose] [-Debug] [-ErrorActi
                      on <ActionPreference>] [-WarningAction <ActionPreference>
                      ] [-ErrorVariable <String>] [-WarningVariable <String>] [
                      -OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf] [-C
                      onfirm] [-UseTransaction]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : New-PSDrive
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[Name, System.Management.Automation.ParameterMetadata], 
                      [PSProvider, System.Management.Automation.ParameterMetada
                      ta], [Root, System.Management.Automation.ParameterMetadat
                      a], [Description, System.Management.Automation.ParameterM
                      etadata]...}
ParameterSets       : {[-Name] <String> [-PSProvider] <String> [-Root] <String>
                       [-Description <String>] [-Scope <String>] [-Credential <
                      PSCredential>] [-Verbose] [-Debug] [-ErrorAction <ActionP
                      reference>] [-WarningAction <ActionPreference>] [-ErrorVa
                      riable <String>] [-WarningVariable <String>] [-OutVariabl
                      e <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm] [-U
                      seTransaction]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113357
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : New
Noun                : PSSession
HelpFile            : System.Management.Automation.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Core
ImplementingType    : Microsoft.PowerShell.Commands.NewPSSessionCommand
Definition          : New-PSSession [[-ComputerName] <String[]>] [-Credential <
                      PSCredential>] [-Name <String[]>] [-Port <Int32>] [-UseSS
                      L] [-ConfigurationName <String>] [-ApplicationName <Strin
                      g>] [-ThrottleLimit <Int32>] [-SessionOption <PSSessionOp
                      tion>] [-Authentication <AuthenticationMechanism>] [-Cert
                      ificateThumbprint <String>] [-Verbose] [-Debug] [-ErrorAc
                      tion <ActionPreference>] [-WarningAction <ActionPreferenc
                      e>] [-ErrorVariable <String>] [-WarningVariable <String>]
                       [-OutVariable <String>] [-OutBuffer <Int32>]
                      New-PSSession [-ConnectionUri] <Uri[]> [-Credential <PSCr
                      edential>] [-Name <String[]>] [-ConfigurationName <String
                      >] [-ThrottleLimit <Int32>] [-AllowRedirection] [-Session
                      Option <PSSessionOption>] [-Authentication <Authenticatio
                      nMechanism>] [-CertificateThumbprint <String>] [-Verbose]
                       [-Debug] [-ErrorAction <ActionPreference>] [-WarningActi
                      on <ActionPreference>] [-ErrorVariable <String>] [-Warnin
                      gVariable <String>] [-OutVariable <String>] [-OutBuffer <
                      Int32>]
                      New-PSSession [[-Session] <PSSession[]>] [-Name <String[]
                      >] [-ThrottleLimit <Int32>] [-Verbose] [-Debug] [-ErrorAc
                      tion <ActionPreference>] [-WarningAction <ActionPreferenc
                      e>] [-ErrorVariable <String>] [-WarningVariable <String>]
                       [-OutVariable <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : ComputerName
OutputType          : {}
Name                : New-PSSession
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Core
Module              : 
Parameters          : {[ComputerName, System.Management.Automation.ParameterMet
                      adata], [Credential, System.Management.Automation.Paramet
                      erMetadata], [Session, System.Management.Automation.Param
                      eterMetadata], [Name, System.Management.Automation.Parame
                      terMetadata]...}
ParameterSets       : {[[-ComputerName] <String[]>] [-Credential <PSCredential>
                      ] [-Name <String[]>] [-Port <Int32>] [-UseSSL] [-Configur
                      ationName <String>] [-ApplicationName <String>] [-Throttl
                      eLimit <Int32>] [-SessionOption <PSSessionOption>] [-Auth
                      entication <AuthenticationMechanism>] [-CertificateThumbp
                      rint <String>] [-Verbose] [-Debug] [-ErrorAction <ActionP
                      reference>] [-WarningAction <ActionPreference>] [-ErrorVa
                      riable <String>] [-WarningVariable <String>] [-OutVariabl
                      e <String>] [-OutBuffer <Int32>], [-ConnectionUri] <Uri[]
                      > [-Credential <PSCredential>] [-Name <String[]>] [-Confi
                      gurationName <String>] [-ThrottleLimit <Int32>] [-AllowRe
                      direction] [-SessionOption <PSSessionOption>] [-Authentic
                      ation <AuthenticationMechanism>] [-CertificateThumbprint 
                      <String>] [-Verbose] [-Debug] [-ErrorAction <ActionPrefer
                      ence>] [-WarningAction <ActionPreference>] [-ErrorVariabl
                      e <String>] [-WarningVariable <String>] [-OutVariable <St
                      ring>] [-OutBuffer <Int32>], [[-Session] <PSSession[]>] [
                      -Name <String[]>] [-ThrottleLimit <Int32>] [-Verbose] [-D
                      ebug] [-ErrorAction <ActionPreference>] [-WarningAction <
                      ActionPreference>] [-ErrorVariable <String>] [-WarningVar
                      iable <String>] [-OutVariable <String>] [-OutBuffer <Int3
                      2>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=135237
DLL                 : C:\Windows\assembly\GAC_MSIL\System.Management.Automation
                      \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d
                      ll


Verb                : New
Noun                : PSSessionOption
HelpFile            : System.Management.Automation.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Core
ImplementingType    : Microsoft.PowerShell.Commands.NewPSSessionOptionCommand
Definition          : New-PSSessionOption [-MaximumRedirection <Int32>] [-NoCom
                      pression] [-NoMachineProfile] [-Culture <CultureInfo>] [-
                      UICulture <CultureInfo>] [-MaximumReceivedDataSizePerComm
                      and <Int32>] [-MaximumReceivedObjectSize <Int32>] [-Appli
                      cationArguments <PSPrimitiveDictionary>] [-OpenTimeout <I
                      nt32>] [-CancelTimeout <Int32>] [-IdleTimeout <Int32>] [-
                      ProxyAccessType <ProxyAccessType>] [-ProxyAuthentication 
                      <AuthenticationMechanism>] [-ProxyCredential <PSCredentia
                      l>] [-SkipCACheck] [-SkipCNCheck] [-SkipRevocationCheck] 
                      [-OperationTimeout <Int32>] [-NoEncryption] [-UseUTF16] [
                      -Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-Wa
                      rningAction <ActionPreference>] [-ErrorVariable <String>]
                       [-WarningVariable <String>] [-OutVariable <String>] [-Ou
                      tBuffer <Int32>]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : New-PSSessionOption
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Core
Module              : 
Parameters          : {[MaximumRedirection, System.Management.Automation.Parame
                      terMetadata], [NoCompression, System.Management.Automatio
                      n.ParameterMetadata], [NoMachineProfile, System.Managemen
                      t.Automation.ParameterMetadata], [Culture, System.Managem
                      ent.Automation.ParameterMetadata]...}
ParameterSets       : {[-MaximumRedirection <Int32>] [-NoCompression] [-NoMachi
                      neProfile] [-Culture <CultureInfo>] [-UICulture <CultureI
                      nfo>] [-MaximumReceivedDataSizePerCommand <Int32>] [-Maxi
                      mumReceivedObjectSize <Int32>] [-ApplicationArguments <PS
                      PrimitiveDictionary>] [-OpenTimeout <Int32>] [-CancelTime
                      out <Int32>] [-IdleTimeout <Int32>] [-ProxyAccessType <Pr
                      oxyAccessType>] [-ProxyAuthentication <AuthenticationMech
                      anism>] [-ProxyCredential <PSCredential>] [-SkipCACheck] 
                      [-SkipCNCheck] [-SkipRevocationCheck] [-OperationTimeout 
                      <Int32>] [-NoEncryption] [-UseUTF16] [-Verbose] [-Debug] 
                      [-ErrorAction <ActionPreference>] [-WarningAction <Action
                      Preference>] [-ErrorVariable <String>] [-WarningVariable 
                      <String>] [-OutVariable <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=144305
DLL                 : C:\Windows\assembly\GAC_MSIL\System.Management.Automation
                      \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d
                      ll


Verb                : New
Noun                : Service
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.NewServiceCommand
Definition          : New-Service [-Name] <String> [-BinaryPathName] <String> [
                      -DisplayName <String>] [-Description <String>] [-StartupT
                      ype <ServiceStartMode>] [-Credential <PSCredential>] [-De
                      pendsOn <String[]>] [-Verbose] [-Debug] [-ErrorAction <Ac
                      tionPreference>] [-WarningAction <ActionPreference>] [-Er
                      rorVariable <String>] [-WarningVariable <String>] [-OutVa
                      riable <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm
                      ]
                      
DefaultParameterSet : 
OutputType          : {System.ServiceProcess.ServiceController}
Name                : New-Service
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[Name, System.Management.Automation.ParameterMetadata], 
                      [BinaryPathName, System.Management.Automation.ParameterMe
                      tadata], [DisplayName, System.Management.Automation.Param
                      eterMetadata], [Description, System.Management.Automation
                      .ParameterMetadata]...}
ParameterSets       : {[-Name] <String> [-BinaryPathName] <String> [-DisplayNam
                      e <String>] [-Description <String>] [-StartupType <Servic
                      eStartMode>] [-Credential <PSCredential>] [-DependsOn <St
                      ring[]>] [-Verbose] [-Debug] [-ErrorAction <ActionPrefere
                      nce>] [-WarningAction <ActionPreference>] [-ErrorVariable
                       <String>] [-WarningVariable <String>] [-OutVariable <Str
                      ing>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113359
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : New
Noun                : TimeSpan
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.NewTimeSpanCommand
Definition          : New-TimeSpan [[-Start] <DateTime>] [[-End] <DateTime>] [-
                      Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-War
                      ningAction <ActionPreference>] [-ErrorVariable <String>] 
                      [-WarningVariable <String>] [-OutVariable <String>] [-Out
                      Buffer <Int32>]
                      New-TimeSpan [-Days <Int32>] [-Hours <Int32>] [-Minutes <
                      Int32>] [-Seconds <Int32>] [-Verbose] [-Debug] [-ErrorAct
                      ion <ActionPreference>] [-WarningAction <ActionPreference
                      >] [-ErrorVariable <String>] [-WarningVariable <String>] 
                      [-OutVariable <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : Date
OutputType          : {System.TimeSpan}
Name                : New-TimeSpan
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[Start, System.Management.Automation.ParameterMetadata],
                       [End, System.Management.Automation.ParameterMetadata], [
                      Days, System.Management.Automation.ParameterMetadata], [H
                      ours, System.Management.Automation.ParameterMetadata]...}
ParameterSets       : {[[-Start] <DateTime>] [[-End] <DateTime>] [-Verbose] [-D
                      ebug] [-ErrorAction <ActionPreference>] [-WarningAction <
                      ActionPreference>] [-ErrorVariable <String>] [-WarningVar
                      iable <String>] [-OutVariable <String>] [-OutBuffer <Int3
                      2>], [-Days <Int32>] [-Hours <Int32>] [-Minutes <Int32>] 
                      [-Seconds <Int32>] [-Verbose] [-Debug] [-ErrorAction <Act
                      ionPreference>] [-WarningAction <ActionPreference>] [-Err
                      orVariable <String>] [-WarningVariable <String>] [-OutVar
                      iable <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113360
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : New
Noun                : Variable
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.NewVariableCommand
Definition          : New-Variable [-Name] <String> [[-Value] <Object>] [-Descr
                      iption <String>] [-Option <ScopedItemOptions>] [-Visibili
                      ty <SessionStateEntryVisibility>] [-Force] [-PassThru] [-
                      Scope <String>] [-Verbose] [-Debug] [-ErrorAction <Action
                      Preference>] [-WarningAction <ActionPreference>] [-ErrorV
                      ariable <String>] [-WarningVariable <String>] [-OutVariab
                      le <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : New-Variable
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[Name, System.Management.Automation.ParameterMetadata], 
                      [Value, System.Management.Automation.ParameterMetadata], 
                      [Description, System.Management.Automation.ParameterMetad
                      ata], [Option, System.Management.Automation.ParameterMeta
                      data]...}
ParameterSets       : {[-Name] <String> [[-Value] <Object>] [-Description <Stri
                      ng>] [-Option <ScopedItemOptions>] [-Visibility <SessionS
                      tateEntryVisibility>] [-Force] [-PassThru] [-Scope <Strin
                      g>] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>]
                       [-WarningAction <ActionPreference>] [-ErrorVariable <Str
                      ing>] [-WarningVariable <String>] [-OutVariable <String>]
                       [-OutBuffer <Int32>] [-WhatIf] [-Confirm]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113361
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : New
Noun                : WebServiceProxy
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.NewWebServiceProxy
Definition          : New-WebServiceProxy [-Uri] <Uri> [[-Class] <String>] [[-N
                      amespace] <String>] [-Verbose] [-Debug] [-ErrorAction <Ac
                      tionPreference>] [-WarningAction <ActionPreference>] [-Er
                      rorVariable <String>] [-WarningVariable <String>] [-OutVa
                      riable <String>] [-OutBuffer <Int32>]
                      New-WebServiceProxy [-Uri] <Uri> [[-Class] <String>] [[-N
                      amespace] <String>] [-Credential <PSCredential>] [-Verbos
                      e] [-Debug] [-ErrorAction <ActionPreference>] [-WarningAc
                      tion <ActionPreference>] [-ErrorVariable <String>] [-Warn
                      ingVariable <String>] [-OutVariable <String>] [-OutBuffer
                       <Int32>]
                      New-WebServiceProxy [-Uri] <Uri> [[-Class] <String>] [[-N
                      amespace] <String>] [-UseDefaultCredential] [-Verbose] [-
                      Debug] [-ErrorAction <ActionPreference>] [-WarningAction 
                      <ActionPreference>] [-ErrorVariable <String>] [-WarningVa
                      riable <String>] [-OutVariable <String>] [-OutBuffer <Int
                      32>]
                      
DefaultParameterSet : NoCredentials
OutputType          : {}
Name                : New-WebServiceProxy
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[Uri, System.Management.Automation.ParameterMetadata], [
                      Class, System.Management.Automation.ParameterMetadata], [
                      Namespace, System.Management.Automation.ParameterMetadata
                      ], [Credential, System.Management.Automation.ParameterMet
                      adata]...}
ParameterSets       : {[-Uri] <Uri> [[-Class] <String>] [[-Namespace] <String>]
                       [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-
                      WarningAction <ActionPreference>] [-ErrorVariable <String
                      >] [-WarningVariable <String>] [-OutVariable <String>] [-
                      OutBuffer <Int32>], [-Uri] <Uri> [[-Class] <String>] [[-N
                      amespace] <String>] [-Credential <PSCredential>] [-Verbos
                      e] [-Debug] [-ErrorAction <ActionPreference>] [-WarningAc
                      tion <ActionPreference>] [-ErrorVariable <String>] [-Warn
                      ingVariable <String>] [-OutVariable <String>] [-OutBuffer
                       <Int32>], [-Uri] <Uri> [[-Class] <String>] [[-Namespace]
                       <String>] [-UseDefaultCredential] [-Verbose] [-Debug] [-
                      ErrorAction <ActionPreference>] [-WarningAction <ActionPr
                      eference>] [-ErrorVariable <String>] [-WarningVariable <S
                      tring>] [-OutVariable <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=135238
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : New
Noun                : WSManInstance
HelpFile            : Microsoft.WSMan.Management.dll-Help.xml
PSSnapIn            : Microsoft.WSMan.Management
ImplementingType    : Microsoft.WSMan.Management.NewWSManInstanceCommand
Definition          : New-WSManInstance [-ResourceURI] <Uri> [-SelectorSet] <Ha
                      shtable> [-ApplicationName <String>] [-ComputerName <Stri
                      ng>] [-FilePath <String>] [-OptionSet <Hashtable>] [-Port
                       <Int32>] [-SessionOption <SessionOption>] [-UseSSL] [-Va
                      lueSet <Hashtable>] [-Credential <PSCredential>] [-Authen
                      tication <AuthenticationMechanism>] [-CertificateThumbpri
                      nt <String>] [-Verbose] [-Debug] [-ErrorAction <ActionPre
                      ference>] [-WarningAction <ActionPreference>] [-ErrorVari
                      able <String>] [-WarningVariable <String>] [-OutVariable 
                      <String>] [-OutBuffer <Int32>]
                      New-WSManInstance [-ResourceURI] <Uri> [-SelectorSet] <Ha
                      shtable> [-ConnectionURI <Uri>] [-FilePath <String>] [-Op
                      tionSet <Hashtable>] [-SessionOption <SessionOption>] [-V
                      alueSet <Hashtable>] [-Credential <PSCredential>] [-Authe
                      ntication <AuthenticationMechanism>] [-CertificateThumbpr
                      int <String>] [-Verbose] [-Debug] [-ErrorAction <ActionPr
                      eference>] [-WarningAction <ActionPreference>] [-ErrorVar
                      iable <String>] [-WarningVariable <String>] [-OutVariable
                       <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : ComputerName
OutputType          : {}
Name                : New-WSManInstance
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.WSMan.Management
Module              : 
Parameters          : {[ApplicationName, System.Management.Automation.Parameter
                      Metadata], [ComputerName, System.Management.Automation.Pa
                      rameterMetadata], [ConnectionURI, System.Management.Autom
                      ation.ParameterMetadata], [FilePath, System.Management.Au
                      tomation.ParameterMetadata]...}
ParameterSets       : {[-ResourceURI] <Uri> [-SelectorSet] <Hashtable> [-Applic
                      ationName <String>] [-ComputerName <String>] [-FilePath <
                      String>] [-OptionSet <Hashtable>] [-Port <Int32>] [-Sessi
                      onOption <SessionOption>] [-UseSSL] [-ValueSet <Hashtable
                      >] [-Credential <PSCredential>] [-Authentication <Authent
                      icationMechanism>] [-CertificateThumbprint <String>] [-Ve
                      rbose] [-Debug] [-ErrorAction <ActionPreference>] [-Warni
                      ngAction <ActionPreference>] [-ErrorVariable <String>] [-
                      WarningVariable <String>] [-OutVariable <String>] [-OutBu
                      ffer <Int32>], [-ResourceURI] <Uri> [-SelectorSet] <Hasht
                      able> [-ConnectionURI <Uri>] [-FilePath <String>] [-Optio
                      nSet <Hashtable>] [-SessionOption <SessionOption>] [-Valu
                      eSet <Hashtable>] [-Credential <PSCredential>] [-Authenti
                      cation <AuthenticationMechanism>] [-CertificateThumbprint
                       <String>] [-Verbose] [-Debug] [-ErrorAction <ActionPrefe
                      rence>] [-WarningAction <ActionPreference>] [-ErrorVariab
                      le <String>] [-WarningVariable <String>] [-OutVariable <S
                      tring>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkId=141448
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.WSMan.Management\1
                      .0.0.0__31bf3856ad364e35\Microsoft.WSMan.Management.dll


Verb                : New
Noun                : WSManSessionOption
HelpFile            : Microsoft.WSMan.Management.dll-Help.xml
PSSnapIn            : Microsoft.WSMan.Management
ImplementingType    : Microsoft.WSMan.Management.NewWSManSessionOptionCommand
Definition          : New-WSManSessionOption [-ProxyAccessType <ProxyAccessType
                      >] [-ProxyAuthentication <ProxyAuthentication>] [-ProxyCr
                      edential <PSCredential>] [-SkipCACheck] [-SkipCNCheck] [-
                      SkipRevocationCheck] [-SPNPort <Int32>] [-OperationTimeou
                      t <Int32>] [-NoEncryption] [-UseUTF16] [-Verbose] [-Debug
                      ] [-ErrorAction <ActionPreference>] [-WarningAction <Acti
                      onPreference>] [-ErrorVariable <String>] [-WarningVariabl
                      e <String>] [-OutVariable <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : New-WSManSessionOption
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.WSMan.Management
Module              : 
Parameters          : {[ProxyAccessType, System.Management.Automation.Parameter
                      Metadata], [ProxyAuthentication, System.Management.Automa
                      tion.ParameterMetadata], [ProxyCredential, System.Managem
                      ent.Automation.ParameterMetadata], [SkipCACheck, System.M
                      anagement.Automation.ParameterMetadata]...}
ParameterSets       : {[-ProxyAccessType <ProxyAccessType>] [-ProxyAuthenticati
                      on <ProxyAuthentication>] [-ProxyCredential <PSCredential
                      >] [-SkipCACheck] [-SkipCNCheck] [-SkipRevocationCheck] [
                      -SPNPort <Int32>] [-OperationTimeout <Int32>] [-NoEncrypt
                      ion] [-UseUTF16] [-Verbose] [-Debug] [-ErrorAction <Actio
                      nPreference>] [-WarningAction <ActionPreference>] [-Error
                      Variable <String>] [-WarningVariable <String>] [-OutVaria
                      ble <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkId=141449
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.WSMan.Management\1
                      .0.0.0__31bf3856ad364e35\Microsoft.WSMan.Management.dll

Name              : ni
CommandType       : Alias
Definition        : New-Item
ReferencedCommand : New-Item
ResolvedCommand   : New-Item

Name              : nmo
CommandType       : Alias
Definition        : New-Module
ReferencedCommand : New-Module
ResolvedCommand   : New-Module

Name              : nsn
CommandType       : Alias
Definition        : New-PSSession
ReferencedCommand : New-PSSession
ResolvedCommand   : New-PSSession

Name              : nv
CommandType       : Alias
Definition        : New-Variable
ReferencedCommand : New-Variable
ResolvedCommand   : New-Variable


ScriptBlock         : Set-Location O:
CmdletBinding       : False
DefaultParameterSet : 
Definition          : Set-Location O:
Options             : None
Description         : 
OutputType          : {}
Name                : O:
CommandType         : Function
Visibility          : Public
ModuleName          : 
Module              : 
Parameters          : {}
ParameterSets       : {}
HelpUri             : 

Name              : ogv
CommandType       : Alias
Definition        : Out-GridView
ReferencedCommand : Out-GridView
ResolvedCommand   : Out-GridView

Name              : oh
CommandType       : Alias
Definition        : Out-Host
ReferencedCommand : Out-Host
ResolvedCommand   : Out-Host


Verb                : Out
Noun                : Default
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.OutDefaultCommand
Definition          : Out-Default [-InputObject <PSObject>] [-Verbose] [-Debug]
                       [-ErrorAction <ActionPreference>] [-WarningAction <Actio
                      nPreference>] [-ErrorVariable <String>] [-WarningVariable
                       <String>] [-OutVariable <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Out-Default
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[InputObject, System.Management.Automation.ParameterMeta
                      data], [Verbose, System.Management.Automation.ParameterMe
                      tadata], [Debug, System.Management.Automation.ParameterMe
                      tadata], [ErrorAction, System.Management.Automation.Param
                      eterMetadata]...}
ParameterSets       : {[-InputObject <PSObject>] [-Verbose] [-Debug] [-ErrorAct
                      ion <ActionPreference>] [-WarningAction <ActionPreference
                      >] [-ErrorVariable <String>] [-WarningVariable <String>] 
                      [-OutVariable <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113362
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : Out
Noun                : File
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.OutFileCommand
Definition          : Out-File [-FilePath] <String> [[-Encoding] <String>] [-Ap
                      pend] [-Force] [-NoClobber] [-Width <Int32>] [-InputObjec
                      t <PSObject>] [-Verbose] [-Debug] [-ErrorAction <ActionPr
                      eference>] [-WarningAction <ActionPreference>] [-ErrorVar
                      iable <String>] [-WarningVariable <String>] [-OutVariable
                       <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Out-File
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[FilePath, System.Management.Automation.ParameterMetadat
                      a], [Encoding, System.Management.Automation.ParameterMeta
                      data], [Append, System.Management.Automation.ParameterMet
                      adata], [Force, System.Management.Automation.ParameterMet
                      adata]...}
ParameterSets       : {[-FilePath] <String> [[-Encoding] <String>] [-Append] [-
                      Force] [-NoClobber] [-Width <Int32>] [-InputObject <PSObj
                      ect>] [-Verbose] [-Debug] [-ErrorAction <ActionPreference
                      >] [-WarningAction <ActionPreference>] [-ErrorVariable <S
                      tring>] [-WarningVariable <String>] [-OutVariable <String
                      >] [-OutBuffer <Int32>] [-WhatIf] [-Confirm]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113363
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : Out
Noun                : GridView
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.OutGridViewCommand
Definition          : Out-GridView [-InputObject <PSObject>] [-Title <String>] 
                      [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-W
                      arningAction <ActionPreference>] [-ErrorVariable <String>
                      ] [-WarningVariable <String>] [-OutVariable <String>] [-O
                      utBuffer <Int32>]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Out-GridView
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[InputObject, System.Management.Automation.ParameterMeta
                      data], [Title, System.Management.Automation.ParameterMeta
                      data], [Verbose, System.Management.Automation.ParameterMe
                      tadata], [Debug, System.Management.Automation.ParameterMe
                      tadata]...}
ParameterSets       : {[-InputObject <PSObject>] [-Title <String>] [-Verbose] [
                      -Debug] [-ErrorAction <ActionPreference>] [-WarningAction
                       <ActionPreference>] [-ErrorVariable <String>] [-WarningV
                      ariable <String>] [-OutVariable <String>] [-OutBuffer <In
                      t32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113364
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : Out
Noun                : Host
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.OutHostCommand
Definition          : Out-Host [-Paging] [-InputObject <PSObject>] [-Verbose] [
                      -Debug] [-ErrorAction <ActionPreference>] [-WarningAction
                       <ActionPreference>] [-ErrorVariable <String>] [-WarningV
                      ariable <String>] [-OutVariable <String>] [-OutBuffer <In
                      t32>]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Out-Host
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[Paging, System.Management.Automation.ParameterMetadata]
                      , [InputObject, System.Management.Automation.ParameterMet
                      adata], [Verbose, System.Management.Automation.ParameterM
                      etadata], [Debug, System.Management.Automation.ParameterM
                      etadata]...}
ParameterSets       : {[-Paging] [-InputObject <PSObject>] [-Verbose] [-Debug] 
                      [-ErrorAction <ActionPreference>] [-WarningAction <Action
                      Preference>] [-ErrorVariable <String>] [-WarningVariable 
                      <String>] [-OutVariable <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113365
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : Out
Noun                : Null
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.OutNullCommand
Definition          : Out-Null [-InputObject <PSObject>] [-Verbose] [-Debug] [-
                      ErrorAction <ActionPreference>] [-WarningAction <ActionPr
                      eference>] [-ErrorVariable <String>] [-WarningVariable <S
                      tring>] [-OutVariable <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Out-Null
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[InputObject, System.Management.Automation.ParameterMeta
                      data], [Verbose, System.Management.Automation.ParameterMe
                      tadata], [Debug, System.Management.Automation.ParameterMe
                      tadata], [ErrorAction, System.Management.Automation.Param
                      eterMetadata]...}
ParameterSets       : {[-InputObject <PSObject>] [-Verbose] [-Debug] [-ErrorAct
                      ion <ActionPreference>] [-WarningAction <ActionPreference
                      >] [-ErrorVariable <String>] [-WarningVariable <String>] 
                      [-OutVariable <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113366
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : Out
Noun                : Printer
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.OutPrinterCommand
Definition          : Out-Printer [[-Name] <String>] [-InputObject <PSObject>] 
                      [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-W
                      arningAction <ActionPreference>] [-ErrorVariable <String>
                      ] [-WarningVariable <String>] [-OutVariable <String>] [-O
                      utBuffer <Int32>]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Out-Printer
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[Name, System.Management.Automation.ParameterMetadata], 
                      [InputObject, System.Management.Automation.ParameterMetad
                      ata], [Verbose, System.Management.Automation.ParameterMet
                      adata], [Debug, System.Management.Automation.ParameterMet
                      adata]...}
ParameterSets       : {[[-Name] <String>] [-InputObject <PSObject>] [-Verbose] 
                      [-Debug] [-ErrorAction <ActionPreference>] [-WarningActio
                      n <ActionPreference>] [-ErrorVariable <String>] [-Warning
                      Variable <String>] [-OutVariable <String>] [-OutBuffer <I
                      nt32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113367
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : Out
Noun                : String
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.OutStringCommand
Definition          : Out-String [-Stream] [-Width <Int32>] [-InputObject <PSOb
                      ject>] [-Verbose] [-Debug] [-ErrorAction <ActionPreferenc
                      e>] [-WarningAction <ActionPreference>] [-ErrorVariable <
                      String>] [-WarningVariable <String>] [-OutVariable <Strin
                      g>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : 
OutputType          : {System.String}
Name                : Out-String
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[Stream, System.Management.Automation.ParameterMetadata]
                      , [Width, System.Management.Automation.ParameterMetadata]
                      , [InputObject, System.Management.Automation.ParameterMet
                      adata], [Verbose, System.Management.Automation.ParameterM
                      etadata]...}
ParameterSets       : {[-Stream] [-Width <Int32>] [-InputObject <PSObject>] [-V
                      erbose] [-Debug] [-ErrorAction <ActionPreference>] [-Warn
                      ingAction <ActionPreference>] [-ErrorVariable <String>] [
                      -WarningVariable <String>] [-OutVariable <String>] [-OutB
                      uffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113368
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


ScriptBlock         : Set-Location P:
CmdletBinding       : False
DefaultParameterSet : 
Definition          : Set-Location P:
Options             : None
Description         : 
OutputType          : {}
Name                : P:
CommandType         : Function
Visibility          : Public
ModuleName          : 
Module              : 
Parameters          : {}
ParameterSets       : {}
HelpUri             : 

Name              : popd
CommandType       : Alias
Definition        : Pop-Location
ReferencedCommand : Pop-Location
ResolvedCommand   : Pop-Location


Verb                : Pop
Noun                : Location
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.PopLocationCommand
Definition          : Pop-Location [-PassThru] [-StackName <String>] [-Verbose]
                       [-Debug] [-ErrorAction <ActionPreference>] [-WarningActi
                      on <ActionPreference>] [-ErrorVariable <String>] [-Warnin
                      gVariable <String>] [-OutVariable <String>] [-OutBuffer <
                      Int32>] [-UseTransaction]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Pop-Location
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[PassThru, System.Management.Automation.ParameterMetadat
                      a], [StackName, System.Management.Automation.ParameterMet
                      adata], [Verbose, System.Management.Automation.ParameterM
                      etadata], [Debug, System.Management.Automation.ParameterM
                      etadata]...}
ParameterSets       : {[-PassThru] [-StackName <String>] [-Verbose] [-Debug] [-
                      ErrorAction <ActionPreference>] [-WarningAction <ActionPr
                      eference>] [-ErrorVariable <String>] [-WarningVariable <S
                      tring>] [-OutVariable <String>] [-OutBuffer <Int32>] [-Us
                      eTransaction]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113369
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


ScriptBlock         : $(if (test-path variable:/PSDebugContext) { '[DBG]: ' } e
                      lse { '' }) + 'PS ' + $(Get-Location) + $(if ($nestedprom
                      ptlevel -ge 1) { '>>' }) + '> '
CmdletBinding       : False
DefaultParameterSet : 
Definition          : $(if (test-path variable:/PSDebugContext) { '[DBG]: ' } e
                      lse { '' }) + 'PS ' + $(Get-Location) + $(if ($nestedprom
                      ptlevel -ge 1) { '>>' }) + '> '
Options             : None
Description         : 
OutputType          : {}
Name                : prompt
CommandType         : Function
Visibility          : Public
ModuleName          : 
Module              : 
Parameters          : {}
ParameterSets       : {}
HelpUri             : 

Name              : ps
CommandType       : Alias
Definition        : Get-Process
ReferencedCommand : Get-Process
ResolvedCommand   : Get-Process

Name              : pushd
CommandType       : Alias
Definition        : Push-Location
ReferencedCommand : Push-Location
ResolvedCommand   : Push-Location


Verb                : Push
Noun                : Location
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.PushLocationCommand
Definition          : Push-Location [[-Path] <String>] [-PassThru] [-StackName 
                      <String>] [-Verbose] [-Debug] [-ErrorAction <ActionPrefer
                      ence>] [-WarningAction <ActionPreference>] [-ErrorVariabl
                      e <String>] [-WarningVariable <String>] [-OutVariable <St
                      ring>] [-OutBuffer <Int32>] [-UseTransaction]
                      Push-Location [[-LiteralPath] <String>] [-PassThru] [-Sta
                      ckName <String>] [-Verbose] [-Debug] [-ErrorAction <Actio
                      nPreference>] [-WarningAction <ActionPreference>] [-Error
                      Variable <String>] [-WarningVariable <String>] [-OutVaria
                      ble <String>] [-OutBuffer <Int32>] [-UseTransaction]
                      
DefaultParameterSet : Path
OutputType          : {}
Name                : Push-Location
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[Path, System.Management.Automation.ParameterMetadata], 
                      [LiteralPath, System.Management.Automation.ParameterMetad
                      ata], [PassThru, System.Management.Automation.ParameterMe
                      tadata], [StackName, System.Management.Automation.Paramet
                      erMetadata]...}
ParameterSets       : {[[-Path] <String>] [-PassThru] [-StackName <String>] [-V
                      erbose] [-Debug] [-ErrorAction <ActionPreference>] [-Warn
                      ingAction <ActionPreference>] [-ErrorVariable <String>] [
                      -WarningVariable <String>] [-OutVariable <String>] [-OutB
                      uffer <Int32>] [-UseTransaction], [[-LiteralPath] <String
                      >] [-PassThru] [-StackName <String>] [-Verbose] [-Debug] 
                      [-ErrorAction <ActionPreference>] [-WarningAction <Action
                      Preference>] [-ErrorVariable <String>] [-WarningVariable 
                      <String>] [-OutVariable <String>] [-OutBuffer <Int32>] [-
                      UseTransaction]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113370
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll

Name              : pwd
CommandType       : Alias
Definition        : Get-Location
ReferencedCommand : Get-Location
ResolvedCommand   : Get-Location


ScriptBlock         : Set-Location Q:
CmdletBinding       : False
DefaultParameterSet : 
Definition          : Set-Location Q:
Options             : None
Description         : 
OutputType          : {}
Name                : Q:
CommandType         : Function
Visibility          : Public
ModuleName          : 
Module              : 
Parameters          : {}
ParameterSets       : {}
HelpUri             : 

Name              : r
CommandType       : Alias
Definition        : Invoke-History
ReferencedCommand : Invoke-History
ResolvedCommand   : Invoke-History


ScriptBlock         : Set-Location R:
CmdletBinding       : False
DefaultParameterSet : 
Definition          : Set-Location R:
Options             : None
Description         : 
OutputType          : {}
Name                : R:
CommandType         : Function
Visibility          : Public
ModuleName          : 
Module              : 
Parameters          : {}
ParameterSets       : {}
HelpUri             : 

Name              : rbp
CommandType       : Alias
Definition        : Remove-PSBreakpoint
ReferencedCommand : Remove-PSBreakpoint
ResolvedCommand   : Remove-PSBreakpoint

Name              : rcjb
CommandType       : Alias
Definition        : Receive-Job
ReferencedCommand : Receive-Job
ResolvedCommand   : Receive-Job

Name              : rd
CommandType       : Alias
Definition        : Remove-Item
ReferencedCommand : Remove-Item
ResolvedCommand   : Remove-Item

Name              : rdr
CommandType       : Alias
Definition        : Remove-PSDrive
ReferencedCommand : Remove-PSDrive
ResolvedCommand   : Remove-PSDrive


Verb                : Read
Noun                : Host
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.ReadHostCommand
Definition          : Read-Host [[-Prompt] <Object>] [-AsSecureString] [-Verbos
                      e] [-Debug] [-ErrorAction <ActionPreference>] [-WarningAc
                      tion <ActionPreference>] [-ErrorVariable <String>] [-Warn
                      ingVariable <String>] [-OutVariable <String>] [-OutBuffer
                       <Int32>]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Read-Host
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[Prompt, System.Management.Automation.ParameterMetadata]
                      , [AsSecureString, System.Management.Automation.Parameter
                      Metadata], [Verbose, System.Management.Automation.Paramet
                      erMetadata], [Debug, System.Management.Automation.Paramet
                      erMetadata]...}
ParameterSets       : {[[-Prompt] <Object>] [-AsSecureString] [-Verbose] [-Debu
                      g] [-ErrorAction <ActionPreference>] [-WarningAction <Act
                      ionPreference>] [-ErrorVariable <String>] [-WarningVariab
                      le <String>] [-OutVariable <String>] [-OutBuffer <Int32>]
                      }
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113371
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : Receive
Noun                : Job
HelpFile            : System.Management.Automation.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Core
ImplementingType    : Microsoft.PowerShell.Commands.ReceiveJobCommand
Definition          : Receive-Job [-Job] <Job[]> [[-Location] <String[]>] [-Kee
                      p] [-NoRecurse] [-Verbose] [-Debug] [-ErrorAction <Action
                      Preference>] [-WarningAction <ActionPreference>] [-ErrorV
                      ariable <String>] [-WarningVariable <String>] [-OutVariab
                      le <String>] [-OutBuffer <Int32>]
                      Receive-Job [-Job] <Job[]> [[-ComputerName] <String[]>] [
                      -Keep] [-NoRecurse] [-Verbose] [-Debug] [-ErrorAction <Ac
                      tionPreference>] [-WarningAction <ActionPreference>] [-Er
                      rorVariable <String>] [-WarningVariable <String>] [-OutVa
                      riable <String>] [-OutBuffer <Int32>]
                      Receive-Job [-Job] <Job[]> [[-Session] <PSSession[]>] [-K
                      eep] [-NoRecurse] [-Verbose] [-Debug] [-ErrorAction <Acti
                      onPreference>] [-WarningAction <ActionPreference>] [-Erro
                      rVariable <String>] [-WarningVariable <String>] [-OutVari
                      able <String>] [-OutBuffer <Int32>]
                      Receive-Job [[-Name] <String[]>] [-Keep] [-NoRecurse] [-V
                      erbose] [-Debug] [-ErrorAction <ActionPreference>] [-Warn
                      ingAction <ActionPreference>] [-ErrorVariable <String>] [
                      -WarningVariable <String>] [-OutVariable <String>] [-OutB
                      uffer <Int32>]
                      Receive-Job [[-InstanceId] <Guid[]>] [-Keep] [-NoRecurse]
                       [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-
                      WarningAction <ActionPreference>] [-ErrorVariable <String
                      >] [-WarningVariable <String>] [-OutVariable <String>] [-
                      OutBuffer <Int32>]
                      Receive-Job [-Id] <Int32[]> [-Keep] [-NoRecurse] [-Verbos
                      e] [-Debug] [-ErrorAction <ActionPreference>] [-WarningAc
                      tion <ActionPreference>] [-ErrorVariable <String>] [-Warn
                      ingVariable <String>] [-OutVariable <String>] [-OutBuffer
                       <Int32>]
                      
DefaultParameterSet : Location
OutputType          : {}
Name                : Receive-Job
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Core
Module              : 
Parameters          : {[Job, System.Management.Automation.ParameterMetadata], [
                      ComputerName, System.Management.Automation.ParameterMetad
                      ata], [Location, System.Management.Automation.ParameterMe
                      tadata], [Session, System.Management.Automation.Parameter
                      Metadata]...}
ParameterSets       : {[-Job] <Job[]> [[-Location] <String[]>] [-Keep] [-NoRecu
                      rse] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>
                      ] [-WarningAction <ActionPreference>] [-ErrorVariable <St
                      ring>] [-WarningVariable <String>] [-OutVariable <String>
                      ] [-OutBuffer <Int32>], [-Job] <Job[]> [[-ComputerName] <
                      String[]>] [-Keep] [-NoRecurse] [-Verbose] [-Debug] [-Err
                      orAction <ActionPreference>] [-WarningAction <ActionPrefe
                      rence>] [-ErrorVariable <String>] [-WarningVariable <Stri
                      ng>] [-OutVariable <String>] [-OutBuffer <Int32>], [-Job]
                       <Job[]> [[-Session] <PSSession[]>] [-Keep] [-NoRecurse] 
                      [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-W
                      arningAction <ActionPreference>] [-ErrorVariable <String>
                      ] [-WarningVariable <String>] [-OutVariable <String>] [-O
                      utBuffer <Int32>], [[-Name] <String[]>] [-Keep] [-NoRecur
                      se] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>]
                       [-WarningAction <ActionPreference>] [-ErrorVariable <Str
                      ing>] [-WarningVariable <String>] [-OutVariable <String>]
                       [-OutBuffer <Int32>]...}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113372
DLL                 : C:\Windows\assembly\GAC_MSIL\System.Management.Automation
                      \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d
                      ll


Verb                : Register
Noun                : EngineEvent
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.RegisterEngineEventCommand
Definition          : Register-EngineEvent [-SourceIdentifier] <String> [[-Acti
                      on] <ScriptBlock>] [-MessageData <PSObject>] [-SupportEve
                      nt] [-Forward] [-Verbose] [-Debug] [-ErrorAction <ActionP
                      reference>] [-WarningAction <ActionPreference>] [-ErrorVa
                      riable <String>] [-WarningVariable <String>] [-OutVariabl
                      e <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Register-EngineEvent
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[SourceIdentifier, System.Management.Automation.Paramete
                      rMetadata], [Action, System.Management.Automation.Paramet
                      erMetadata], [MessageData, System.Management.Automation.P
                      arameterMetadata], [SupportEvent, System.Management.Autom
                      ation.ParameterMetadata]...}
ParameterSets       : {[-SourceIdentifier] <String> [[-Action] <ScriptBlock>] [
                      -MessageData <PSObject>] [-SupportEvent] [-Forward] [-Ver
                      bose] [-Debug] [-ErrorAction <ActionPreference>] [-Warnin
                      gAction <ActionPreference>] [-ErrorVariable <String>] [-W
                      arningVariable <String>] [-OutVariable <String>] [-OutBuf
                      fer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=135243
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : Register
Noun                : ObjectEvent
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.RegisterObjectEventCommand
Definition          : Register-ObjectEvent [-InputObject] <PSObject> [-EventNam
                      e] <String> [[-SourceIdentifier] <String>] [[-Action] <Sc
                      riptBlock>] [-MessageData <PSObject>] [-SupportEvent] [-F
                      orward] [-Verbose] [-Debug] [-ErrorAction <ActionPreferen
                      ce>] [-WarningAction <ActionPreference>] [-ErrorVariable 
                      <String>] [-WarningVariable <String>] [-OutVariable <Stri
                      ng>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Register-ObjectEvent
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[InputObject, System.Management.Automation.ParameterMeta
                      data], [EventName, System.Management.Automation.Parameter
                      Metadata], [SourceIdentifier, System.Management.Automatio
                      n.ParameterMetadata], [Action, System.Management.Automati
                      on.ParameterMetadata]...}
ParameterSets       : {[-InputObject] <PSObject> [-EventName] <String> [[-Sourc
                      eIdentifier] <String>] [[-Action] <ScriptBlock>] [-Messag
                      eData <PSObject>] [-SupportEvent] [-Forward] [-Verbose] [
                      -Debug] [-ErrorAction <ActionPreference>] [-WarningAction
                       <ActionPreference>] [-ErrorVariable <String>] [-WarningV
                      ariable <String>] [-OutVariable <String>] [-OutBuffer <In
                      t32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=135244
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : Register
Noun                : PSSessionConfiguration
HelpFile            : System.Management.Automation.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Core
ImplementingType    : Microsoft.PowerShell.Commands.RegisterPSSessionConfigurat
                      ionCommand
Definition          : Register-PSSessionConfiguration [-Name] <String> [-Proces
                      sorArchitecture <String>] [-ApplicationBase <String>] [-T
                      hreadApartmentState <ApartmentState>] [-ThreadOptions <PS
                      ThreadOptions>] [-StartupScript <String>] [-MaximumReceiv
                      edDataSizePerCommandMB <Nullable`1>] [-MaximumReceivedObj
                      ectSizeMB <Nullable`1>] [-SecurityDescriptorSddl <String>
                      ] [-ShowSecurityDescriptorUI] [-Force] [-NoServiceRestart
                      ] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [
                      -WarningAction <ActionPreference>] [-ErrorVariable <Strin
                      g>] [-WarningVariable <String>] [-OutVariable <String>] [
                      -OutBuffer <Int32>] [-WhatIf] [-Confirm]
                      Register-PSSessionConfiguration [-Name] <String> [-Assemb
                      lyName] <String> [-ConfigurationTypeName] <String> [-Proc
                      essorArchitecture <String>] [-ApplicationBase <String>] [
                      -ThreadApartmentState <ApartmentState>] [-ThreadOptions <
                      PSThreadOptions>] [-StartupScript <String>] [-MaximumRece
                      ivedDataSizePerCommandMB <Nullable`1>] [-MaximumReceivedO
                      bjectSizeMB <Nullable`1>] [-SecurityDescriptorSddl <Strin
                      g>] [-ShowSecurityDescriptorUI] [-Force] [-NoServiceResta
                      rt] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>]
                       [-WarningAction <ActionPreference>] [-ErrorVariable <Str
                      ing>] [-WarningVariable <String>] [-OutVariable <String>]
                       [-OutBuffer <Int32>] [-WhatIf] [-Confirm]
                      
DefaultParameterSet : __AllParameterSets
OutputType          : {}
Name                : Register-PSSessionConfiguration
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Core
Module              : 
Parameters          : {[ProcessorArchitecture, System.Management.Automation.Par
                      ameterMetadata], [Name, System.Management.Automation.Para
                      meterMetadata], [AssemblyName, System.Management.Automati
                      on.ParameterMetadata], [ApplicationBase, System.Managemen
                      t.Automation.ParameterMetadata]...}
ParameterSets       : {[-Name] <String> [-ProcessorArchitecture <String>] [-App
                      licationBase <String>] [-ThreadApartmentState <ApartmentS
                      tate>] [-ThreadOptions <PSThreadOptions>] [-StartupScript
                       <String>] [-MaximumReceivedDataSizePerCommandMB <Nullabl
                      e`1>] [-MaximumReceivedObjectSizeMB <Nullable`1>] [-Secur
                      ityDescriptorSddl <String>] [-ShowSecurityDescriptorUI] [
                      -Force] [-NoServiceRestart] [-Verbose] [-Debug] [-ErrorAc
                      tion <ActionPreference>] [-WarningAction <ActionPreferenc
                      e>] [-ErrorVariable <String>] [-WarningVariable <String>]
                       [-OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf] [
                      -Confirm], [-Name] <String> [-AssemblyName] <String> [-Co
                      nfigurationTypeName] <String> [-ProcessorArchitecture <St
                      ring>] [-ApplicationBase <String>] [-ThreadApartmentState
                       <ApartmentState>] [-ThreadOptions <PSThreadOptions>] [-S
                      tartupScript <String>] [-MaximumReceivedDataSizePerComman
                      dMB <Nullable`1>] [-MaximumReceivedObjectSizeMB <Nullable
                      `1>] [-SecurityDescriptorSddl <String>] [-ShowSecurityDes
                      criptorUI] [-Force] [-NoServiceRestart] [-Verbose] [-Debu
                      g] [-ErrorAction <ActionPreference>] [-WarningAction <Act
                      ionPreference>] [-ErrorVariable <String>] [-WarningVariab
                      le <String>] [-OutVariable <String>] [-OutBuffer <Int32>]
                       [-WhatIf] [-Confirm]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=144306
DLL                 : C:\Windows\assembly\GAC_MSIL\System.Management.Automation
                      \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d
                      ll


Verb                : Register
Noun                : WmiEvent
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.RegisterWmiEventCommand
Definition          : Register-WmiEvent [-Class] <String> [[-SourceIdentifier] 
                      <String>] [[-Action] <ScriptBlock>] [-Namespace <String>]
                       [-Credential <PSCredential>] [-ComputerName <String>] [-
                      Timeout <Int64>] [-MessageData <PSObject>] [-SupportEvent
                      ] [-Forward] [-Verbose] [-Debug] [-ErrorAction <ActionPre
                      ference>] [-WarningAction <ActionPreference>] [-ErrorVari
                      able <String>] [-WarningVariable <String>] [-OutVariable 
                      <String>] [-OutBuffer <Int32>]
                      Register-WmiEvent [-Query] <String> [[-SourceIdentifier] 
                      <String>] [[-Action] <ScriptBlock>] [-Namespace <String>]
                       [-Credential <PSCredential>] [-ComputerName <String>] [-
                      Timeout <Int64>] [-MessageData <PSObject>] [-SupportEvent
                      ] [-Forward] [-Verbose] [-Debug] [-ErrorAction <ActionPre
                      ference>] [-WarningAction <ActionPreference>] [-ErrorVari
                      able <String>] [-WarningVariable <String>] [-OutVariable 
                      <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : class
OutputType          : {}
Name                : Register-WmiEvent
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[Namespace, System.Management.Automation.ParameterMetada
                      ta], [Credential, System.Management.Automation.ParameterM
                      etadata], [ComputerName, System.Management.Automation.Par
                      ameterMetadata], [Class, System.Management.Automation.Par
                      ameterMetadata]...}
ParameterSets       : {[-Class] <String> [[-SourceIdentifier] <String>] [[-Acti
                      on] <ScriptBlock>] [-Namespace <String>] [-Credential <PS
                      Credential>] [-ComputerName <String>] [-Timeout <Int64>] 
                      [-MessageData <PSObject>] [-SupportEvent] [-Forward] [-Ve
                      rbose] [-Debug] [-ErrorAction <ActionPreference>] [-Warni
                      ngAction <ActionPreference>] [-ErrorVariable <String>] [-
                      WarningVariable <String>] [-OutVariable <String>] [-OutBu
                      ffer <Int32>], [-Query] <String> [[-SourceIdentifier] <St
                      ring>] [[-Action] <ScriptBlock>] [-Namespace <String>] [-
                      Credential <PSCredential>] [-ComputerName <String>] [-Tim
                      eout <Int64>] [-MessageData <PSObject>] [-SupportEvent] [
                      -Forward] [-Verbose] [-Debug] [-ErrorAction <ActionPrefer
                      ence>] [-WarningAction <ActionPreference>] [-ErrorVariabl
                      e <String>] [-WarningVariable <String>] [-OutVariable <St
                      ring>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=135245
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : Remove
Noun                : Computer
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.RemoveComputerCommand
Definition          : Remove-Computer [[-Credential] <PSCredential>] [-Force] [
                      -PassThru] [-Verbose] [-Debug] [-ErrorAction <ActionPrefe
                      rence>] [-WarningAction <ActionPreference>] [-ErrorVariab
                      le <String>] [-WarningVariable <String>] [-OutVariable <S
                      tring>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Remove-Computer
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[Credential, System.Management.Automation.ParameterMetad
                      ata], [Force, System.Management.Automation.ParameterMetad
                      ata], [PassThru, System.Management.Automation.ParameterMe
                      tadata], [Verbose, System.Management.Automation.Parameter
                      Metadata]...}
ParameterSets       : {[[-Credential] <PSCredential>] [-Force] [-PassThru] [-Ve
                      rbose] [-Debug] [-ErrorAction <ActionPreference>] [-Warni
                      ngAction <ActionPreference>] [-ErrorVariable <String>] [-
                      WarningVariable <String>] [-OutVariable <String>] [-OutBu
                      ffer <Int32>] [-WhatIf] [-Confirm]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=135246
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : Remove
Noun                : Event
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.RemoveEventCommand
Definition          : Remove-Event [-SourceIdentifier] <String> [-Verbose] [-De
                      bug] [-ErrorAction <ActionPreference>] [-WarningAction <A
                      ctionPreference>] [-ErrorVariable <String>] [-WarningVari
                      able <String>] [-OutVariable <String>] [-OutBuffer <Int32
                      >] [-WhatIf] [-Confirm]
                      Remove-Event [-EventIdentifier] <Int32> [-Verbose] [-Debu
                      g] [-ErrorAction <ActionPreference>] [-WarningAction <Act
                      ionPreference>] [-ErrorVariable <String>] [-WarningVariab
                      le <String>] [-OutVariable <String>] [-OutBuffer <Int32>]
                       [-WhatIf] [-Confirm]
                      
DefaultParameterSet : BySource
OutputType          : {}
Name                : Remove-Event
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[SourceIdentifier, System.Management.Automation.Paramete
                      rMetadata], [EventIdentifier, System.Management.Automatio
                      n.ParameterMetadata], [Verbose, System.Management.Automat
                      ion.ParameterMetadata], [Debug, System.Management.Automat
                      ion.ParameterMetadata]...}
ParameterSets       : {[-SourceIdentifier] <String> [-Verbose] [-Debug] [-Error
                      Action <ActionPreference>] [-WarningAction <ActionPrefere
                      nce>] [-ErrorVariable <String>] [-WarningVariable <String
                      >] [-OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf]
                       [-Confirm], [-EventIdentifier] <Int32> [-Verbose] [-Debu
                      g] [-ErrorAction <ActionPreference>] [-WarningAction <Act
                      ionPreference>] [-ErrorVariable <String>] [-WarningVariab
                      le <String>] [-OutVariable <String>] [-OutBuffer <Int32>]
                       [-WhatIf] [-Confirm]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=135247
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : Remove
Noun                : EventLog
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.RemoveEventLogCommand
Definition          : Remove-EventLog [-LogName] <String[]> [[-ComputerName] <S
                      tring[]>] [-Verbose] [-Debug] [-ErrorAction <ActionPrefer
                      ence>] [-WarningAction <ActionPreference>] [-ErrorVariabl
                      e <String>] [-WarningVariable <String>] [-OutVariable <St
                      ring>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm]
                      Remove-EventLog [[-ComputerName] <String[]>] [-Source <St
                      ring[]>] [-Verbose] [-Debug] [-ErrorAction <ActionPrefere
                      nce>] [-WarningAction <ActionPreference>] [-ErrorVariable
                       <String>] [-WarningVariable <String>] [-OutVariable <Str
                      ing>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm]
                      
DefaultParameterSet : Default
OutputType          : {}
Name                : Remove-EventLog
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[ComputerName, System.Management.Automation.ParameterMet
                      adata], [LogName, System.Management.Automation.ParameterM
                      etadata], [Source, System.Management.Automation.Parameter
                      Metadata], [Verbose, System.Management.Automation.Paramet
                      erMetadata]...}
ParameterSets       : {[-LogName] <String[]> [[-ComputerName] <String[]>] [-Ver
                      bose] [-Debug] [-ErrorAction <ActionPreference>] [-Warnin
                      gAction <ActionPreference>] [-ErrorVariable <String>] [-W
                      arningVariable <String>] [-OutVariable <String>] [-OutBuf
                      fer <Int32>] [-WhatIf] [-Confirm], [[-ComputerName] <Stri
                      ng[]>] [-Source <String[]>] [-Verbose] [-Debug] [-ErrorAc
                      tion <ActionPreference>] [-WarningAction <ActionPreferenc
                      e>] [-ErrorVariable <String>] [-WarningVariable <String>]
                       [-OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf] [
                      -Confirm]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=135248
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : Remove
Noun                : Item
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.RemoveItemCommand
Definition          : Remove-Item [-Path] <String[]> [-Filter <String>] [-Inclu
                      de <String[]>] [-Exclude <String[]>] [-Recurse] [-Force] 
                      [-Credential <PSCredential>] [-Verbose] [-Debug] [-ErrorA
                      ction <ActionPreference>] [-WarningAction <ActionPreferen
                      ce>] [-ErrorVariable <String>] [-WarningVariable <String>
                      ] [-OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf] 
                      [-Confirm] [-UseTransaction]
                      Remove-Item [-LiteralPath] <String[]> [-Filter <String>] 
                      [-Include <String[]>] [-Exclude <String[]>] [-Recurse] [-
                      Force] [-Credential <PSCredential>] [-Verbose] [-Debug] [
                      -ErrorAction <ActionPreference>] [-WarningAction <ActionP
                      reference>] [-ErrorVariable <String>] [-WarningVariable <
                      String>] [-OutVariable <String>] [-OutBuffer <Int32>] [-W
                      hatIf] [-Confirm] [-UseTransaction]
                      
DefaultParameterSet : Path
OutputType          : {}
Name                : Remove-Item
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[Path, System.Management.Automation.ParameterMetadata], 
                      [LiteralPath, System.Management.Automation.ParameterMetad
                      ata], [Filter, System.Management.Automation.ParameterMeta
                      data], [Include, System.Management.Automation.ParameterMe
                      tadata]...}
ParameterSets       : {[-Path] <String[]> [-Filter <String>] [-Include <String[
                      ]>] [-Exclude <String[]>] [-Recurse] [-Force] [-Credentia
                      l <PSCredential>] [-Verbose] [-Debug] [-ErrorAction <Acti
                      onPreference>] [-WarningAction <ActionPreference>] [-Erro
                      rVariable <String>] [-WarningVariable <String>] [-OutVari
                      able <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm] 
                      [-UseTransaction], [-LiteralPath] <String[]> [-Filter <St
                      ring>] [-Include <String[]>] [-Exclude <String[]>] [-Recu
                      rse] [-Force] [-Credential <PSCredential>] [-Verbose] [-D
                      ebug] [-ErrorAction <ActionPreference>] [-WarningAction <
                      ActionPreference>] [-ErrorVariable <String>] [-WarningVar
                      iable <String>] [-OutVariable <String>] [-OutBuffer <Int3
                      2>] [-WhatIf] [-Confirm] [-UseTransaction]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113373
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : Remove
Noun                : ItemProperty
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.RemoveItemPropertyCommand
Definition          : Remove-ItemProperty [-Path] <String[]> [-Name] <String[]>
                       [-Force] [-Filter <String>] [-Include <String[]>] [-Excl
                      ude <String[]>] [-Credential <PSCredential>] [-Verbose] [
                      -Debug] [-ErrorAction <ActionPreference>] [-WarningAction
                       <ActionPreference>] [-ErrorVariable <String>] [-WarningV
                      ariable <String>] [-OutVariable <String>] [-OutBuffer <In
                      t32>] [-WhatIf] [-Confirm] [-UseTransaction]
                      Remove-ItemProperty [-LiteralPath] <String[]> [-Name] <St
                      ring[]> [-Force] [-Filter <String>] [-Include <String[]>]
                       [-Exclude <String[]>] [-Credential <PSCredential>] [-Ver
                      bose] [-Debug] [-ErrorAction <ActionPreference>] [-Warnin
                      gAction <ActionPreference>] [-ErrorVariable <String>] [-W
                      arningVariable <String>] [-OutVariable <String>] [-OutBuf
                      fer <Int32>] [-WhatIf] [-Confirm] [-UseTransaction]
                      
DefaultParameterSet : Path
OutputType          : {}
Name                : Remove-ItemProperty
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[Path, System.Management.Automation.ParameterMetadata], 
                      [LiteralPath, System.Management.Automation.ParameterMetad
                      ata], [Name, System.Management.Automation.ParameterMetada
                      ta], [Force, System.Management.Automation.ParameterMetada
                      ta]...}
ParameterSets       : {[-Path] <String[]> [-Name] <String[]> [-Force] [-Filter 
                      <String>] [-Include <String[]>] [-Exclude <String[]>] [-C
                      redential <PSCredential>] [-Verbose] [-Debug] [-ErrorActi
                      on <ActionPreference>] [-WarningAction <ActionPreference>
                      ] [-ErrorVariable <String>] [-WarningVariable <String>] [
                      -OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf] [-C
                      onfirm] [-UseTransaction], [-LiteralPath] <String[]> [-Na
                      me] <String[]> [-Force] [-Filter <String>] [-Include <Str
                      ing[]>] [-Exclude <String[]>] [-Credential <PSCredential>
                      ] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [
                      -WarningAction <ActionPreference>] [-ErrorVariable <Strin
                      g>] [-WarningVariable <String>] [-OutVariable <String>] [
                      -OutBuffer <Int32>] [-WhatIf] [-Confirm] [-UseTransaction
                      ]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113374
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : Remove
Noun                : Job
HelpFile            : System.Management.Automation.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Core
ImplementingType    : Microsoft.PowerShell.Commands.RemoveJobCommand
Definition          : Remove-Job [-Id] <Int32[]> [-Force] [-Verbose] [-Debug] [
                      -ErrorAction <ActionPreference>] [-WarningAction <ActionP
                      reference>] [-ErrorVariable <String>] [-WarningVariable <
                      String>] [-OutVariable <String>] [-OutBuffer <Int32>] [-W
                      hatIf] [-Confirm]
                      Remove-Job [-Job] <Job[]> [-Force] [-Verbose] [-Debug] [-
                      ErrorAction <ActionPreference>] [-WarningAction <ActionPr
                      eference>] [-ErrorVariable <String>] [-WarningVariable <S
                      tring>] [-OutVariable <String>] [-OutBuffer <Int32>] [-Wh
                      atIf] [-Confirm]
                      Remove-Job [[-Name] <String[]>] [-Force] [-Verbose] [-Deb
                      ug] [-ErrorAction <ActionPreference>] [-WarningAction <Ac
                      tionPreference>] [-ErrorVariable <String>] [-WarningVaria
                      ble <String>] [-OutVariable <String>] [-OutBuffer <Int32>
                      ] [-WhatIf] [-Confirm]
                      Remove-Job [[-InstanceId] <Guid[]>] [-Force] [-Verbose] [
                      -Debug] [-ErrorAction <ActionPreference>] [-WarningAction
                       <ActionPreference>] [-ErrorVariable <String>] [-WarningV
                      ariable <String>] [-OutVariable <String>] [-OutBuffer <In
                      t32>] [-WhatIf] [-Confirm]
                      Remove-Job [-State <JobState>] [-Verbose] [-Debug] [-Erro
                      rAction <ActionPreference>] [-WarningAction <ActionPrefer
                      ence>] [-ErrorVariable <String>] [-WarningVariable <Strin
                      g>] [-OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf
                      ] [-Confirm]
                      Remove-Job [-Command <String[]>] [-Verbose] [-Debug] [-Er
                      rorAction <ActionPreference>] [-WarningAction <ActionPref
                      erence>] [-ErrorVariable <String>] [-WarningVariable <Str
                      ing>] [-OutVariable <String>] [-OutBuffer <Int32>] [-What
                      If] [-Confirm]
                      
DefaultParameterSet : SessionIdParameterSet
OutputType          : {}
Name                : Remove-Job
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Core
Module              : 
Parameters          : {[Job, System.Management.Automation.ParameterMetadata], [
                      Force, System.Management.Automation.ParameterMetadata], [
                      Name, System.Management.Automation.ParameterMetadata], [I
                      nstanceId, System.Management.Automation.ParameterMetadata
                      ]...}
ParameterSets       : {[-Id] <Int32[]> [-Force] [-Verbose] [-Debug] [-ErrorActi
                      on <ActionPreference>] [-WarningAction <ActionPreference>
                      ] [-ErrorVariable <String>] [-WarningVariable <String>] [
                      -OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf] [-C
                      onfirm], [-Job] <Job[]> [-Force] [-Verbose] [-Debug] [-Er
                      rorAction <ActionPreference>] [-WarningAction <ActionPref
                      erence>] [-ErrorVariable <String>] [-WarningVariable <Str
                      ing>] [-OutVariable <String>] [-OutBuffer <Int32>] [-What
                      If] [-Confirm], [[-Name] <String[]>] [-Force] [-Verbose] 
                      [-Debug] [-ErrorAction <ActionPreference>] [-WarningActio
                      n <ActionPreference>] [-ErrorVariable <String>] [-Warning
                      Variable <String>] [-OutVariable <String>] [-OutBuffer <I
                      nt32>] [-WhatIf] [-Confirm], [[-InstanceId] <Guid[]>] [-F
                      orce] [-Verbose] [-Debug] [-ErrorAction <ActionPreference
                      >] [-WarningAction <ActionPreference>] [-ErrorVariable <S
                      tring>] [-WarningVariable <String>] [-OutVariable <String
                      >] [-OutBuffer <Int32>] [-WhatIf] [-Confirm]...}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113377
DLL                 : C:\Windows\assembly\GAC_MSIL\System.Management.Automation
                      \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d
                      ll


Verb                : Remove
Noun                : Module
HelpFile            : System.Management.Automation.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Core
ImplementingType    : Microsoft.PowerShell.Commands.RemoveModuleCommand
Definition          : Remove-Module [-Name] <String[]> [-Force] [-Verbose] [-De
                      bug] [-ErrorAction <ActionPreference>] [-WarningAction <A
                      ctionPreference>] [-ErrorVariable <String>] [-WarningVari
                      able <String>] [-OutVariable <String>] [-OutBuffer <Int32
                      >] [-WhatIf] [-Confirm]
                      Remove-Module [-ModuleInfo] <PSModuleInfo[]> [-Force] [-V
                      erbose] [-Debug] [-ErrorAction <ActionPreference>] [-Warn
                      ingAction <ActionPreference>] [-ErrorVariable <String>] [
                      -WarningVariable <String>] [-OutVariable <String>] [-OutB
                      uffer <Int32>] [-WhatIf] [-Confirm]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Remove-Module
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Core
Module              : 
Parameters          : {[Name, System.Management.Automation.ParameterMetadata], 
                      [ModuleInfo, System.Management.Automation.ParameterMetada
                      ta], [Force, System.Management.Automation.ParameterMetada
                      ta], [Verbose, System.Management.Automation.ParameterMeta
                      data]...}
ParameterSets       : {[-Name] <String[]> [-Force] [-Verbose] [-Debug] [-ErrorA
                      ction <ActionPreference>] [-WarningAction <ActionPreferen
                      ce>] [-ErrorVariable <String>] [-WarningVariable <String>
                      ] [-OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf] 
                      [-Confirm], [-ModuleInfo] <PSModuleInfo[]> [-Force] [-Ver
                      bose] [-Debug] [-ErrorAction <ActionPreference>] [-Warnin
                      gAction <ActionPreference>] [-ErrorVariable <String>] [-W
                      arningVariable <String>] [-OutVariable <String>] [-OutBuf
                      fer <Int32>] [-WhatIf] [-Confirm]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=141556
DLL                 : C:\Windows\assembly\GAC_MSIL\System.Management.Automation
                      \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d
                      ll


Verb                : Remove
Noun                : PSBreakpoint
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.RemovePSBreakpointCommand
Definition          : Remove-PSBreakpoint [-Breakpoint] <Breakpoint[]> [-Verbos
                      e] [-Debug] [-ErrorAction <ActionPreference>] [-WarningAc
                      tion <ActionPreference>] [-ErrorVariable <String>] [-Warn
                      ingVariable <String>] [-OutVariable <String>] [-OutBuffer
                       <Int32>] [-WhatIf] [-Confirm]
                      Remove-PSBreakpoint [-Id] <Int32[]> [-Verbose] [-Debug] [
                      -ErrorAction <ActionPreference>] [-WarningAction <ActionP
                      reference>] [-ErrorVariable <String>] [-WarningVariable <
                      String>] [-OutVariable <String>] [-OutBuffer <Int32>] [-W
                      hatIf] [-Confirm]
                      
DefaultParameterSet : Breakpoint
OutputType          : {}
Name                : Remove-PSBreakpoint
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[Breakpoint, System.Management.Automation.ParameterMetad
                      ata], [Id, System.Management.Automation.ParameterMetadata
                      ], [Verbose, System.Management.Automation.ParameterMetada
                      ta], [Debug, System.Management.Automation.ParameterMetada
                      ta]...}
ParameterSets       : {[-Breakpoint] <Breakpoint[]> [-Verbose] [-Debug] [-Error
                      Action <ActionPreference>] [-WarningAction <ActionPrefere
                      nce>] [-ErrorVariable <String>] [-WarningVariable <String
                      >] [-OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf]
                       [-Confirm], [-Id] <Int32[]> [-Verbose] [-Debug] [-ErrorA
                      ction <ActionPreference>] [-WarningAction <ActionPreferen
                      ce>] [-ErrorVariable <String>] [-WarningVariable <String>
                      ] [-OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf] 
                      [-Confirm]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113375
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : Remove
Noun                : PSDrive
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.RemovePSDriveCommand
Definition          : Remove-PSDrive [-Name] <String[]> [-PSProvider <String[]>
                      ] [-Scope <String>] [-Force] [-Verbose] [-Debug] [-ErrorA
                      ction <ActionPreference>] [-WarningAction <ActionPreferen
                      ce>] [-ErrorVariable <String>] [-WarningVariable <String>
                      ] [-OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf] 
                      [-Confirm] [-UseTransaction]
                      Remove-PSDrive [-LiteralName] <String[]> [-PSProvider <St
                      ring[]>] [-Scope <String>] [-Force] [-Verbose] [-Debug] [
                      -ErrorAction <ActionPreference>] [-WarningAction <ActionP
                      reference>] [-ErrorVariable <String>] [-WarningVariable <
                      String>] [-OutVariable <String>] [-OutBuffer <Int32>] [-W
                      hatIf] [-Confirm] [-UseTransaction]
                      
DefaultParameterSet : Name
OutputType          : {}
Name                : Remove-PSDrive
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[Name, System.Management.Automation.ParameterMetadata], 
                      [LiteralName, System.Management.Automation.ParameterMetad
                      ata], [PSProvider, System.Management.Automation.Parameter
                      Metadata], [Scope, System.Management.Automation.Parameter
                      Metadata]...}
ParameterSets       : {[-Name] <String[]> [-PSProvider <String[]>] [-Scope <Str
                      ing>] [-Force] [-Verbose] [-Debug] [-ErrorAction <ActionP
                      reference>] [-WarningAction <ActionPreference>] [-ErrorVa
                      riable <String>] [-WarningVariable <String>] [-OutVariabl
                      e <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm] [-U
                      seTransaction], [-LiteralName] <String[]> [-PSProvider <S
                      tring[]>] [-Scope <String>] [-Force] [-Verbose] [-Debug] 
                      [-ErrorAction <ActionPreference>] [-WarningAction <Action
                      Preference>] [-ErrorVariable <String>] [-WarningVariable 
                      <String>] [-OutVariable <String>] [-OutBuffer <Int32>] [-
                      WhatIf] [-Confirm] [-UseTransaction]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113376
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : Remove
Noun                : PSSession
HelpFile            : System.Management.Automation.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Core
ImplementingType    : Microsoft.PowerShell.Commands.RemovePSSessionCommand
Definition          : Remove-PSSession [-Id] <Int32[]> [-Verbose] [-Debug] [-Er
                      rorAction <ActionPreference>] [-WarningAction <ActionPref
                      erence>] [-ErrorVariable <String>] [-WarningVariable <Str
                      ing>] [-OutVariable <String>] [-OutBuffer <Int32>] [-What
                      If] [-Confirm]
                      Remove-PSSession [-Session] <PSSession[]> [-Verbose] [-De
                      bug] [-ErrorAction <ActionPreference>] [-WarningAction <A
                      ctionPreference>] [-ErrorVariable <String>] [-WarningVari
                      able <String>] [-OutVariable <String>] [-OutBuffer <Int32
                      >] [-WhatIf] [-Confirm]
                      Remove-PSSession [-InstanceId <Guid[]>] [-Verbose] [-Debu
                      g] [-ErrorAction <ActionPreference>] [-WarningAction <Act
                      ionPreference>] [-ErrorVariable <String>] [-WarningVariab
                      le <String>] [-OutVariable <String>] [-OutBuffer <Int32>]
                       [-WhatIf] [-Confirm]
                      Remove-PSSession [-Name <String[]>] [-Verbose] [-Debug] [
                      -ErrorAction <ActionPreference>] [-WarningAction <ActionP
                      reference>] [-ErrorVariable <String>] [-WarningVariable <
                      String>] [-OutVariable <String>] [-OutBuffer <Int32>] [-W
                      hatIf] [-Confirm]
                      Remove-PSSession [[-ComputerName] <String[]>] [-Verbose] 
                      [-Debug] [-ErrorAction <ActionPreference>] [-WarningActio
                      n <ActionPreference>] [-ErrorVariable <String>] [-Warning
                      Variable <String>] [-OutVariable <String>] [-OutBuffer <I
                      nt32>] [-WhatIf] [-Confirm]
                      
DefaultParameterSet : Id
OutputType          : {}
Name                : Remove-PSSession
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Core
Module              : 
Parameters          : {[Session, System.Management.Automation.ParameterMetadata
                      ], [InstanceId, System.Management.Automation.ParameterMet
                      adata], [Id, System.Management.Automation.ParameterMetada
                      ta], [Name, System.Management.Automation.ParameterMetadat
                      a]...}
ParameterSets       : {[-Id] <Int32[]> [-Verbose] [-Debug] [-ErrorAction <Actio
                      nPreference>] [-WarningAction <ActionPreference>] [-Error
                      Variable <String>] [-WarningVariable <String>] [-OutVaria
                      ble <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm], 
                      [-Session] <PSSession[]> [-Verbose] [-Debug] [-ErrorActio
                      n <ActionPreference>] [-WarningAction <ActionPreference>]
                       [-ErrorVariable <String>] [-WarningVariable <String>] [-
                      OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf] [-Co
                      nfirm], [-InstanceId <Guid[]>] [-Verbose] [-Debug] [-Erro
                      rAction <ActionPreference>] [-WarningAction <ActionPrefer
                      ence>] [-ErrorVariable <String>] [-WarningVariable <Strin
                      g>] [-OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf
                      ] [-Confirm], [-Name <String[]>] [-Verbose] [-Debug] [-Er
                      rorAction <ActionPreference>] [-WarningAction <ActionPref
                      erence>] [-ErrorVariable <String>] [-WarningVariable <Str
                      ing>] [-OutVariable <String>] [-OutBuffer <Int32>] [-What
                      If] [-Confirm]...}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=135250
DLL                 : C:\Windows\assembly\GAC_MSIL\System.Management.Automation
                      \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d
                      ll


Verb                : Remove
Noun                : PSSnapin
HelpFile            : System.Management.Automation.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Core
ImplementingType    : Microsoft.PowerShell.Commands.RemovePSSnapinCommand
Definition          : Remove-PSSnapin [-Name] <String[]> [-PassThru] [-Verbose]
                       [-Debug] [-ErrorAction <ActionPreference>] [-WarningActi
                      on <ActionPreference>] [-ErrorVariable <String>] [-Warnin
                      gVariable <String>] [-OutVariable <String>] [-OutBuffer <
                      Int32>] [-WhatIf] [-Confirm]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Remove-PSSnapin
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Core
Module              : 
Parameters          : {[Name, System.Management.Automation.ParameterMetadata], 
                      [PassThru, System.Management.Automation.ParameterMetadata
                      ], [Verbose, System.Management.Automation.ParameterMetada
                      ta], [Debug, System.Management.Automation.ParameterMetada
                      ta]...}
ParameterSets       : {[-Name] <String[]> [-PassThru] [-Verbose] [-Debug] [-Err
                      orAction <ActionPreference>] [-WarningAction <ActionPrefe
                      rence>] [-ErrorVariable <String>] [-WarningVariable <Stri
                      ng>] [-OutVariable <String>] [-OutBuffer <Int32>] [-WhatI
                      f] [-Confirm]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113378
DLL                 : C:\Windows\assembly\GAC_MSIL\System.Management.Automation
                      \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d
                      ll


Verb                : Remove
Noun                : Variable
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.RemoveVariableCommand
Definition          : Remove-Variable [-Name] <String[]> [-Include <String[]>] 
                      [-Exclude <String[]>] [-Force] [-Scope <String>] [-Verbos
                      e] [-Debug] [-ErrorAction <ActionPreference>] [-WarningAc
                      tion <ActionPreference>] [-ErrorVariable <String>] [-Warn
                      ingVariable <String>] [-OutVariable <String>] [-OutBuffer
                       <Int32>] [-WhatIf] [-Confirm]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Remove-Variable
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[Name, System.Management.Automation.ParameterMetadata], 
                      [Include, System.Management.Automation.ParameterMetadata]
                      , [Exclude, System.Management.Automation.ParameterMetadat
                      a], [Force, System.Management.Automation.ParameterMetadat
                      a]...}
ParameterSets       : {[-Name] <String[]> [-Include <String[]>] [-Exclude <Stri
                      ng[]>] [-Force] [-Scope <String>] [-Verbose] [-Debug] [-E
                      rrorAction <ActionPreference>] [-WarningAction <ActionPre
                      ference>] [-ErrorVariable <String>] [-WarningVariable <St
                      ring>] [-OutVariable <String>] [-OutBuffer <Int32>] [-Wha
                      tIf] [-Confirm]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113380
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : Remove
Noun                : WmiObject
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.RemoveWmiObject
Definition          : Remove-WmiObject [-Class] <String> [-AsJob] [-Impersonati
                      on <ImpersonationLevel>] [-Authentication <Authentication
                      Level>] [-Locale <String>] [-EnableAllPrivileges] [-Autho
                      rity <String>] [-Credential <PSCredential>] [-ThrottleLim
                      it <Int32>] [-ComputerName <String[]>] [-Namespace <Strin
                      g>] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>]
                       [-WarningAction <ActionPreference>] [-ErrorVariable <Str
                      ing>] [-WarningVariable <String>] [-OutVariable <String>]
                       [-OutBuffer <Int32>] [-WhatIf] [-Confirm]
                      Remove-WmiObject -InputObject <ManagementObject> [-AsJob]
                       [-ThrottleLimit <Int32>] [-Verbose] [-Debug] [-ErrorActi
                      on <ActionPreference>] [-WarningAction <ActionPreference>
                      ] [-ErrorVariable <String>] [-WarningVariable <String>] [
                      -OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf] [-C
                      onfirm]
                      Remove-WmiObject -Path <String> [-AsJob] [-Impersonation 
                      <ImpersonationLevel>] [-Authentication <AuthenticationLev
                      el>] [-Locale <String>] [-EnableAllPrivileges] [-Authorit
                      y <String>] [-Credential <PSCredential>] [-ThrottleLimit 
                      <Int32>] [-ComputerName <String[]>] [-Namespace <String>]
                       [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-
                      WarningAction <ActionPreference>] [-ErrorVariable <String
                      >] [-WarningVariable <String>] [-OutVariable <String>] [-
                      OutBuffer <Int32>] [-WhatIf] [-Confirm]
                      Remove-WmiObject [-AsJob] [-Impersonation <ImpersonationL
                      evel>] [-Authentication <AuthenticationLevel>] [-Locale <
                      String>] [-EnableAllPrivileges] [-Authority <String>] [-C
                      redential <PSCredential>] [-ThrottleLimit <Int32>] [-Comp
                      uterName <String[]>] [-Namespace <String>] [-Verbose] [-D
                      ebug] [-ErrorAction <ActionPreference>] [-WarningAction <
                      ActionPreference>] [-ErrorVariable <String>] [-WarningVar
                      iable <String>] [-OutVariable <String>] [-OutBuffer <Int3
                      2>] [-WhatIf] [-Confirm]
                      Remove-WmiObject [-AsJob] [-Impersonation <ImpersonationL
                      evel>] [-Authentication <AuthenticationLevel>] [-Locale <
                      String>] [-EnableAllPrivileges] [-Authority <String>] [-C
                      redential <PSCredential>] [-ThrottleLimit <Int32>] [-Comp
                      uterName <String[]>] [-Namespace <String>] [-Verbose] [-D
                      ebug] [-ErrorAction <ActionPreference>] [-WarningAction <
                      ActionPreference>] [-ErrorVariable <String>] [-WarningVar
                      iable <String>] [-OutVariable <String>] [-OutBuffer <Int3
                      2>] [-WhatIf] [-Confirm]
                      Remove-WmiObject [-AsJob] [-Impersonation <ImpersonationL
                      evel>] [-Authentication <AuthenticationLevel>] [-Locale <
                      String>] [-EnableAllPrivileges] [-Authority <String>] [-C
                      redential <PSCredential>] [-ThrottleLimit <Int32>] [-Comp
                      uterName <String[]>] [-Namespace <String>] [-Verbose] [-D
                      ebug] [-ErrorAction <ActionPreference>] [-WarningAction <
                      ActionPreference>] [-ErrorVariable <String>] [-WarningVar
                      iable <String>] [-OutVariable <String>] [-OutBuffer <Int3
                      2>] [-WhatIf] [-Confirm]
                      
DefaultParameterSet : class
OutputType          : {}
Name                : Remove-WmiObject
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[InputObject, System.Management.Automation.ParameterMeta
                      data], [Path, System.Management.Automation.ParameterMetad
                      ata], [Class, System.Management.Automation.ParameterMetad
                      ata], [AsJob, System.Management.Automation.ParameterMetad
                      ata]...}
ParameterSets       : {[-Class] <String> [-AsJob] [-Impersonation <Impersonatio
                      nLevel>] [-Authentication <AuthenticationLevel>] [-Locale
                       <String>] [-EnableAllPrivileges] [-Authority <String>] [
                      -Credential <PSCredential>] [-ThrottleLimit <Int32>] [-Co
                      mputerName <String[]>] [-Namespace <String>] [-Verbose] [
                      -Debug] [-ErrorAction <ActionPreference>] [-WarningAction
                       <ActionPreference>] [-ErrorVariable <String>] [-WarningV
                      ariable <String>] [-OutVariable <String>] [-OutBuffer <In
                      t32>] [-WhatIf] [-Confirm], -InputObject <ManagementObjec
                      t> [-AsJob] [-ThrottleLimit <Int32>] [-Verbose] [-Debug] 
                      [-ErrorAction <ActionPreference>] [-WarningAction <Action
                      Preference>] [-ErrorVariable <String>] [-WarningVariable 
                      <String>] [-OutVariable <String>] [-OutBuffer <Int32>] [-
                      WhatIf] [-Confirm], -Path <String> [-AsJob] [-Impersonati
                      on <ImpersonationLevel>] [-Authentication <Authentication
                      Level>] [-Locale <String>] [-EnableAllPrivileges] [-Autho
                      rity <String>] [-Credential <PSCredential>] [-ThrottleLim
                      it <Int32>] [-ComputerName <String[]>] [-Namespace <Strin
                      g>] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>]
                       [-WarningAction <ActionPreference>] [-ErrorVariable <Str
                      ing>] [-WarningVariable <String>] [-OutVariable <String>]
                       [-OutBuffer <Int32>] [-WhatIf] [-Confirm], [-AsJob] [-Im
                      personation <ImpersonationLevel>] [-Authentication <Authe
                      nticationLevel>] [-Locale <String>] [-EnableAllPrivileges
                      ] [-Authority <String>] [-Credential <PSCredential>] [-Th
                      rottleLimit <Int32>] [-ComputerName <String[]>] [-Namespa
                      ce <String>] [-Verbose] [-Debug] [-ErrorAction <ActionPre
                      ference>] [-WarningAction <ActionPreference>] [-ErrorVari
                      able <String>] [-WarningVariable <String>] [-OutVariable 
                      <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm]...}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113381
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : Remove
Noun                : WSManInstance
HelpFile            : Microsoft.WSMan.Management.dll-Help.xml
PSSnapIn            : Microsoft.WSMan.Management
ImplementingType    : Microsoft.WSMan.Management.RemoveWSManInstanceCommand
Definition          : Remove-WSManInstance [-ResourceURI] <Uri> [-SelectorSet] 
                      <Hashtable> [-ApplicationName <String>] [-ComputerName <S
                      tring>] [-OptionSet <Hashtable>] [-Port <Int32>] [-Sessio
                      nOption <SessionOption>] [-UseSSL] [-Credential <PSCreden
                      tial>] [-Authentication <AuthenticationMechanism>] [-Cert
                      ificateThumbprint <String>] [-Verbose] [-Debug] [-ErrorAc
                      tion <ActionPreference>] [-WarningAction <ActionPreferenc
                      e>] [-ErrorVariable <String>] [-WarningVariable <String>]
                       [-OutVariable <String>] [-OutBuffer <Int32>]
                      Remove-WSManInstance [-ResourceURI] <Uri> [-SelectorSet] 
                      <Hashtable> [-ConnectionURI <Uri>] [-OptionSet <Hashtable
                      >] [-SessionOption <SessionOption>] [-Credential <PSCrede
                      ntial>] [-Authentication <AuthenticationMechanism>] [-Cer
                      tificateThumbprint <String>] [-Verbose] [-Debug] [-ErrorA
                      ction <ActionPreference>] [-WarningAction <ActionPreferen
                      ce>] [-ErrorVariable <String>] [-WarningVariable <String>
                      ] [-OutVariable <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : ComputerName
OutputType          : {}
Name                : Remove-WSManInstance
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.WSMan.Management
Module              : 
Parameters          : {[ApplicationName, System.Management.Automation.Parameter
                      Metadata], [ComputerName, System.Management.Automation.Pa
                      rameterMetadata], [ConnectionURI, System.Management.Autom
                      ation.ParameterMetadata], [OptionSet, System.Management.A
                      utomation.ParameterMetadata]...}
ParameterSets       : {[-ResourceURI] <Uri> [-SelectorSet] <Hashtable> [-Applic
                      ationName <String>] [-ComputerName <String>] [-OptionSet 
                      <Hashtable>] [-Port <Int32>] [-SessionOption <SessionOpti
                      on>] [-UseSSL] [-Credential <PSCredential>] [-Authenticat
                      ion <AuthenticationMechanism>] [-CertificateThumbprint <S
                      tring>] [-Verbose] [-Debug] [-ErrorAction <ActionPreferen
                      ce>] [-WarningAction <ActionPreference>] [-ErrorVariable 
                      <String>] [-WarningVariable <String>] [-OutVariable <Stri
                      ng>] [-OutBuffer <Int32>], [-ResourceURI] <Uri> [-Selecto
                      rSet] <Hashtable> [-ConnectionURI <Uri>] [-OptionSet <Has
                      htable>] [-SessionOption <SessionOption>] [-Credential <P
                      SCredential>] [-Authentication <AuthenticationMechanism>]
                       [-CertificateThumbprint <String>] [-Verbose] [-Debug] [-
                      ErrorAction <ActionPreference>] [-WarningAction <ActionPr
                      eference>] [-ErrorVariable <String>] [-WarningVariable <S
                      tring>] [-OutVariable <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkId=141453
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.WSMan.Management\1
                      .0.0.0__31bf3856ad364e35\Microsoft.WSMan.Management.dll

Name              : ren
CommandType       : Alias
Definition        : Rename-Item
ReferencedCommand : Rename-Item
ResolvedCommand   : Rename-Item


Verb                : Rename
Noun                : Item
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.RenameItemCommand
Definition          : Rename-Item [-Path] <String> [-NewName] <String> [-Force]
                       [-PassThru] [-Credential <PSCredential>] [-Verbose] [-De
                      bug] [-ErrorAction <ActionPreference>] [-WarningAction <A
                      ctionPreference>] [-ErrorVariable <String>] [-WarningVari
                      able <String>] [-OutVariable <String>] [-OutBuffer <Int32
                      >] [-WhatIf] [-Confirm] [-UseTransaction]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Rename-Item
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[Path, System.Management.Automation.ParameterMetadata], 
                      [NewName, System.Management.Automation.ParameterMetadata]
                      , [Force, System.Management.Automation.ParameterMetadata]
                      , [PassThru, System.Management.Automation.ParameterMetada
                      ta]...}
ParameterSets       : {[-Path] <String> [-NewName] <String> [-Force] [-PassThru
                      ] [-Credential <PSCredential>] [-Verbose] [-Debug] [-Erro
                      rAction <ActionPreference>] [-WarningAction <ActionPrefer
                      ence>] [-ErrorVariable <String>] [-WarningVariable <Strin
                      g>] [-OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf
                      ] [-Confirm] [-UseTransaction]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113382
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : Rename
Noun                : ItemProperty
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.RenameItemPropertyCommand
Definition          : Rename-ItemProperty [-Path] <String> [-Name] <String> [-N
                      ewName] <String> [-PassThru] [-Force] [-Filter <String>] 
                      [-Include <String[]>] [-Exclude <String[]>] [-Credential 
                      <PSCredential>] [-Verbose] [-Debug] [-ErrorAction <Action
                      Preference>] [-WarningAction <ActionPreference>] [-ErrorV
                      ariable <String>] [-WarningVariable <String>] [-OutVariab
                      le <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm] [-
                      UseTransaction]
                      Rename-ItemProperty [-LiteralPath] <String> [-Name] <Stri
                      ng> [-NewName] <String> [-PassThru] [-Force] [-Filter <St
                      ring>] [-Include <String[]>] [-Exclude <String[]>] [-Cred
                      ential <PSCredential>] [-Verbose] [-Debug] [-ErrorAction 
                      <ActionPreference>] [-WarningAction <ActionPreference>] [
                      -ErrorVariable <String>] [-WarningVariable <String>] [-Ou
                      tVariable <String>] [-OutBuffer <Int32>] [-WhatIf] [-Conf
                      irm] [-UseTransaction]
                      
DefaultParameterSet : Path
OutputType          : {}
Name                : Rename-ItemProperty
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[Path, System.Management.Automation.ParameterMetadata], 
                      [LiteralPath, System.Management.Automation.ParameterMetad
                      ata], [Name, System.Management.Automation.ParameterMetada
                      ta], [NewName, System.Management.Automation.ParameterMeta
                      data]...}
ParameterSets       : {[-Path] <String> [-Name] <String> [-NewName] <String> [-
                      PassThru] [-Force] [-Filter <String>] [-Include <String[]
                      >] [-Exclude <String[]>] [-Credential <PSCredential>] [-V
                      erbose] [-Debug] [-ErrorAction <ActionPreference>] [-Warn
                      ingAction <ActionPreference>] [-ErrorVariable <String>] [
                      -WarningVariable <String>] [-OutVariable <String>] [-OutB
                      uffer <Int32>] [-WhatIf] [-Confirm] [-UseTransaction], [-
                      LiteralPath] <String> [-Name] <String> [-NewName] <String
                      > [-PassThru] [-Force] [-Filter <String>] [-Include <Stri
                      ng[]>] [-Exclude <String[]>] [-Credential <PSCredential>]
                       [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-
                      WarningAction <ActionPreference>] [-ErrorVariable <String
                      >] [-WarningVariable <String>] [-OutVariable <String>] [-
                      OutBuffer <Int32>] [-WhatIf] [-Confirm] [-UseTransaction]
                      }
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113383
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : Reset
Noun                : ComputerMachinePassword
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.ResetComputerMachinePasswor
                      dCommand
Definition          : Reset-ComputerMachinePassword [-Server <String>] [-Verbos
                      e] [-Debug] [-ErrorAction <ActionPreference>] [-WarningAc
                      tion <ActionPreference>] [-ErrorVariable <String>] [-Warn
                      ingVariable <String>] [-OutVariable <String>] [-OutBuffer
                       <Int32>] [-WhatIf] [-Confirm]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Reset-ComputerMachinePassword
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[Server, System.Management.Automation.ParameterMetadata]
                      , [Verbose, System.Management.Automation.ParameterMetadat
                      a], [Debug, System.Management.Automation.ParameterMetadat
                      a], [ErrorAction, System.Management.Automation.ParameterM
                      etadata]...}
ParameterSets       : {[-Server <String>] [-Verbose] [-Debug] [-ErrorAction <Ac
                      tionPreference>] [-WarningAction <ActionPreference>] [-Er
                      rorVariable <String>] [-WarningVariable <String>] [-OutVa
                      riable <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm
                      ]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=135252
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : Resolve
Noun                : Path
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.ResolvePathCommand
Definition          : Resolve-Path [-Path] <String[]> [-Relative] [-Credential 
                      <PSCredential>] [-Verbose] [-Debug] [-ErrorAction <Action
                      Preference>] [-WarningAction <ActionPreference>] [-ErrorV
                      ariable <String>] [-WarningVariable <String>] [-OutVariab
                      le <String>] [-OutBuffer <Int32>] [-UseTransaction]
                      Resolve-Path [-LiteralPath] <String[]> [-Relative] [-Cred
                      ential <PSCredential>] [-Verbose] [-Debug] [-ErrorAction 
                      <ActionPreference>] [-WarningAction <ActionPreference>] [
                      -ErrorVariable <String>] [-WarningVariable <String>] [-Ou
                      tVariable <String>] [-OutBuffer <Int32>] [-UseTransaction
                      ]
                      
DefaultParameterSet : Path
OutputType          : {}
Name                : Resolve-Path
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[Path, System.Management.Automation.ParameterMetadata], 
                      [LiteralPath, System.Management.Automation.ParameterMetad
                      ata], [Relative, System.Management.Automation.ParameterMe
                      tadata], [Credential, System.Management.Automation.Parame
                      terMetadata]...}
ParameterSets       : {[-Path] <String[]> [-Relative] [-Credential <PSCredentia
                      l>] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>]
                       [-WarningAction <ActionPreference>] [-ErrorVariable <Str
                      ing>] [-WarningVariable <String>] [-OutVariable <String>]
                       [-OutBuffer <Int32>] [-UseTransaction], [-LiteralPath] <
                      String[]> [-Relative] [-Credential <PSCredential>] [-Verb
                      ose] [-Debug] [-ErrorAction <ActionPreference>] [-Warning
                      Action <ActionPreference>] [-ErrorVariable <String>] [-Wa
                      rningVariable <String>] [-OutVariable <String>] [-OutBuff
                      er <Int32>] [-UseTransaction]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113384
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : Restart
Noun                : Computer
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.RestartComputerCommand
Definition          : Restart-Computer [[-ComputerName] <String[]>] [[-Credenti
                      al] <PSCredential>] [-AsJob] [-Authentication <Authentica
                      tionLevel>] [-Force] [-Impersonation <ImpersonationLevel>
                      ] [-ThrottleLimit <Int32>] [-Verbose] [-Debug] [-ErrorAct
                      ion <ActionPreference>] [-WarningAction <ActionPreference
                      >] [-ErrorVariable <String>] [-WarningVariable <String>] 
                      [-OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf] [-
                      Confirm]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Restart-Computer
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[AsJob, System.Management.Automation.ParameterMetadata],
                       [Authentication, System.Management.Automation.ParameterM
                      etadata], [ComputerName, System.Management.Automation.Par
                      ameterMetadata], [Credential, System.Management.Automatio
                      n.ParameterMetadata]...}
ParameterSets       : {[[-ComputerName] <String[]>] [[-Credential] <PSCredentia
                      l>] [-AsJob] [-Authentication <AuthenticationLevel>] [-Fo
                      rce] [-Impersonation <ImpersonationLevel>] [-ThrottleLimi
                      t <Int32>] [-Verbose] [-Debug] [-ErrorAction <ActionPrefe
                      rence>] [-WarningAction <ActionPreference>] [-ErrorVariab
                      le <String>] [-WarningVariable <String>] [-OutVariable <S
                      tring>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=135253
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : Restart
Noun                : Service
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.RestartServiceCommand
Definition          : Restart-Service [-Name] <String[]> [-Force] [-PassThru] [
                      -Include <String[]>] [-Exclude <String[]>] [-Verbose] [-D
                      ebug] [-ErrorAction <ActionPreference>] [-WarningAction <
                      ActionPreference>] [-ErrorVariable <String>] [-WarningVar
                      iable <String>] [-OutVariable <String>] [-OutBuffer <Int3
                      2>] [-WhatIf] [-Confirm]
                      Restart-Service [-Force] [-PassThru] -DisplayName <String
                      []> [-Include <String[]>] [-Exclude <String[]>] [-Verbose
                      ] [-Debug] [-ErrorAction <ActionPreference>] [-WarningAct
                      ion <ActionPreference>] [-ErrorVariable <String>] [-Warni
                      ngVariable <String>] [-OutVariable <String>] [-OutBuffer 
                      <Int32>] [-WhatIf] [-Confirm]
                      Restart-Service [-Force] [-PassThru] [-Include <String[]>
                      ] [-Exclude <String[]>] [-InputObject <ServiceController[
                      ]>] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>]
                       [-WarningAction <ActionPreference>] [-ErrorVariable <Str
                      ing>] [-WarningVariable <String>] [-OutVariable <String>]
                       [-OutBuffer <Int32>] [-WhatIf] [-Confirm]
                      
DefaultParameterSet : Default
OutputType          : {System.ServiceProcess.ServiceController}
Name                : Restart-Service
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[Force, System.Management.Automation.ParameterMetadata],
                       [Name, System.Management.Automation.ParameterMetadata], 
                      [PassThru, System.Management.Automation.ParameterMetadata
                      ], [DisplayName, System.Management.Automation.ParameterMe
                      tadata]...}
ParameterSets       : {[-Name] <String[]> [-Force] [-PassThru] [-Include <Strin
                      g[]>] [-Exclude <String[]>] [-Verbose] [-Debug] [-ErrorAc
                      tion <ActionPreference>] [-WarningAction <ActionPreferenc
                      e>] [-ErrorVariable <String>] [-WarningVariable <String>]
                       [-OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf] [
                      -Confirm], [-Force] [-PassThru] -DisplayName <String[]> [
                      -Include <String[]>] [-Exclude <String[]>] [-Verbose] [-D
                      ebug] [-ErrorAction <ActionPreference>] [-WarningAction <
                      ActionPreference>] [-ErrorVariable <String>] [-WarningVar
                      iable <String>] [-OutVariable <String>] [-OutBuffer <Int3
                      2>] [-WhatIf] [-Confirm], [-Force] [-PassThru] [-Include 
                      <String[]>] [-Exclude <String[]>] [-InputObject <ServiceC
                      ontroller[]>] [-Verbose] [-Debug] [-ErrorAction <ActionPr
                      eference>] [-WarningAction <ActionPreference>] [-ErrorVar
                      iable <String>] [-WarningVariable <String>] [-OutVariable
                       <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113385
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : Restore
Noun                : Computer
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.RestoreComputerCommand
Definition          : Restore-Computer [-RestorePoint] <Int32> [-Verbose] [-Deb
                      ug] [-ErrorAction <ActionPreference>] [-WarningAction <Ac
                      tionPreference>] [-ErrorVariable <String>] [-WarningVaria
                      ble <String>] [-OutVariable <String>] [-OutBuffer <Int32>
                      ] [-WhatIf] [-Confirm]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Restore-Computer
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[RestorePoint, System.Management.Automation.ParameterMet
                      adata], [Verbose, System.Management.Automation.ParameterM
                      etadata], [Debug, System.Management.Automation.ParameterM
                      etadata], [ErrorAction, System.Management.Automation.Para
                      meterMetadata]...}
ParameterSets       : {[-RestorePoint] <Int32> [-Verbose] [-Debug] [-ErrorActio
                      n <ActionPreference>] [-WarningAction <ActionPreference>]
                       [-ErrorVariable <String>] [-WarningVariable <String>] [-
                      OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf] [-Co
                      nfirm]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=135254
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : Resume
Noun                : Service
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.ResumeServiceCommand
Definition          : Resume-Service [-Name] <String[]> [-PassThru] [-Include <
                      String[]>] [-Exclude <String[]>] [-Verbose] [-Debug] [-Er
                      rorAction <ActionPreference>] [-WarningAction <ActionPref
                      erence>] [-ErrorVariable <String>] [-WarningVariable <Str
                      ing>] [-OutVariable <String>] [-OutBuffer <Int32>] [-What
                      If] [-Confirm]
                      Resume-Service [-PassThru] -DisplayName <String[]> [-Incl
                      ude <String[]>] [-Exclude <String[]>] [-Verbose] [-Debug]
                       [-ErrorAction <ActionPreference>] [-WarningAction <Actio
                      nPreference>] [-ErrorVariable <String>] [-WarningVariable
                       <String>] [-OutVariable <String>] [-OutBuffer <Int32>] [
                      -WhatIf] [-Confirm]
                      Resume-Service [-PassThru] [-Include <String[]>] [-Exclud
                      e <String[]>] [-InputObject <ServiceController[]>] [-Verb
                      ose] [-Debug] [-ErrorAction <ActionPreference>] [-Warning
                      Action <ActionPreference>] [-ErrorVariable <String>] [-Wa
                      rningVariable <String>] [-OutVariable <String>] [-OutBuff
                      er <Int32>] [-WhatIf] [-Confirm]
                      
DefaultParameterSet : Default
OutputType          : {System.ServiceProcess.ServiceController}
Name                : Resume-Service
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[Name, System.Management.Automation.ParameterMetadata], 
                      [PassThru, System.Management.Automation.ParameterMetadata
                      ], [DisplayName, System.Management.Automation.ParameterMe
                      tadata], [Include, System.Management.Automation.Parameter
                      Metadata]...}
ParameterSets       : {[-Name] <String[]> [-PassThru] [-Include <String[]>] [-E
                      xclude <String[]>] [-Verbose] [-Debug] [-ErrorAction <Act
                      ionPreference>] [-WarningAction <ActionPreference>] [-Err
                      orVariable <String>] [-WarningVariable <String>] [-OutVar
                      iable <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm]
                      , [-PassThru] -DisplayName <String[]> [-Include <String[]
                      >] [-Exclude <String[]>] [-Verbose] [-Debug] [-ErrorActio
                      n <ActionPreference>] [-WarningAction <ActionPreference>]
                       [-ErrorVariable <String>] [-WarningVariable <String>] [-
                      OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf] [-Co
                      nfirm], [-PassThru] [-Include <String[]>] [-Exclude <Stri
                      ng[]>] [-InputObject <ServiceController[]>] [-Verbose] [-
                      Debug] [-ErrorAction <ActionPreference>] [-WarningAction 
                      <ActionPreference>] [-ErrorVariable <String>] [-WarningVa
                      riable <String>] [-OutVariable <String>] [-OutBuffer <Int
                      32>] [-WhatIf] [-Confirm]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113386
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll

Name              : ri
CommandType       : Alias
Definition        : Remove-Item
ReferencedCommand : Remove-Item
ResolvedCommand   : Remove-Item

Name              : rjb
CommandType       : Alias
Definition        : Remove-Job
ReferencedCommand : Remove-Job
ResolvedCommand   : Remove-Job

Name              : rm
CommandType       : Alias
Definition        : Remove-Item
ReferencedCommand : Remove-Item
ResolvedCommand   : Remove-Item

Name              : rmdir
CommandType       : Alias
Definition        : Remove-Item
ReferencedCommand : Remove-Item
ResolvedCommand   : Remove-Item

Name              : rmo
CommandType       : Alias
Definition        : Remove-Module
ReferencedCommand : Remove-Module
ResolvedCommand   : Remove-Module

Name              : rni
CommandType       : Alias
Definition        : Rename-Item
ReferencedCommand : Rename-Item
ResolvedCommand   : Rename-Item

Name              : rnp
CommandType       : Alias
Definition        : Rename-ItemProperty
ReferencedCommand : Rename-ItemProperty
ResolvedCommand   : Rename-ItemProperty

Name              : rp
CommandType       : Alias
Definition        : Remove-ItemProperty
ReferencedCommand : Remove-ItemProperty
ResolvedCommand   : Remove-ItemProperty

Name              : rsn
CommandType       : Alias
Definition        : Remove-PSSession
ReferencedCommand : Remove-PSSession
ResolvedCommand   : Remove-PSSession

Name              : rsnp
CommandType       : Alias
Definition        : Remove-PSSnapin
ReferencedCommand : Remove-PSSnapin
ResolvedCommand   : Remove-PSSnapin

Name              : rv
CommandType       : Alias
Definition        : Remove-Variable
ReferencedCommand : Remove-Variable
ResolvedCommand   : Remove-Variable

Name              : rvpa
CommandType       : Alias
Definition        : Resolve-Path
ReferencedCommand : Resolve-Path
ResolvedCommand   : Resolve-Path

Name              : rwmi
CommandType       : Alias
Definition        : Remove-WMIObject
ReferencedCommand : Remove-WmiObject
ResolvedCommand   : Remove-WmiObject


ScriptBlock         : Set-Location S:
CmdletBinding       : False
DefaultParameterSet : 
Definition          : Set-Location S:
Options             : None
Description         : 
OutputType          : {}
Name                : S:
CommandType         : Function
Visibility          : Public
ModuleName          : 
Module              : 
Parameters          : {}
ParameterSets       : {}
HelpUri             : 

Name              : sajb
CommandType       : Alias
Definition        : Start-Job
ReferencedCommand : Start-Job
ResolvedCommand   : Start-Job

Name              : sal
CommandType       : Alias
Definition        : Set-Alias
ReferencedCommand : Set-Alias
ResolvedCommand   : Set-Alias

Name              : saps
CommandType       : Alias
Definition        : Start-Process
ReferencedCommand : Start-Process
ResolvedCommand   : Start-Process

Name              : sasv
CommandType       : Alias
Definition        : Start-Service
ReferencedCommand : Start-Service
ResolvedCommand   : Start-Service

Name              : sbp
CommandType       : Alias
Definition        : Set-PSBreakpoint
ReferencedCommand : Set-PSBreakpoint
ResolvedCommand   : Set-PSBreakpoint

Name              : sc
CommandType       : Alias
Definition        : Set-Content
ReferencedCommand : Set-Content
ResolvedCommand   : Set-Content

Name              : select
CommandType       : Alias
Definition        : Select-Object
ReferencedCommand : Select-Object
ResolvedCommand   : Select-Object


Verb                : Select
Noun                : Object
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.SelectObjectCommand
Definition          : Select-Object [[-Property] <Object[]>] [-InputObject <PSO
                      bject>] [-ExcludeProperty <String[]>] [-ExpandProperty <S
                      tring>] [-Unique] [-Last <Int32>] [-First <Int32>] [-Skip
                       <Int32>] [-Verbose] [-Debug] [-ErrorAction <ActionPrefer
                      ence>] [-WarningAction <ActionPreference>] [-ErrorVariabl
                      e <String>] [-WarningVariable <String>] [-OutVariable <St
                      ring>] [-OutBuffer <Int32>]
                      Select-Object [-InputObject <PSObject>] [-Unique] [-Index
                       <Int32[]>] [-Verbose] [-Debug] [-ErrorAction <ActionPref
                      erence>] [-WarningAction <ActionPreference>] [-ErrorVaria
                      ble <String>] [-WarningVariable <String>] [-OutVariable <
                      String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : DefaultParameter
OutputType          : {}
Name                : Select-Object
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[InputObject, System.Management.Automation.ParameterMeta
                      data], [Property, System.Management.Automation.ParameterM
                      etadata], [ExcludeProperty, System.Management.Automation.
                      ParameterMetadata], [ExpandProperty, System.Management.Au
                      tomation.ParameterMetadata]...}
ParameterSets       : {[[-Property] <Object[]>] [-InputObject <PSObject>] [-Exc
                      ludeProperty <String[]>] [-ExpandProperty <String>] [-Uni
                      que] [-Last <Int32>] [-First <Int32>] [-Skip <Int32>] [-V
                      erbose] [-Debug] [-ErrorAction <ActionPreference>] [-Warn
                      ingAction <ActionPreference>] [-ErrorVariable <String>] [
                      -WarningVariable <String>] [-OutVariable <String>] [-OutB
                      uffer <Int32>], [-InputObject <PSObject>] [-Unique] [-Ind
                      ex <Int32[]>] [-Verbose] [-Debug] [-ErrorAction <ActionPr
                      eference>] [-WarningAction <ActionPreference>] [-ErrorVar
                      iable <String>] [-WarningVariable <String>] [-OutVariable
                       <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113387
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : Select
Noun                : String
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.SelectStringCommand
Definition          : Select-String [-Pattern] <String[]> -InputObject <PSObjec
                      t> [-SimpleMatch] [-CaseSensitive] [-Quiet] [-List] [-Inc
                      lude <String[]>] [-Exclude <String[]>] [-NotMatch] [-AllM
                      atches] [-Encoding <String>] [-Context <Int32[]>] [-Verbo
                      se] [-Debug] [-ErrorAction <ActionPreference>] [-WarningA
                      ction <ActionPreference>] [-ErrorVariable <String>] [-War
                      ningVariable <String>] [-OutVariable <String>] [-OutBuffe
                      r <Int32>]
                      Select-String [-Pattern] <String[]> [-Path] <String[]> [-
                      SimpleMatch] [-CaseSensitive] [-Quiet] [-List] [-Include 
                      <String[]>] [-Exclude <String[]>] [-NotMatch] [-AllMatche
                      s] [-Encoding <String>] [-Context <Int32[]>] [-Verbose] [
                      -Debug] [-ErrorAction <ActionPreference>] [-WarningAction
                       <ActionPreference>] [-ErrorVariable <String>] [-WarningV
                      ariable <String>] [-OutVariable <String>] [-OutBuffer <In
                      t32>]
                      
DefaultParameterSet : 
OutputType          : {Microsoft.PowerShell.Commands.MatchInfo, System.Boolean}
Name                : Select-String
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[InputObject, System.Management.Automation.ParameterMeta
                      data], [Pattern, System.Management.Automation.ParameterMe
                      tadata], [Path, System.Management.Automation.ParameterMet
                      adata], [SimpleMatch, System.Management.Automation.Parame
                      terMetadata]...}
ParameterSets       : {[-Pattern] <String[]> -InputObject <PSObject> [-SimpleMa
                      tch] [-CaseSensitive] [-Quiet] [-List] [-Include <String[
                      ]>] [-Exclude <String[]>] [-NotMatch] [-AllMatches] [-Enc
                      oding <String>] [-Context <Int32[]>] [-Verbose] [-Debug] 
                      [-ErrorAction <ActionPreference>] [-WarningAction <Action
                      Preference>] [-ErrorVariable <String>] [-WarningVariable 
                      <String>] [-OutVariable <String>] [-OutBuffer <Int32>], [
                      -Pattern] <String[]> [-Path] <String[]> [-SimpleMatch] [-
                      CaseSensitive] [-Quiet] [-List] [-Include <String[]>] [-E
                      xclude <String[]>] [-NotMatch] [-AllMatches] [-Encoding <
                      String>] [-Context <Int32[]>] [-Verbose] [-Debug] [-Error
                      Action <ActionPreference>] [-WarningAction <ActionPrefere
                      nce>] [-ErrorVariable <String>] [-WarningVariable <String
                      >] [-OutVariable <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113388
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : Select
Noun                : Xml
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.SelectXmlCommand
Definition          : Select-Xml [-XPath] <String> [-Xml] <XmlNode[]> [-Namespa
                      ce <Hashtable>] [-Verbose] [-Debug] [-ErrorAction <Action
                      Preference>] [-WarningAction <ActionPreference>] [-ErrorV
                      ariable <String>] [-WarningVariable <String>] [-OutVariab
                      le <String>] [-OutBuffer <Int32>]
                      Select-Xml [-XPath] <String> [-Path] <String[]> [-Namespa
                      ce <Hashtable>] [-Verbose] [-Debug] [-ErrorAction <Action
                      Preference>] [-WarningAction <ActionPreference>] [-ErrorV
                      ariable <String>] [-WarningVariable <String>] [-OutVariab
                      le <String>] [-OutBuffer <Int32>]
                      Select-Xml [-XPath] <String> -Content <String[]> [-Namesp
                      ace <Hashtable>] [-Verbose] [-Debug] [-ErrorAction <Actio
                      nPreference>] [-WarningAction <ActionPreference>] [-Error
                      Variable <String>] [-WarningVariable <String>] [-OutVaria
                      ble <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : Xml
OutputType          : {}
Name                : Select-Xml
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[Path, System.Management.Automation.ParameterMetadata], 
                      [Xml, System.Management.Automation.ParameterMetadata], [C
                      ontent, System.Management.Automation.ParameterMetadata], 
                      [XPath, System.Management.Automation.ParameterMetadata]..
                      .}
ParameterSets       : {[-XPath] <String> [-Xml] <XmlNode[]> [-Namespace <Hashta
                      ble>] [-Verbose] [-Debug] [-ErrorAction <ActionPreference
                      >] [-WarningAction <ActionPreference>] [-ErrorVariable <S
                      tring>] [-WarningVariable <String>] [-OutVariable <String
                      >] [-OutBuffer <Int32>], [-XPath] <String> [-Path] <Strin
                      g[]> [-Namespace <Hashtable>] [-Verbose] [-Debug] [-Error
                      Action <ActionPreference>] [-WarningAction <ActionPrefere
                      nce>] [-ErrorVariable <String>] [-WarningVariable <String
                      >] [-OutVariable <String>] [-OutBuffer <Int32>], [-XPath]
                       <String> -Content <String[]> [-Namespace <Hashtable>] [-
                      Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-War
                      ningAction <ActionPreference>] [-ErrorVariable <String>] 
                      [-WarningVariable <String>] [-OutVariable <String>] [-Out
                      Buffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=135255
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : Send
Noun                : MailMessage
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.SendMailMessage
Definition          : Send-MailMessage [-To] <String[]> [-Subject] <String> [[-
                      Body] <String>] [[-SmtpServer] <String>] [-Attachments <S
                      tring[]>] [-Bcc <String[]>] [-BodyAsHtml] [-Encoding <Enc
                      oding>] [-Cc <String[]>] [-DeliveryNotificationOption <De
                      liveryNotificationOptions>] -From <String> [-Priority <Ma
                      ilPriority>] [-Credential <PSCredential>] [-UseSsl] [-Ver
                      bose] [-Debug] [-ErrorAction <ActionPreference>] [-Warnin
                      gAction <ActionPreference>] [-ErrorVariable <String>] [-W
                      arningVariable <String>] [-OutVariable <String>] [-OutBuf
                      fer <Int32>]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Send-MailMessage
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[Attachments, System.Management.Automation.ParameterMeta
                      data], [Bcc, System.Management.Automation.ParameterMetada
                      ta], [Body, System.Management.Automation.ParameterMetadat
                      a], [BodyAsHtml, System.Management.Automation.ParameterMe
                      tadata]...}
ParameterSets       : {[-To] <String[]> [-Subject] <String> [[-Body] <String>] 
                      [[-SmtpServer] <String>] [-Attachments <String[]>] [-Bcc 
                      <String[]>] [-BodyAsHtml] [-Encoding <Encoding>] [-Cc <St
                      ring[]>] [-DeliveryNotificationOption <DeliveryNotificati
                      onOptions>] -From <String> [-Priority <MailPriority>] [-C
                      redential <PSCredential>] [-UseSsl] [-Verbose] [-Debug] [
                      -ErrorAction <ActionPreference>] [-WarningAction <ActionP
                      reference>] [-ErrorVariable <String>] [-WarningVariable <
                      String>] [-OutVariable <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=135256
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll

Name              : set
CommandType       : Alias
Definition        : Set-Variable
ReferencedCommand : Set-Variable
ResolvedCommand   : Set-Variable


Verb                : Set
Noun                : Acl
HelpFile            : Microsoft.PowerShell.Security.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Security
ImplementingType    : Microsoft.PowerShell.Commands.SetAclCommand
Definition          : Set-Acl [-Path] <String[]> [-AclObject] <ObjectSecurity> 
                      [-Passthru] [-Filter <String>] [-Include <String[]>] [-Ex
                      clude <String[]>] [-Verbose] [-Debug] [-ErrorAction <Acti
                      onPreference>] [-WarningAction <ActionPreference>] [-Erro
                      rVariable <String>] [-WarningVariable <String>] [-OutVari
                      able <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm] 
                      [-UseTransaction]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Set-Acl
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Security
Module              : 
Parameters          : {[Path, System.Management.Automation.ParameterMetadata], 
                      [AclObject, System.Management.Automation.ParameterMetadat
                      a], [Passthru, System.Management.Automation.ParameterMeta
                      data], [Filter, System.Management.Automation.ParameterMet
                      adata]...}
ParameterSets       : {[-Path] <String[]> [-AclObject] <ObjectSecurity> [-Passt
                      hru] [-Filter <String>] [-Include <String[]>] [-Exclude <
                      String[]>] [-Verbose] [-Debug] [-ErrorAction <ActionPrefe
                      rence>] [-WarningAction <ActionPreference>] [-ErrorVariab
                      le <String>] [-WarningVariable <String>] [-OutVariable <S
                      tring>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm] [-UseTr
                      ansaction]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113389
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Securit
                      y\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.Security
                      .dll


Verb                : Set
Noun                : Alias
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.SetAliasCommand
Definition          : Set-Alias [-Name] <String> [-Value] <String> [-Descriptio
                      n <String>] [-Option <ScopedItemOptions>] [-PassThru] [-S
                      cope <String>] [-Force] [-Verbose] [-Debug] [-ErrorAction
                       <ActionPreference>] [-WarningAction <ActionPreference>] 
                      [-ErrorVariable <String>] [-WarningVariable <String>] [-O
                      utVariable <String>] [-OutBuffer <Int32>] [-WhatIf] [-Con
                      firm]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Set-Alias
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[Name, System.Management.Automation.ParameterMetadata], 
                      [Value, System.Management.Automation.ParameterMetadata], 
                      [Description, System.Management.Automation.ParameterMetad
                      ata], [Option, System.Management.Automation.ParameterMeta
                      data]...}
ParameterSets       : {[-Name] <String> [-Value] <String> [-Description <String
                      >] [-Option <ScopedItemOptions>] [-PassThru] [-Scope <Str
                      ing>] [-Force] [-Verbose] [-Debug] [-ErrorAction <ActionP
                      reference>] [-WarningAction <ActionPreference>] [-ErrorVa
                      riable <String>] [-WarningVariable <String>] [-OutVariabl
                      e <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113390
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : Set
Noun                : AuthenticodeSignature
HelpFile            : Microsoft.PowerShell.Security.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Security
ImplementingType    : Microsoft.PowerShell.Commands.SetAuthenticodeSignatureCom
                      mand
Definition          : Set-AuthenticodeSignature [-FilePath] <String[]> [-Certif
                      icate] <X509Certificate2> [-IncludeChain <String>] [-Time
                      stampServer <String>] [-HashAlgorithm <String>] [-Force] 
                      [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-W
                      arningAction <ActionPreference>] [-ErrorVariable <String>
                      ] [-WarningVariable <String>] [-OutVariable <String>] [-O
                      utBuffer <Int32>] [-WhatIf] [-Confirm]
                      
DefaultParameterSet : 
OutputType          : {System.Management.Automation.Signature}
Name                : Set-AuthenticodeSignature
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Security
Module              : 
Parameters          : {[Certificate, System.Management.Automation.ParameterMeta
                      data], [IncludeChain, System.Management.Automation.Parame
                      terMetadata], [TimestampServer, System.Management.Automat
                      ion.ParameterMetadata], [HashAlgorithm, System.Management
                      .Automation.ParameterMetadata]...}
ParameterSets       : {[-FilePath] <String[]> [-Certificate] <X509Certificate2>
                       [-IncludeChain <String>] [-TimestampServer <String>] [-H
                      ashAlgorithm <String>] [-Force] [-Verbose] [-Debug] [-Err
                      orAction <ActionPreference>] [-WarningAction <ActionPrefe
                      rence>] [-ErrorVariable <String>] [-WarningVariable <Stri
                      ng>] [-OutVariable <String>] [-OutBuffer <Int32>] [-WhatI
                      f] [-Confirm]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113391
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Securit
                      y\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.Security
                      .dll


Verb                : Set
Noun                : Content
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.SetContentCommand
Definition          : Set-Content [-Path] <String[]> [-Value] <Object[]> [-Pass
                      Thru] [-Filter <String>] [-Include <String[]>] [-Exclude 
                      <String[]>] [-Force] [-Credential <PSCredential>] [-Verbo
                      se] [-Debug] [-ErrorAction <ActionPreference>] [-WarningA
                      ction <ActionPreference>] [-ErrorVariable <String>] [-War
                      ningVariable <String>] [-OutVariable <String>] [-OutBuffe
                      r <Int32>] [-WhatIf] [-Confirm] [-UseTransaction] [-Encod
                      ing <FileSystemCmdletProviderEncoding>]
                      Set-Content [-LiteralPath] <String[]> [-Value] <Object[]>
                       [-PassThru] [-Filter <String>] [-Include <String[]>] [-E
                      xclude <String[]>] [-Force] [-Credential <PSCredential>] 
                      [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-W
                      arningAction <ActionPreference>] [-ErrorVariable <String>
                      ] [-WarningVariable <String>] [-OutVariable <String>] [-O
                      utBuffer <Int32>] [-WhatIf] [-Confirm] [-UseTransaction] 
                      [-Encoding <FileSystemCmdletProviderEncoding>]
                      
DefaultParameterSet : Path
OutputType          : {}
Name                : Set-Content
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[Value, System.Management.Automation.ParameterMetadata],
                       [PassThru, System.Management.Automation.ParameterMetadat
                      a], [Path, System.Management.Automation.ParameterMetadata
                      ], [LiteralPath, System.Management.Automation.ParameterMe
                      tadata]...}
ParameterSets       : {[-Path] <String[]> [-Value] <Object[]> [-PassThru] [-Fil
                      ter <String>] [-Include <String[]>] [-Exclude <String[]>]
                       [-Force] [-Credential <PSCredential>] [-Verbose] [-Debug
                      ] [-ErrorAction <ActionPreference>] [-WarningAction <Acti
                      onPreference>] [-ErrorVariable <String>] [-WarningVariabl
                      e <String>] [-OutVariable <String>] [-OutBuffer <Int32>] 
                      [-WhatIf] [-Confirm] [-UseTransaction] [-Encoding <FileSy
                      stemCmdletProviderEncoding>], [-LiteralPath] <String[]> [
                      -Value] <Object[]> [-PassThru] [-Filter <String>] [-Inclu
                      de <String[]>] [-Exclude <String[]>] [-Force] [-Credentia
                      l <PSCredential>] [-Verbose] [-Debug] [-ErrorAction <Acti
                      onPreference>] [-WarningAction <ActionPreference>] [-Erro
                      rVariable <String>] [-WarningVariable <String>] [-OutVari
                      able <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm] 
                      [-UseTransaction] [-Encoding <FileSystemCmdletProviderEnc
                      oding>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113392
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : Set
Noun                : Date
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.SetDateCommand
Definition          : Set-Date [-Date] <DateTime> [-DisplayHint <DisplayHintTyp
                      e>] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>]
                       [-WarningAction <ActionPreference>] [-ErrorVariable <Str
                      ing>] [-WarningVariable <String>] [-OutVariable <String>]
                       [-OutBuffer <Int32>] [-WhatIf] [-Confirm]
                      Set-Date [-Adjust] <TimeSpan> [-DisplayHint <DisplayHintT
                      ype>] [-Verbose] [-Debug] [-ErrorAction <ActionPreference
                      >] [-WarningAction <ActionPreference>] [-ErrorVariable <S
                      tring>] [-WarningVariable <String>] [-OutVariable <String
                      >] [-OutBuffer <Int32>] [-WhatIf] [-Confirm]
                      
DefaultParameterSet : Date
OutputType          : {}
Name                : Set-Date
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[Date, System.Management.Automation.ParameterMetadata], 
                      [Adjust, System.Management.Automation.ParameterMetadata],
                       [DisplayHint, System.Management.Automation.ParameterMeta
                      data], [Verbose, System.Management.Automation.ParameterMe
                      tadata]...}
ParameterSets       : {[-Date] <DateTime> [-DisplayHint <DisplayHintType>] [-Ve
                      rbose] [-Debug] [-ErrorAction <ActionPreference>] [-Warni
                      ngAction <ActionPreference>] [-ErrorVariable <String>] [-
                      WarningVariable <String>] [-OutVariable <String>] [-OutBu
                      ffer <Int32>] [-WhatIf] [-Confirm], [-Adjust] <TimeSpan> 
                      [-DisplayHint <DisplayHintType>] [-Verbose] [-Debug] [-Er
                      rorAction <ActionPreference>] [-WarningAction <ActionPref
                      erence>] [-ErrorVariable <String>] [-WarningVariable <Str
                      ing>] [-OutVariable <String>] [-OutBuffer <Int32>] [-What
                      If] [-Confirm]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113393
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : Set
Noun                : ExecutionPolicy
HelpFile            : Microsoft.PowerShell.Security.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Security
ImplementingType    : Microsoft.PowerShell.Commands.SetExecutionPolicyCommand
Definition          : Set-ExecutionPolicy [-ExecutionPolicy] <ExecutionPolicy> 
                      [[-Scope] <ExecutionPolicyScope>] [-Force] [-Verbose] [-D
                      ebug] [-ErrorAction <ActionPreference>] [-WarningAction <
                      ActionPreference>] [-ErrorVariable <String>] [-WarningVar
                      iable <String>] [-OutVariable <String>] [-OutBuffer <Int3
                      2>] [-WhatIf] [-Confirm]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Set-ExecutionPolicy
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Security
Module              : 
Parameters          : {[ExecutionPolicy, System.Management.Automation.Parameter
                      Metadata], [Scope, System.Management.Automation.Parameter
                      Metadata], [Force, System.Management.Automation.Parameter
                      Metadata], [Verbose, System.Management.Automation.Paramet
                      erMetadata]...}
ParameterSets       : {[-ExecutionPolicy] <ExecutionPolicy> [[-Scope] <Executio
                      nPolicyScope>] [-Force] [-Verbose] [-Debug] [-ErrorAction
                       <ActionPreference>] [-WarningAction <ActionPreference>] 
                      [-ErrorVariable <String>] [-WarningVariable <String>] [-O
                      utVariable <String>] [-OutBuffer <Int32>] [-WhatIf] [-Con
                      firm]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113394
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Securit
                      y\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.Security
                      .dll


Verb                : Set
Noun                : Item
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.SetItemCommand
Definition          : Set-Item [-Path] <String[]> [[-Value] <Object>] [-Force] 
                      [-PassThru] [-Filter <String>] [-Include <String[]>] [-Ex
                      clude <String[]>] [-Credential <PSCredential>] [-Verbose]
                       [-Debug] [-ErrorAction <ActionPreference>] [-WarningActi
                      on <ActionPreference>] [-ErrorVariable <String>] [-Warnin
                      gVariable <String>] [-OutVariable <String>] [-OutBuffer <
                      Int32>] [-WhatIf] [-Confirm] [-UseTransaction]
                      Set-Item [-LiteralPath] <String[]> [[-Value] <Object>] [-
                      Force] [-PassThru] [-Filter <String>] [-Include <String[]
                      >] [-Exclude <String[]>] [-Credential <PSCredential>] [-V
                      erbose] [-Debug] [-ErrorAction <ActionPreference>] [-Warn
                      ingAction <ActionPreference>] [-ErrorVariable <String>] [
                      -WarningVariable <String>] [-OutVariable <String>] [-OutB
                      uffer <Int32>] [-WhatIf] [-Confirm] [-UseTransaction]
                      
DefaultParameterSet : Path
OutputType          : {}
Name                : Set-Item
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[Path, System.Management.Automation.ParameterMetadata], 
                      [LiteralPath, System.Management.Automation.ParameterMetad
                      ata], [Value, System.Management.Automation.ParameterMetad
                      ata], [Force, System.Management.Automation.ParameterMetad
                      ata]...}
ParameterSets       : {[-Path] <String[]> [[-Value] <Object>] [-Force] [-PassTh
                      ru] [-Filter <String>] [-Include <String[]>] [-Exclude <S
                      tring[]>] [-Credential <PSCredential>] [-Verbose] [-Debug
                      ] [-ErrorAction <ActionPreference>] [-WarningAction <Acti
                      onPreference>] [-ErrorVariable <String>] [-WarningVariabl
                      e <String>] [-OutVariable <String>] [-OutBuffer <Int32>] 
                      [-WhatIf] [-Confirm] [-UseTransaction], [-LiteralPath] <S
                      tring[]> [[-Value] <Object>] [-Force] [-PassThru] [-Filte
                      r <String>] [-Include <String[]>] [-Exclude <String[]>] [
                      -Credential <PSCredential>] [-Verbose] [-Debug] [-ErrorAc
                      tion <ActionPreference>] [-WarningAction <ActionPreferenc
                      e>] [-ErrorVariable <String>] [-WarningVariable <String>]
                       [-OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf] [
                      -Confirm] [-UseTransaction]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113395
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : Set
Noun                : ItemProperty
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.SetItemPropertyCommand
Definition          : Set-ItemProperty [-Path] <String[]> [-Name] <String> [-Va
                      lue] <Object> [-PassThru] [-Force] [-Filter <String>] [-I
                      nclude <String[]>] [-Exclude <String[]>] [-Credential <PS
                      Credential>] [-Verbose] [-Debug] [-ErrorAction <ActionPre
                      ference>] [-WarningAction <ActionPreference>] [-ErrorVari
                      able <String>] [-WarningVariable <String>] [-OutVariable 
                      <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm] [-Use
                      Transaction]
                      Set-ItemProperty [-Path] <String[]> -InputObject <PSObjec
                      t> [-PassThru] [-Force] [-Filter <String>] [-Include <Str
                      ing[]>] [-Exclude <String[]>] [-Credential <PSCredential>
                      ] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [
                      -WarningAction <ActionPreference>] [-ErrorVariable <Strin
                      g>] [-WarningVariable <String>] [-OutVariable <String>] [
                      -OutBuffer <Int32>] [-WhatIf] [-Confirm] [-UseTransaction
                      ]
                      Set-ItemProperty [-LiteralPath] <String[]> -InputObject <
                      PSObject> [-PassThru] [-Force] [-Filter <String>] [-Inclu
                      de <String[]>] [-Exclude <String[]>] [-Credential <PSCred
                      ential>] [-Verbose] [-Debug] [-ErrorAction <ActionPrefere
                      nce>] [-WarningAction <ActionPreference>] [-ErrorVariable
                       <String>] [-WarningVariable <String>] [-OutVariable <Str
                      ing>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm] [-UseTran
                      saction]
                      Set-ItemProperty [-LiteralPath] <String[]> [-Name] <Strin
                      g> [-Value] <Object> [-PassThru] [-Force] [-Filter <Strin
                      g>] [-Include <String[]>] [-Exclude <String[]>] [-Credent
                      ial <PSCredential>] [-Verbose] [-Debug] [-ErrorAction <Ac
                      tionPreference>] [-WarningAction <ActionPreference>] [-Er
                      rorVariable <String>] [-WarningVariable <String>] [-OutVa
                      riable <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm
                      ] [-UseTransaction]
                      
DefaultParameterSet : propertyValuePathSet
OutputType          : {}
Name                : Set-ItemProperty
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[Path, System.Management.Automation.ParameterMetadata], 
                      [LiteralPath, System.Management.Automation.ParameterMetad
                      ata], [Name, System.Management.Automation.ParameterMetada
                      ta], [Value, System.Management.Automation.ParameterMetada
                      ta]...}
ParameterSets       : {[-Path] <String[]> [-Name] <String> [-Value] <Object> [-
                      PassThru] [-Force] [-Filter <String>] [-Include <String[]
                      >] [-Exclude <String[]>] [-Credential <PSCredential>] [-V
                      erbose] [-Debug] [-ErrorAction <ActionPreference>] [-Warn
                      ingAction <ActionPreference>] [-ErrorVariable <String>] [
                      -WarningVariable <String>] [-OutVariable <String>] [-OutB
                      uffer <Int32>] [-WhatIf] [-Confirm] [-UseTransaction], [-
                      Path] <String[]> -InputObject <PSObject> [-PassThru] [-Fo
                      rce] [-Filter <String>] [-Include <String[]>] [-Exclude <
                      String[]>] [-Credential <PSCredential>] [-Verbose] [-Debu
                      g] [-ErrorAction <ActionPreference>] [-WarningAction <Act
                      ionPreference>] [-ErrorVariable <String>] [-WarningVariab
                      le <String>] [-OutVariable <String>] [-OutBuffer <Int32>]
                       [-WhatIf] [-Confirm] [-UseTransaction], [-LiteralPath] <
                      String[]> -InputObject <PSObject> [-PassThru] [-Force] [-
                      Filter <String>] [-Include <String[]>] [-Exclude <String[
                      ]>] [-Credential <PSCredential>] [-Verbose] [-Debug] [-Er
                      rorAction <ActionPreference>] [-WarningAction <ActionPref
                      erence>] [-ErrorVariable <String>] [-WarningVariable <Str
                      ing>] [-OutVariable <String>] [-OutBuffer <Int32>] [-What
                      If] [-Confirm] [-UseTransaction], [-LiteralPath] <String[
                      ]> [-Name] <String> [-Value] <Object> [-PassThru] [-Force
                      ] [-Filter <String>] [-Include <String[]>] [-Exclude <Str
                      ing[]>] [-Credential <PSCredential>] [-Verbose] [-Debug] 
                      [-ErrorAction <ActionPreference>] [-WarningAction <Action
                      Preference>] [-ErrorVariable <String>] [-WarningVariable 
                      <String>] [-OutVariable <String>] [-OutBuffer <Int32>] [-
                      WhatIf] [-Confirm] [-UseTransaction]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113396
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : Set
Noun                : Location
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.SetLocationCommand
Definition          : Set-Location [[-Path] <String>] [-PassThru] [-Verbose] [-
                      Debug] [-ErrorAction <ActionPreference>] [-WarningAction 
                      <ActionPreference>] [-ErrorVariable <String>] [-WarningVa
                      riable <String>] [-OutVariable <String>] [-OutBuffer <Int
                      32>] [-UseTransaction]
                      Set-Location [-LiteralPath] <String> [-PassThru] [-Verbos
                      e] [-Debug] [-ErrorAction <ActionPreference>] [-WarningAc
                      tion <ActionPreference>] [-ErrorVariable <String>] [-Warn
                      ingVariable <String>] [-OutVariable <String>] [-OutBuffer
                       <Int32>] [-UseTransaction]
                      Set-Location [-PassThru] [-StackName <String>] [-Verbose]
                       [-Debug] [-ErrorAction <ActionPreference>] [-WarningActi
                      on <ActionPreference>] [-ErrorVariable <String>] [-Warnin
                      gVariable <String>] [-OutVariable <String>] [-OutBuffer <
                      Int32>] [-UseTransaction]
                      
DefaultParameterSet : Path
OutputType          : {}
Name                : Set-Location
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[Path, System.Management.Automation.ParameterMetadata], 
                      [LiteralPath, System.Management.Automation.ParameterMetad
                      ata], [PassThru, System.Management.Automation.ParameterMe
                      tadata], [StackName, System.Management.Automation.Paramet
                      erMetadata]...}
ParameterSets       : {[[-Path] <String>] [-PassThru] [-Verbose] [-Debug] [-Err
                      orAction <ActionPreference>] [-WarningAction <ActionPrefe
                      rence>] [-ErrorVariable <String>] [-WarningVariable <Stri
                      ng>] [-OutVariable <String>] [-OutBuffer <Int32>] [-UseTr
                      ansaction], [-LiteralPath] <String> [-PassThru] [-Verbose
                      ] [-Debug] [-ErrorAction <ActionPreference>] [-WarningAct
                      ion <ActionPreference>] [-ErrorVariable <String>] [-Warni
                      ngVariable <String>] [-OutVariable <String>] [-OutBuffer 
                      <Int32>] [-UseTransaction], [-PassThru] [-StackName <Stri
                      ng>] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>
                      ] [-WarningAction <ActionPreference>] [-ErrorVariable <St
                      ring>] [-WarningVariable <String>] [-OutVariable <String>
                      ] [-OutBuffer <Int32>] [-UseTransaction]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113397
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : Set
Noun                : PSBreakpoint
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.SetPSBreakpointCommand
Definition          : Set-PSBreakpoint [-Script] <String[]> [-Line] <Int32[]> [
                      [-Column] <Int32>] [-Action <ScriptBlock>] [-Verbose] [-D
                      ebug] [-ErrorAction <ActionPreference>] [-WarningAction <
                      ActionPreference>] [-ErrorVariable <String>] [-WarningVar
                      iable <String>] [-OutVariable <String>] [-OutBuffer <Int3
                      2>]
                      Set-PSBreakpoint [[-Script] <String[]>] [-Action <ScriptB
                      lock>] -Command <String[]> [-Verbose] [-Debug] [-ErrorAct
                      ion <ActionPreference>] [-WarningAction <ActionPreference
                      >] [-ErrorVariable <String>] [-WarningVariable <String>] 
                      [-OutVariable <String>] [-OutBuffer <Int32>]
                      Set-PSBreakpoint [[-Script] <String[]>] [-Action <ScriptB
                      lock>] -Variable <String[]> [-Mode <VariableAccessMode>] 
                      [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-W
                      arningAction <ActionPreference>] [-ErrorVariable <String>
                      ] [-WarningVariable <String>] [-OutVariable <String>] [-O
                      utBuffer <Int32>]
                      
DefaultParameterSet : Line
OutputType          : {}
Name                : Set-PSBreakpoint
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[Action, System.Management.Automation.ParameterMetadata]
                      , [Column, System.Management.Automation.ParameterMetadata
                      ], [Command, System.Management.Automation.ParameterMetada
                      ta], [Line, System.Management.Automation.ParameterMetadat
                      a]...}
ParameterSets       : {[-Script] <String[]> [-Line] <Int32[]> [[-Column] <Int32
                      >] [-Action <ScriptBlock>] [-Verbose] [-Debug] [-ErrorAct
                      ion <ActionPreference>] [-WarningAction <ActionPreference
                      >] [-ErrorVariable <String>] [-WarningVariable <String>] 
                      [-OutVariable <String>] [-OutBuffer <Int32>], [[-Script] 
                      <String[]>] [-Action <ScriptBlock>] -Command <String[]> [
                      -Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-Wa
                      rningAction <ActionPreference>] [-ErrorVariable <String>]
                       [-WarningVariable <String>] [-OutVariable <String>] [-Ou
                      tBuffer <Int32>], [[-Script] <String[]>] [-Action <Script
                      Block>] -Variable <String[]> [-Mode <VariableAccessMode>]
                       [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-
                      WarningAction <ActionPreference>] [-ErrorVariable <String
                      >] [-WarningVariable <String>] [-OutVariable <String>] [-
                      OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113449
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : Set
Noun                : PSDebug
HelpFile            : System.Management.Automation.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Core
ImplementingType    : Microsoft.PowerShell.Commands.SetPSDebugCommand
Definition          : Set-PSDebug [-Trace <Int32>] [-Step] [-Strict] [-Verbose]
                       [-Debug] [-ErrorAction <ActionPreference>] [-WarningActi
                      on <ActionPreference>] [-ErrorVariable <String>] [-Warnin
                      gVariable <String>] [-OutVariable <String>] [-OutBuffer <
                      Int32>]
                      Set-PSDebug [-Off] [-Verbose] [-Debug] [-ErrorAction <Act
                      ionPreference>] [-WarningAction <ActionPreference>] [-Err
                      orVariable <String>] [-WarningVariable <String>] [-OutVar
                      iable <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Set-PSDebug
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Core
Module              : 
Parameters          : {[Trace, System.Management.Automation.ParameterMetadata],
                       [Step, System.Management.Automation.ParameterMetadata], 
                      [Strict, System.Management.Automation.ParameterMetadata],
                       [Off, System.Management.Automation.ParameterMetadata]...
                      }
ParameterSets       : {[-Trace <Int32>] [-Step] [-Strict] [-Verbose] [-Debug] [
                      -ErrorAction <ActionPreference>] [-WarningAction <ActionP
                      reference>] [-ErrorVariable <String>] [-WarningVariable <
                      String>] [-OutVariable <String>] [-OutBuffer <Int32>], [-
                      Off] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>
                      ] [-WarningAction <ActionPreference>] [-ErrorVariable <St
                      ring>] [-WarningVariable <String>] [-OutVariable <String>
                      ] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113398
DLL                 : C:\Windows\assembly\GAC_MSIL\System.Management.Automation
                      \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d
                      ll


Verb                : Set
Noun                : PSSessionConfiguration
HelpFile            : System.Management.Automation.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Core
ImplementingType    : Microsoft.PowerShell.Commands.SetPSSessionConfigurationCo
                      mmand
Definition          : Set-PSSessionConfiguration [-Name] <String> [-Application
                      Base <String>] [-ThreadApartmentState <ApartmentState>] [
                      -ThreadOptions <PSThreadOptions>] [-StartupScript <String
                      >] [-MaximumReceivedDataSizePerCommandMB <Nullable`1>] [-
                      MaximumReceivedObjectSizeMB <Nullable`1>] [-SecurityDescr
                      iptorSddl <String>] [-ShowSecurityDescriptorUI] [-Force] 
                      [-NoServiceRestart] [-Verbose] [-Debug] [-ErrorAction <Ac
                      tionPreference>] [-WarningAction <ActionPreference>] [-Er
                      rorVariable <String>] [-WarningVariable <String>] [-OutVa
                      riable <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm
                      ]
                      Set-PSSessionConfiguration [-Name] <String> [-AssemblyNam
                      e] <String> [-ConfigurationTypeName] <String> [-Applicati
                      onBase <String>] [-ThreadApartmentState <ApartmentState>]
                       [-ThreadOptions <PSThreadOptions>] [-StartupScript <Stri
                      ng>] [-MaximumReceivedDataSizePerCommandMB <Nullable`1>] 
                      [-MaximumReceivedObjectSizeMB <Nullable`1>] [-SecurityDes
                      criptorSddl <String>] [-ShowSecurityDescriptorUI] [-Force
                      ] [-NoServiceRestart] [-Verbose] [-Debug] [-ErrorAction <
                      ActionPreference>] [-WarningAction <ActionPreference>] [-
                      ErrorVariable <String>] [-WarningVariable <String>] [-Out
                      Variable <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confi
                      rm]
                      
DefaultParameterSet : __AllParameterSets
OutputType          : {}
Name                : Set-PSSessionConfiguration
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Core
Module              : 
Parameters          : {[Name, System.Management.Automation.ParameterMetadata], 
                      [AssemblyName, System.Management.Automation.ParameterMeta
                      data], [ApplicationBase, System.Management.Automation.Par
                      ameterMetadata], [ConfigurationTypeName, System.Managemen
                      t.Automation.ParameterMetadata]...}
ParameterSets       : {[-Name] <String> [-ApplicationBase <String>] [-ThreadApa
                      rtmentState <ApartmentState>] [-ThreadOptions <PSThreadOp
                      tions>] [-StartupScript <String>] [-MaximumReceivedDataSi
                      zePerCommandMB <Nullable`1>] [-MaximumReceivedObjectSizeM
                      B <Nullable`1>] [-SecurityDescriptorSddl <String>] [-Show
                      SecurityDescriptorUI] [-Force] [-NoServiceRestart] [-Verb
                      ose] [-Debug] [-ErrorAction <ActionPreference>] [-Warning
                      Action <ActionPreference>] [-ErrorVariable <String>] [-Wa
                      rningVariable <String>] [-OutVariable <String>] [-OutBuff
                      er <Int32>] [-WhatIf] [-Confirm], [-Name] <String> [-Asse
                      mblyName] <String> [-ConfigurationTypeName] <String> [-Ap
                      plicationBase <String>] [-ThreadApartmentState <Apartment
                      State>] [-ThreadOptions <PSThreadOptions>] [-StartupScrip
                      t <String>] [-MaximumReceivedDataSizePerCommandMB <Nullab
                      le`1>] [-MaximumReceivedObjectSizeMB <Nullable`1>] [-Secu
                      rityDescriptorSddl <String>] [-ShowSecurityDescriptorUI] 
                      [-Force] [-NoServiceRestart] [-Verbose] [-Debug] [-ErrorA
                      ction <ActionPreference>] [-WarningAction <ActionPreferen
                      ce>] [-ErrorVariable <String>] [-WarningVariable <String>
                      ] [-OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf] 
                      [-Confirm]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=144307
DLL                 : C:\Windows\assembly\GAC_MSIL\System.Management.Automation
                      \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d
                      ll


Verb                : Set
Noun                : Service
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.SetServiceCommand
Definition          : Set-Service [-Name] <String> [-ComputerName <String[]>] [
                      -DisplayName <String>] [-Description <String>] [-StartupT
                      ype <ServiceStartMode>] [-Status <String>] [-PassThru] [-
                      Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-War
                      ningAction <ActionPreference>] [-ErrorVariable <String>] 
                      [-WarningVariable <String>] [-OutVariable <String>] [-Out
                      Buffer <Int32>] [-WhatIf] [-Confirm]
                      Set-Service [-ComputerName <String[]>] [-DisplayName <Str
                      ing>] [-Description <String>] [-StartupType <ServiceStart
                      Mode>] [-Status <String>] [-InputObject <ServiceControlle
                      r>] [-PassThru] [-Verbose] [-Debug] [-ErrorAction <Action
                      Preference>] [-WarningAction <ActionPreference>] [-ErrorV
                      ariable <String>] [-WarningVariable <String>] [-OutVariab
                      le <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm]
                      
DefaultParameterSet : Name
OutputType          : {System.ServiceProcess.ServiceController}
Name                : Set-Service
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[ComputerName, System.Management.Automation.ParameterMet
                      adata], [Name, System.Management.Automation.ParameterMeta
                      data], [DisplayName, System.Management.Automation.Paramet
                      erMetadata], [Description, System.Management.Automation.P
                      arameterMetadata]...}
ParameterSets       : {[-Name] <String> [-ComputerName <String[]>] [-DisplayNam
                      e <String>] [-Description <String>] [-StartupType <Servic
                      eStartMode>] [-Status <String>] [-PassThru] [-Verbose] [-
                      Debug] [-ErrorAction <ActionPreference>] [-WarningAction 
                      <ActionPreference>] [-ErrorVariable <String>] [-WarningVa
                      riable <String>] [-OutVariable <String>] [-OutBuffer <Int
                      32>] [-WhatIf] [-Confirm], [-ComputerName <String[]>] [-D
                      isplayName <String>] [-Description <String>] [-StartupTyp
                      e <ServiceStartMode>] [-Status <String>] [-InputObject <S
                      erviceController>] [-PassThru] [-Verbose] [-Debug] [-Erro
                      rAction <ActionPreference>] [-WarningAction <ActionPrefer
                      ence>] [-ErrorVariable <String>] [-WarningVariable <Strin
                      g>] [-OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf
                      ] [-Confirm]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113399
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : Set
Noun                : StrictMode
HelpFile            : System.Management.Automation.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Core
ImplementingType    : Microsoft.PowerShell.Commands.SetStrictModeCommand
Definition          : Set-StrictMode -Version <Version> [-Verbose] [-Debug] [-E
                      rrorAction <ActionPreference>] [-WarningAction <ActionPre
                      ference>] [-ErrorVariable <String>] [-WarningVariable <St
                      ring>] [-OutVariable <String>] [-OutBuffer <Int32>]
                      Set-StrictMode -Off [-Verbose] [-Debug] [-ErrorAction <Ac
                      tionPreference>] [-WarningAction <ActionPreference>] [-Er
                      rorVariable <String>] [-WarningVariable <String>] [-OutVa
                      riable <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : Version
OutputType          : {}
Name                : Set-StrictMode
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Core
Module              : 
Parameters          : {[Off, System.Management.Automation.ParameterMetadata], [
                      Version, System.Management.Automation.ParameterMetadata],
                       [Verbose, System.Management.Automation.ParameterMetadata
                      ], [Debug, System.Management.Automation.ParameterMetadata
                      ]...}
ParameterSets       : {-Version <Version> [-Verbose] [-Debug] [-ErrorAction <Ac
                      tionPreference>] [-WarningAction <ActionPreference>] [-Er
                      rorVariable <String>] [-WarningVariable <String>] [-OutVa
                      riable <String>] [-OutBuffer <Int32>], -Off [-Verbose] [-
                      Debug] [-ErrorAction <ActionPreference>] [-WarningAction 
                      <ActionPreference>] [-ErrorVariable <String>] [-WarningVa
                      riable <String>] [-OutVariable <String>] [-OutBuffer <Int
                      32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113450
DLL                 : C:\Windows\assembly\GAC_MSIL\System.Management.Automation
                      \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d
                      ll


Verb                : Set
Noun                : TraceSource
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.SetTraceSourceCommand
Definition          : Set-TraceSource [-Name] <String[]> [[-Option] <PSTraceSou
                      rceOptions>] [-ListenerOption <TraceOptions>] [-FilePath 
                      <String>] [-Force] [-Debugger] [-PSHost] [-PassThru] [-Ve
                      rbose] [-Debug] [-ErrorAction <ActionPreference>] [-Warni
                      ngAction <ActionPreference>] [-ErrorVariable <String>] [-
                      WarningVariable <String>] [-OutVariable <String>] [-OutBu
                      ffer <Int32>]
                      Set-TraceSource [-Name] <String[]> [-RemoveListener <Stri
                      ng[]>] [-Verbose] [-Debug] [-ErrorAction <ActionPreferenc
                      e>] [-WarningAction <ActionPreference>] [-ErrorVariable <
                      String>] [-WarningVariable <String>] [-OutVariable <Strin
                      g>] [-OutBuffer <Int32>]
                      Set-TraceSource [-Name] <String[]> [-RemoveFileListener <
                      String[]>] [-Verbose] [-Debug] [-ErrorAction <ActionPrefe
                      rence>] [-WarningAction <ActionPreference>] [-ErrorVariab
                      le <String>] [-WarningVariable <String>] [-OutVariable <S
                      tring>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : optionsSet
OutputType          : {}
Name                : Set-TraceSource
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[Name, System.Management.Automation.ParameterMetadata], 
                      [Option, System.Management.Automation.ParameterMetadata],
                       [ListenerOption, System.Management.Automation.ParameterM
                      etadata], [FilePath, System.Management.Automation.Paramet
                      erMetadata]...}
ParameterSets       : {[-Name] <String[]> [[-Option] <PSTraceSourceOptions>] [-
                      ListenerOption <TraceOptions>] [-FilePath <String>] [-For
                      ce] [-Debugger] [-PSHost] [-PassThru] [-Verbose] [-Debug]
                       [-ErrorAction <ActionPreference>] [-WarningAction <Actio
                      nPreference>] [-ErrorVariable <String>] [-WarningVariable
                       <String>] [-OutVariable <String>] [-OutBuffer <Int32>], 
                      [-Name] <String[]> [-RemoveListener <String[]>] [-Verbose
                      ] [-Debug] [-ErrorAction <ActionPreference>] [-WarningAct
                      ion <ActionPreference>] [-ErrorVariable <String>] [-Warni
                      ngVariable <String>] [-OutVariable <String>] [-OutBuffer 
                      <Int32>], [-Name] <String[]> [-RemoveFileListener <String
                      []>] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>
                      ] [-WarningAction <ActionPreference>] [-ErrorVariable <St
                      ring>] [-WarningVariable <String>] [-OutVariable <String>
                      ] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113400
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : Set
Noun                : Variable
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.SetVariableCommand
Definition          : Set-Variable [-Name] <String[]> [[-Value] <Object>] [-Inc
                      lude <String[]>] [-Exclude <String[]>] [-Description <Str
                      ing>] [-Option <ScopedItemOptions>] [-Force] [-Visibility
                       <SessionStateEntryVisibility>] [-PassThru] [-Scope <Stri
                      ng>] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>
                      ] [-WarningAction <ActionPreference>] [-ErrorVariable <St
                      ring>] [-WarningVariable <String>] [-OutVariable <String>
                      ] [-OutBuffer <Int32>] [-WhatIf] [-Confirm]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Set-Variable
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[Name, System.Management.Automation.ParameterMetadata], 
                      [Value, System.Management.Automation.ParameterMetadata], 
                      [Include, System.Management.Automation.ParameterMetadata]
                      , [Exclude, System.Management.Automation.ParameterMetadat
                      a]...}
ParameterSets       : {[-Name] <String[]> [[-Value] <Object>] [-Include <String
                      []>] [-Exclude <String[]>] [-Description <String>] [-Opti
                      on <ScopedItemOptions>] [-Force] [-Visibility <SessionSta
                      teEntryVisibility>] [-PassThru] [-Scope <String>] [-Verbo
                      se] [-Debug] [-ErrorAction <ActionPreference>] [-WarningA
                      ction <ActionPreference>] [-ErrorVariable <String>] [-War
                      ningVariable <String>] [-OutVariable <String>] [-OutBuffe
                      r <Int32>] [-WhatIf] [-Confirm]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113401
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : Set
Noun                : WmiInstance
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.SetWmiInstance
Definition          : Set-WmiInstance [-Class] <String> [[-Arguments] <Hashtabl
                      e>] [-PutType <PutType>] [-AsJob] [-Impersonation <Impers
                      onationLevel>] [-Authentication <AuthenticationLevel>] [-
                      Locale <String>] [-EnableAllPrivileges] [-Authority <Stri
                      ng>] [-Credential <PSCredential>] [-ThrottleLimit <Int32>
                      ] [-ComputerName <String[]>] [-Namespace <String>] [-Verb
                      ose] [-Debug] [-ErrorAction <ActionPreference>] [-Warning
                      Action <ActionPreference>] [-ErrorVariable <String>] [-Wa
                      rningVariable <String>] [-OutVariable <String>] [-OutBuff
                      er <Int32>] [-WhatIf] [-Confirm]
                      Set-WmiInstance -InputObject <ManagementObject> [-Argumen
                      ts <Hashtable>] [-PutType <PutType>] [-AsJob] [-ThrottleL
                      imit <Int32>] [-Verbose] [-Debug] [-ErrorAction <ActionPr
                      eference>] [-WarningAction <ActionPreference>] [-ErrorVar
                      iable <String>] [-WarningVariable <String>] [-OutVariable
                       <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm]
                      Set-WmiInstance -Path <String> [-Arguments <Hashtable>] [
                      -PutType <PutType>] [-AsJob] [-Impersonation <Impersonati
                      onLevel>] [-Authentication <AuthenticationLevel>] [-Local
                      e <String>] [-EnableAllPrivileges] [-Authority <String>] 
                      [-Credential <PSCredential>] [-ThrottleLimit <Int32>] [-C
                      omputerName <String[]>] [-Namespace <String>] [-Verbose] 
                      [-Debug] [-ErrorAction <ActionPreference>] [-WarningActio
                      n <ActionPreference>] [-ErrorVariable <String>] [-Warning
                      Variable <String>] [-OutVariable <String>] [-OutBuffer <I
                      nt32>] [-WhatIf] [-Confirm]
                      Set-WmiInstance [-PutType <PutType>] [-AsJob] [-Impersona
                      tion <ImpersonationLevel>] [-Authentication <Authenticati
                      onLevel>] [-Locale <String>] [-EnableAllPrivileges] [-Aut
                      hority <String>] [-Credential <PSCredential>] [-ThrottleL
                      imit <Int32>] [-ComputerName <String[]>] [-Namespace <Str
                      ing>] [-Verbose] [-Debug] [-ErrorAction <ActionPreference
                      >] [-WarningAction <ActionPreference>] [-ErrorVariable <S
                      tring>] [-WarningVariable <String>] [-OutVariable <String
                      >] [-OutBuffer <Int32>] [-WhatIf] [-Confirm]
                      Set-WmiInstance [-PutType <PutType>] [-AsJob] [-Impersona
                      tion <ImpersonationLevel>] [-Authentication <Authenticati
                      onLevel>] [-Locale <String>] [-EnableAllPrivileges] [-Aut
                      hority <String>] [-Credential <PSCredential>] [-ThrottleL
                      imit <Int32>] [-ComputerName <String[]>] [-Namespace <Str
                      ing>] [-Verbose] [-Debug] [-ErrorAction <ActionPreference
                      >] [-WarningAction <ActionPreference>] [-ErrorVariable <S
                      tring>] [-WarningVariable <String>] [-OutVariable <String
                      >] [-OutBuffer <Int32>] [-WhatIf] [-Confirm]
                      Set-WmiInstance [-PutType <PutType>] [-AsJob] [-Impersona
                      tion <ImpersonationLevel>] [-Authentication <Authenticati
                      onLevel>] [-Locale <String>] [-EnableAllPrivileges] [-Aut
                      hority <String>] [-Credential <PSCredential>] [-ThrottleL
                      imit <Int32>] [-ComputerName <String[]>] [-Namespace <Str
                      ing>] [-Verbose] [-Debug] [-ErrorAction <ActionPreference
                      >] [-WarningAction <ActionPreference>] [-ErrorVariable <S
                      tring>] [-WarningVariable <String>] [-OutVariable <String
                      >] [-OutBuffer <Int32>] [-WhatIf] [-Confirm]
                      
DefaultParameterSet : class
OutputType          : {}
Name                : Set-WmiInstance
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[InputObject, System.Management.Automation.ParameterMeta
                      data], [Path, System.Management.Automation.ParameterMetad
                      ata], [Class, System.Management.Automation.ParameterMetad
                      ata], [Arguments, System.Management.Automation.ParameterM
                      etadata]...}
ParameterSets       : {[-Class] <String> [[-Arguments] <Hashtable>] [-PutType <
                      PutType>] [-AsJob] [-Impersonation <ImpersonationLevel>] 
                      [-Authentication <AuthenticationLevel>] [-Locale <String>
                      ] [-EnableAllPrivileges] [-Authority <String>] [-Credenti
                      al <PSCredential>] [-ThrottleLimit <Int32>] [-ComputerNam
                      e <String[]>] [-Namespace <String>] [-Verbose] [-Debug] [
                      -ErrorAction <ActionPreference>] [-WarningAction <ActionP
                      reference>] [-ErrorVariable <String>] [-WarningVariable <
                      String>] [-OutVariable <String>] [-OutBuffer <Int32>] [-W
                      hatIf] [-Confirm], -InputObject <ManagementObject> [-Argu
                      ments <Hashtable>] [-PutType <PutType>] [-AsJob] [-Thrott
                      leLimit <Int32>] [-Verbose] [-Debug] [-ErrorAction <Actio
                      nPreference>] [-WarningAction <ActionPreference>] [-Error
                      Variable <String>] [-WarningVariable <String>] [-OutVaria
                      ble <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm], 
                      -Path <String> [-Arguments <Hashtable>] [-PutType <PutTyp
                      e>] [-AsJob] [-Impersonation <ImpersonationLevel>] [-Auth
                      entication <AuthenticationLevel>] [-Locale <String>] [-En
                      ableAllPrivileges] [-Authority <String>] [-Credential <PS
                      Credential>] [-ThrottleLimit <Int32>] [-ComputerName <Str
                      ing[]>] [-Namespace <String>] [-Verbose] [-Debug] [-Error
                      Action <ActionPreference>] [-WarningAction <ActionPrefere
                      nce>] [-ErrorVariable <String>] [-WarningVariable <String
                      >] [-OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf]
                       [-Confirm], [-PutType <PutType>] [-AsJob] [-Impersonatio
                      n <ImpersonationLevel>] [-Authentication <AuthenticationL
                      evel>] [-Locale <String>] [-EnableAllPrivileges] [-Author
                      ity <String>] [-Credential <PSCredential>] [-ThrottleLimi
                      t <Int32>] [-ComputerName <String[]>] [-Namespace <String
                      >] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] 
                      [-WarningAction <ActionPreference>] [-ErrorVariable <Stri
                      ng>] [-WarningVariable <String>] [-OutVariable <String>] 
                      [-OutBuffer <Int32>] [-WhatIf] [-Confirm]...}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113402
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : Set
Noun                : WSManInstance
HelpFile            : Microsoft.WSMan.Management.dll-Help.xml
PSSnapIn            : Microsoft.WSMan.Management
ImplementingType    : Microsoft.WSMan.Management.SetWSManInstanceCommand
Definition          : Set-WSManInstance [-ResourceURI] <Uri> [[-SelectorSet] <H
                      ashtable>] [-ApplicationName <String>] [-ComputerName <St
                      ring>] [-Dialect <Uri>] [-FilePath <String>] [-Fragment <
                      String>] [-OptionSet <Hashtable>] [-Port <Int32>] [-Sessi
                      onOption <SessionOption>] [-UseSSL] [-ValueSet <Hashtable
                      >] [-Credential <PSCredential>] [-Authentication <Authent
                      icationMechanism>] [-CertificateThumbprint <String>] [-Ve
                      rbose] [-Debug] [-ErrorAction <ActionPreference>] [-Warni
                      ngAction <ActionPreference>] [-ErrorVariable <String>] [-
                      WarningVariable <String>] [-OutVariable <String>] [-OutBu
                      ffer <Int32>]
                      Set-WSManInstance [-ResourceURI] <Uri> [[-SelectorSet] <H
                      ashtable>] [-ConnectionURI <Uri>] [-Dialect <Uri>] [-File
                      Path <String>] [-Fragment <String>] [-OptionSet <Hashtabl
                      e>] [-SessionOption <SessionOption>] [-ValueSet <Hashtabl
                      e>] [-Credential <PSCredential>] [-Authentication <Authen
                      ticationMechanism>] [-CertificateThumbprint <String>] [-V
                      erbose] [-Debug] [-ErrorAction <ActionPreference>] [-Warn
                      ingAction <ActionPreference>] [-ErrorVariable <String>] [
                      -WarningVariable <String>] [-OutVariable <String>] [-OutB
                      uffer <Int32>]
                      
DefaultParameterSet : ComputerName
OutputType          : {}
Name                : Set-WSManInstance
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.WSMan.Management
Module              : 
Parameters          : {[ApplicationName, System.Management.Automation.Parameter
                      Metadata], [ComputerName, System.Management.Automation.Pa
                      rameterMetadata], [ConnectionURI, System.Management.Autom
                      ation.ParameterMetadata], [Dialect, System.Management.Aut
                      omation.ParameterMetadata]...}
ParameterSets       : {[-ResourceURI] <Uri> [[-SelectorSet] <Hashtable>] [-Appl
                      icationName <String>] [-ComputerName <String>] [-Dialect 
                      <Uri>] [-FilePath <String>] [-Fragment <String>] [-Option
                      Set <Hashtable>] [-Port <Int32>] [-SessionOption <Session
                      Option>] [-UseSSL] [-ValueSet <Hashtable>] [-Credential <
                      PSCredential>] [-Authentication <AuthenticationMechanism>
                      ] [-CertificateThumbprint <String>] [-Verbose] [-Debug] [
                      -ErrorAction <ActionPreference>] [-WarningAction <ActionP
                      reference>] [-ErrorVariable <String>] [-WarningVariable <
                      String>] [-OutVariable <String>] [-OutBuffer <Int32>], [-
                      ResourceURI] <Uri> [[-SelectorSet] <Hashtable>] [-Connect
                      ionURI <Uri>] [-Dialect <Uri>] [-FilePath <String>] [-Fra
                      gment <String>] [-OptionSet <Hashtable>] [-SessionOption 
                      <SessionOption>] [-ValueSet <Hashtable>] [-Credential <PS
                      Credential>] [-Authentication <AuthenticationMechanism>] 
                      [-CertificateThumbprint <String>] [-Verbose] [-Debug] [-E
                      rrorAction <ActionPreference>] [-WarningAction <ActionPre
                      ference>] [-ErrorVariable <String>] [-WarningVariable <St
                      ring>] [-OutVariable <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkId=141458
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.WSMan.Management\1
                      .0.0.0__31bf3856ad364e35\Microsoft.WSMan.Management.dll


Verb                : Set
Noun                : WSManQuickConfig
HelpFile            : Microsoft.WSMan.Management.dll-Help.xml
PSSnapIn            : Microsoft.WSMan.Management
ImplementingType    : Microsoft.WSMan.Management.SetWSManQuickConfigCommand
Definition          : Set-WSManQuickConfig [-UseSSL] [-Force] [-Verbose] [-Debu
                      g] [-ErrorAction <ActionPreference>] [-WarningAction <Act
                      ionPreference>] [-ErrorVariable <String>] [-WarningVariab
                      le <String>] [-OutVariable <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Set-WSManQuickConfig
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.WSMan.Management
Module              : 
Parameters          : {[UseSSL, System.Management.Automation.ParameterMetadata]
                      , [Force, System.Management.Automation.ParameterMetadata]
                      , [Verbose, System.Management.Automation.ParameterMetadat
                      a], [Debug, System.Management.Automation.ParameterMetadat
                      a]...}
ParameterSets       : {[-UseSSL] [-Force] [-Verbose] [-Debug] [-ErrorAction <Ac
                      tionPreference>] [-WarningAction <ActionPreference>] [-Er
                      rorVariable <String>] [-WarningVariable <String>] [-OutVa
                      riable <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=141463
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.WSMan.Management\1
                      .0.0.0__31bf3856ad364e35\Microsoft.WSMan.Management.dll


Verb                : Show
Noun                : EventLog
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.ShowEventLogCommand
Definition          : Show-EventLog [[-ComputerName] <String>] [-Verbose] [-Deb
                      ug] [-ErrorAction <ActionPreference>] [-WarningAction <Ac
                      tionPreference>] [-ErrorVariable <String>] [-WarningVaria
                      ble <String>] [-OutVariable <String>] [-OutBuffer <Int32>
                      ]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Show-EventLog
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[ComputerName, System.Management.Automation.ParameterMet
                      adata], [Verbose, System.Management.Automation.ParameterM
                      etadata], [Debug, System.Management.Automation.ParameterM
                      etadata], [ErrorAction, System.Management.Automation.Para
                      meterMetadata]...}
ParameterSets       : {[[-ComputerName] <String>] [-Verbose] [-Debug] [-ErrorAc
                      tion <ActionPreference>] [-WarningAction <ActionPreferenc
                      e>] [-ErrorVariable <String>] [-WarningVariable <String>]
                       [-OutVariable <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=135257
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll

Name              : si
CommandType       : Alias
Definition        : Set-Item
ReferencedCommand : Set-Item
ResolvedCommand   : Set-Item

Name              : sl
CommandType       : Alias
Definition        : Set-Location
ReferencedCommand : Set-Location
ResolvedCommand   : Set-Location

Name              : sleep
CommandType       : Alias
Definition        : Start-Sleep
ReferencedCommand : Start-Sleep
ResolvedCommand   : Start-Sleep

Name              : sort
CommandType       : Alias
Definition        : Sort-Object
ReferencedCommand : Sort-Object
ResolvedCommand   : Sort-Object


Verb                : Sort
Noun                : Object
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.SortObjectCommand
Definition          : Sort-Object [[-Property] <Object[]>] [-Descending] [-Uniq
                      ue] [-InputObject <PSObject>] [-Culture <String>] [-CaseS
                      ensitive] [-Verbose] [-Debug] [-ErrorAction <ActionPrefer
                      ence>] [-WarningAction <ActionPreference>] [-ErrorVariabl
                      e <String>] [-WarningVariable <String>] [-OutVariable <St
                      ring>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Sort-Object
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[Descending, System.Management.Automation.ParameterMetad
                      ata], [Unique, System.Management.Automation.ParameterMeta
                      data], [InputObject, System.Management.Automation.Paramet
                      erMetadata], [Property, System.Management.Automation.Para
                      meterMetadata]...}
ParameterSets       : {[[-Property] <Object[]>] [-Descending] [-Unique] [-Input
                      Object <PSObject>] [-Culture <String>] [-CaseSensitive] [
                      -Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-Wa
                      rningAction <ActionPreference>] [-ErrorVariable <String>]
                       [-WarningVariable <String>] [-OutVariable <String>] [-Ou
                      tBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113403
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll

Name              : sp
CommandType       : Alias
Definition        : Set-ItemProperty
ReferencedCommand : Set-ItemProperty
ResolvedCommand   : Set-ItemProperty

Name              : spjb
CommandType       : Alias
Definition        : Stop-Job
ReferencedCommand : Stop-Job
ResolvedCommand   : Stop-Job


Verb                : Split
Noun                : Path
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.SplitPathCommand
Definition          : Split-Path [-Path] <String[]> [-LiteralPath <String[]>] [
                      -Parent] [-Resolve] [-Credential <PSCredential>] [-Verbos
                      e] [-Debug] [-ErrorAction <ActionPreference>] [-WarningAc
                      tion <ActionPreference>] [-ErrorVariable <String>] [-Warn
                      ingVariable <String>] [-OutVariable <String>] [-OutBuffer
                       <Int32>] [-UseTransaction]
                      Split-Path [-Path] <String[]> [-Qualifier] [-LiteralPath 
                      <String[]>] [-Resolve] [-Credential <PSCredential>] [-Ver
                      bose] [-Debug] [-ErrorAction <ActionPreference>] [-Warnin
                      gAction <ActionPreference>] [-ErrorVariable <String>] [-W
                      arningVariable <String>] [-OutVariable <String>] [-OutBuf
                      fer <Int32>] [-UseTransaction]
                      Split-Path [-Path] <String[]> [-LiteralPath <String[]>] [
                      -NoQualifier] [-Resolve] [-Credential <PSCredential>] [-V
                      erbose] [-Debug] [-ErrorAction <ActionPreference>] [-Warn
                      ingAction <ActionPreference>] [-ErrorVariable <String>] [
                      -WarningVariable <String>] [-OutVariable <String>] [-OutB
                      uffer <Int32>] [-UseTransaction]
                      Split-Path [-Path] <String[]> [-LiteralPath <String[]>] [
                      -Leaf] [-Resolve] [-Credential <PSCredential>] [-Verbose]
                       [-Debug] [-ErrorAction <ActionPreference>] [-WarningActi
                      on <ActionPreference>] [-ErrorVariable <String>] [-Warnin
                      gVariable <String>] [-OutVariable <String>] [-OutBuffer <
                      Int32>] [-UseTransaction]
                      Split-Path [-Path] <String[]> [-LiteralPath <String[]>] [
                      -Resolve] [-IsAbsolute] [-Credential <PSCredential>] [-Ve
                      rbose] [-Debug] [-ErrorAction <ActionPreference>] [-Warni
                      ngAction <ActionPreference>] [-ErrorVariable <String>] [-
                      WarningVariable <String>] [-OutVariable <String>] [-OutBu
                      ffer <Int32>] [-UseTransaction]
                      
DefaultParameterSet : ParentSet
OutputType          : {System.String, System.Boolean}
Name                : Split-Path
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[Path, System.Management.Automation.ParameterMetadata], 
                      [LiteralPath, System.Management.Automation.ParameterMetad
                      ata], [Qualifier, System.Management.Automation.ParameterM
                      etadata], [NoQualifier, System.Management.Automation.Para
                      meterMetadata]...}
ParameterSets       : {[-Path] <String[]> [-LiteralPath <String[]>] [-Parent] [
                      -Resolve] [-Credential <PSCredential>] [-Verbose] [-Debug
                      ] [-ErrorAction <ActionPreference>] [-WarningAction <Acti
                      onPreference>] [-ErrorVariable <String>] [-WarningVariabl
                      e <String>] [-OutVariable <String>] [-OutBuffer <Int32>] 
                      [-UseTransaction], [-Path] <String[]> [-Qualifier] [-Lite
                      ralPath <String[]>] [-Resolve] [-Credential <PSCredential
                      >] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] 
                      [-WarningAction <ActionPreference>] [-ErrorVariable <Stri
                      ng>] [-WarningVariable <String>] [-OutVariable <String>] 
                      [-OutBuffer <Int32>] [-UseTransaction], [-Path] <String[]
                      > [-LiteralPath <String[]>] [-NoQualifier] [-Resolve] [-C
                      redential <PSCredential>] [-Verbose] [-Debug] [-ErrorActi
                      on <ActionPreference>] [-WarningAction <ActionPreference>
                      ] [-ErrorVariable <String>] [-WarningVariable <String>] [
                      -OutVariable <String>] [-OutBuffer <Int32>] [-UseTransact
                      ion], [-Path] <String[]> [-LiteralPath <String[]>] [-Leaf
                      ] [-Resolve] [-Credential <PSCredential>] [-Verbose] [-De
                      bug] [-ErrorAction <ActionPreference>] [-WarningAction <A
                      ctionPreference>] [-ErrorVariable <String>] [-WarningVari
                      able <String>] [-OutVariable <String>] [-OutBuffer <Int32
                      >] [-UseTransaction]...}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113404
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll

Name              : spps
CommandType       : Alias
Definition        : Stop-Process
ReferencedCommand : Stop-Process
ResolvedCommand   : Stop-Process

Name              : spsv
CommandType       : Alias
Definition        : Stop-Service
ReferencedCommand : Stop-Service
ResolvedCommand   : Stop-Service

Name              : start
CommandType       : Alias
Definition        : Start-Process
ReferencedCommand : Start-Process
ResolvedCommand   : Start-Process


Verb                : Start
Noun                : Job
HelpFile            : System.Management.Automation.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Core
ImplementingType    : Microsoft.PowerShell.Commands.StartJobCommand
Definition          : Start-Job [-ScriptBlock] <ScriptBlock> [[-InitializationS
                      cript] <ScriptBlock>] [-Name <String>] [-Credential <PSCr
                      edential>] [-Authentication <AuthenticationMechanism>] [-
                      RunAs32] [-InputObject <PSObject>] [-ArgumentList <Object
                      []>] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>
                      ] [-WarningAction <ActionPreference>] [-ErrorVariable <St
                      ring>] [-WarningVariable <String>] [-OutVariable <String>
                      ] [-OutBuffer <Int32>]
                      Start-Job [[-FilePath] <String>] [[-InitializationScript]
                       <ScriptBlock>] [-Name <String>] [-Credential <PSCredenti
                      al>] [-Authentication <AuthenticationMechanism>] [-RunAs3
                      2] [-InputObject <PSObject>] [-ArgumentList <Object[]>] [
                      -Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-Wa
                      rningAction <ActionPreference>] [-ErrorVariable <String>]
                       [-WarningVariable <String>] [-OutVariable <String>] [-Ou
                      tBuffer <Int32>]
                      
DefaultParameterSet : ComputerName
OutputType          : {}
Name                : Start-Job
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Core
Module              : 
Parameters          : {[Name, System.Management.Automation.ParameterMetadata], 
                      [ScriptBlock, System.Management.Automation.ParameterMetad
                      ata], [Credential, System.Management.Automation.Parameter
                      Metadata], [FilePath, System.Management.Automation.Parame
                      terMetadata]...}
ParameterSets       : {[-ScriptBlock] <ScriptBlock> [[-InitializationScript] <S
                      criptBlock>] [-Name <String>] [-Credential <PSCredential>
                      ] [-Authentication <AuthenticationMechanism>] [-RunAs32] 
                      [-InputObject <PSObject>] [-ArgumentList <Object[]>] [-Ve
                      rbose] [-Debug] [-ErrorAction <ActionPreference>] [-Warni
                      ngAction <ActionPreference>] [-ErrorVariable <String>] [-
                      WarningVariable <String>] [-OutVariable <String>] [-OutBu
                      ffer <Int32>], [[-FilePath] <String>] [[-InitializationSc
                      ript] <ScriptBlock>] [-Name <String>] [-Credential <PSCre
                      dential>] [-Authentication <AuthenticationMechanism>] [-R
                      unAs32] [-InputObject <PSObject>] [-ArgumentList <Object[
                      ]>] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>]
                       [-WarningAction <ActionPreference>] [-ErrorVariable <Str
                      ing>] [-WarningVariable <String>] [-OutVariable <String>]
                       [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113405
DLL                 : C:\Windows\assembly\GAC_MSIL\System.Management.Automation
                      \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d
                      ll


Verb                : Start
Noun                : Process
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.StartProcessCommand
Definition          : Start-Process [-FilePath] <String> [[-ArgumentList] <Stri
                      ng[]>] [-Credential <PSCredential>] [-WorkingDirectory <S
                      tring>] [-LoadUserProfile] [-NoNewWindow] [-PassThru] [-R
                      edirectStandardError <String>] [-RedirectStandardInput <S
                      tring>] [-RedirectStandardOutput <String>] [-Wait] [-UseN
                      ewEnvironment] [-Verbose] [-Debug] [-ErrorAction <ActionP
                      reference>] [-WarningAction <ActionPreference>] [-ErrorVa
                      riable <String>] [-WarningVariable <String>] [-OutVariabl
                      e <String>] [-OutBuffer <Int32>]
                      Start-Process [-FilePath] <String> [[-ArgumentList] <Stri
                      ng[]>] [-WorkingDirectory <String>] [-PassThru] [-Verb <S
                      tring>] [-Wait] [-WindowStyle <ProcessWindowStyle>] [-Ver
                      bose] [-Debug] [-ErrorAction <ActionPreference>] [-Warnin
                      gAction <ActionPreference>] [-ErrorVariable <String>] [-W
                      arningVariable <String>] [-OutVariable <String>] [-OutBuf
                      fer <Int32>]
                      
DefaultParameterSet : Default
OutputType          : {System.Diagnostics.Process}
Name                : Start-Process
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[FilePath, System.Management.Automation.ParameterMetadat
                      a], [ArgumentList, System.Management.Automation.Parameter
                      Metadata], [Credential, System.Management.Automation.Para
                      meterMetadata], [WorkingDirectory, System.Management.Auto
                      mation.ParameterMetadata]...}
ParameterSets       : {[-FilePath] <String> [[-ArgumentList] <String[]>] [-Cred
                      ential <PSCredential>] [-WorkingDirectory <String>] [-Loa
                      dUserProfile] [-NoNewWindow] [-PassThru] [-RedirectStanda
                      rdError <String>] [-RedirectStandardInput <String>] [-Red
                      irectStandardOutput <String>] [-Wait] [-UseNewEnvironment
                      ] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [
                      -WarningAction <ActionPreference>] [-ErrorVariable <Strin
                      g>] [-WarningVariable <String>] [-OutVariable <String>] [
                      -OutBuffer <Int32>], [-FilePath] <String> [[-ArgumentList
                      ] <String[]>] [-WorkingDirectory <String>] [-PassThru] [-
                      Verb <String>] [-Wait] [-WindowStyle <ProcessWindowStyle>
                      ] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [
                      -WarningAction <ActionPreference>] [-ErrorVariable <Strin
                      g>] [-WarningVariable <String>] [-OutVariable <String>] [
                      -OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=135261
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : Start
Noun                : Service
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.StartServiceCommand
Definition          : Start-Service [-Name] <String[]> [-PassThru] [-Include <S
                      tring[]>] [-Exclude <String[]>] [-Verbose] [-Debug] [-Err
                      orAction <ActionPreference>] [-WarningAction <ActionPrefe
                      rence>] [-ErrorVariable <String>] [-WarningVariable <Stri
                      ng>] [-OutVariable <String>] [-OutBuffer <Int32>] [-WhatI
                      f] [-Confirm]
                      Start-Service [-PassThru] -DisplayName <String[]> [-Inclu
                      de <String[]>] [-Exclude <String[]>] [-Verbose] [-Debug] 
                      [-ErrorAction <ActionPreference>] [-WarningAction <Action
                      Preference>] [-ErrorVariable <String>] [-WarningVariable 
                      <String>] [-OutVariable <String>] [-OutBuffer <Int32>] [-
                      WhatIf] [-Confirm]
                      Start-Service [-PassThru] [-Include <String[]>] [-Exclude
                       <String[]>] [-InputObject <ServiceController[]>] [-Verbo
                      se] [-Debug] [-ErrorAction <ActionPreference>] [-WarningA
                      ction <ActionPreference>] [-ErrorVariable <String>] [-War
                      ningVariable <String>] [-OutVariable <String>] [-OutBuffe
                      r <Int32>] [-WhatIf] [-Confirm]
                      
DefaultParameterSet : Default
OutputType          : {System.ServiceProcess.ServiceController}
Name                : Start-Service
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[Name, System.Management.Automation.ParameterMetadata], 
                      [PassThru, System.Management.Automation.ParameterMetadata
                      ], [DisplayName, System.Management.Automation.ParameterMe
                      tadata], [Include, System.Management.Automation.Parameter
                      Metadata]...}
ParameterSets       : {[-Name] <String[]> [-PassThru] [-Include <String[]>] [-E
                      xclude <String[]>] [-Verbose] [-Debug] [-ErrorAction <Act
                      ionPreference>] [-WarningAction <ActionPreference>] [-Err
                      orVariable <String>] [-WarningVariable <String>] [-OutVar
                      iable <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm]
                      , [-PassThru] -DisplayName <String[]> [-Include <String[]
                      >] [-Exclude <String[]>] [-Verbose] [-Debug] [-ErrorActio
                      n <ActionPreference>] [-WarningAction <ActionPreference>]
                       [-ErrorVariable <String>] [-WarningVariable <String>] [-
                      OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf] [-Co
                      nfirm], [-PassThru] [-Include <String[]>] [-Exclude <Stri
                      ng[]>] [-InputObject <ServiceController[]>] [-Verbose] [-
                      Debug] [-ErrorAction <ActionPreference>] [-WarningAction 
                      <ActionPreference>] [-ErrorVariable <String>] [-WarningVa
                      riable <String>] [-OutVariable <String>] [-OutBuffer <Int
                      32>] [-WhatIf] [-Confirm]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113406
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : Start
Noun                : Sleep
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.StartSleepCommand
Definition          : Start-Sleep [-Seconds] <Int32> [-Verbose] [-Debug] [-Erro
                      rAction <ActionPreference>] [-WarningAction <ActionPrefer
                      ence>] [-ErrorVariable <String>] [-WarningVariable <Strin
                      g>] [-OutVariable <String>] [-OutBuffer <Int32>]
                      Start-Sleep -Milliseconds <Int32> [-Verbose] [-Debug] [-E
                      rrorAction <ActionPreference>] [-WarningAction <ActionPre
                      ference>] [-ErrorVariable <String>] [-WarningVariable <St
                      ring>] [-OutVariable <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : Seconds
OutputType          : {}
Name                : Start-Sleep
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[Seconds, System.Management.Automation.ParameterMetadata
                      ], [Milliseconds, System.Management.Automation.ParameterM
                      etadata], [Verbose, System.Management.Automation.Paramete
                      rMetadata], [Debug, System.Management.Automation.Paramete
                      rMetadata]...}
ParameterSets       : {[-Seconds] <Int32> [-Verbose] [-Debug] [-ErrorAction <Ac
                      tionPreference>] [-WarningAction <ActionPreference>] [-Er
                      rorVariable <String>] [-WarningVariable <String>] [-OutVa
                      riable <String>] [-OutBuffer <Int32>], -Milliseconds <Int
                      32> [-Verbose] [-Debug] [-ErrorAction <ActionPreference>]
                       [-WarningAction <ActionPreference>] [-ErrorVariable <Str
                      ing>] [-WarningVariable <String>] [-OutVariable <String>]
                       [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113407
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : Start
Noun                : Transaction
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.StartTransactionCommand
Definition          : Start-Transaction [-Timeout <Int32>] [-Independent] [-Rol
                      lbackPreference <RollbackSeverity>] [-Verbose] [-Debug] [
                      -ErrorAction <ActionPreference>] [-WarningAction <ActionP
                      reference>] [-ErrorVariable <String>] [-WarningVariable <
                      String>] [-OutVariable <String>] [-OutBuffer <Int32>] [-W
                      hatIf] [-Confirm]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Start-Transaction
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[Timeout, System.Management.Automation.ParameterMetadata
                      ], [Independent, System.Management.Automation.ParameterMe
                      tadata], [RollbackPreference, System.Management.Automatio
                      n.ParameterMetadata], [Verbose, System.Management.Automat
                      ion.ParameterMetadata]...}
ParameterSets       : {[-Timeout <Int32>] [-Independent] [-RollbackPreference <
                      RollbackSeverity>] [-Verbose] [-Debug] [-ErrorAction <Act
                      ionPreference>] [-WarningAction <ActionPreference>] [-Err
                      orVariable <String>] [-WarningVariable <String>] [-OutVar
                      iable <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm]
                      }
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=135262
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : Start
Noun                : Transcript
HelpFile            : Microsoft.PowerShell.ConsoleHost.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Host
ImplementingType    : Microsoft.PowerShell.Commands.StartTranscriptCommand
Definition          : Start-Transcript [[-Path] <String>] [-Append] [-Force] [-
                      NoClobber] [-Verbose] [-Debug] [-ErrorAction <ActionPrefe
                      rence>] [-WarningAction <ActionPreference>] [-ErrorVariab
                      le <String>] [-WarningVariable <String>] [-OutVariable <S
                      tring>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Start-Transcript
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Host
Module              : 
Parameters          : {[Path, System.Management.Automation.ParameterMetadata], 
                      [Append, System.Management.Automation.ParameterMetadata],
                       [Force, System.Management.Automation.ParameterMetadata],
                       [NoClobber, System.Management.Automation.ParameterMetada
                      ta]...}
ParameterSets       : {[[-Path] <String>] [-Append] [-Force] [-NoClobber] [-Ver
                      bose] [-Debug] [-ErrorAction <ActionPreference>] [-Warnin
                      gAction <ActionPreference>] [-ErrorVariable <String>] [-W
                      arningVariable <String>] [-OutVariable <String>] [-OutBuf
                      fer <Int32>] [-WhatIf] [-Confirm]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113408
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Console
                      Host\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.Conso
                      leHost.dll


Verb                : Stop
Noun                : Computer
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.StopComputerCommand
Definition          : Stop-Computer [[-ComputerName] <String[]>] [[-Credential]
                       <PSCredential>] [-AsJob] [-Authentication <Authenticatio
                      nLevel>] [-Impersonation <ImpersonationLevel>] [-Throttle
                      Limit <Int32>] [-Force] [-Verbose] [-Debug] [-ErrorAction
                       <ActionPreference>] [-WarningAction <ActionPreference>] 
                      [-ErrorVariable <String>] [-WarningVariable <String>] [-O
                      utVariable <String>] [-OutBuffer <Int32>] [-WhatIf] [-Con
                      firm]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Stop-Computer
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[AsJob, System.Management.Automation.ParameterMetadata],
                       [Authentication, System.Management.Automation.ParameterM
                      etadata], [ComputerName, System.Management.Automation.Par
                      ameterMetadata], [Credential, System.Management.Automatio
                      n.ParameterMetadata]...}
ParameterSets       : {[[-ComputerName] <String[]>] [[-Credential] <PSCredentia
                      l>] [-AsJob] [-Authentication <AuthenticationLevel>] [-Im
                      personation <ImpersonationLevel>] [-ThrottleLimit <Int32>
                      ] [-Force] [-Verbose] [-Debug] [-ErrorAction <ActionPrefe
                      rence>] [-WarningAction <ActionPreference>] [-ErrorVariab
                      le <String>] [-WarningVariable <String>] [-OutVariable <S
                      tring>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=135263
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : Stop
Noun                : Job
HelpFile            : System.Management.Automation.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Core
ImplementingType    : Microsoft.PowerShell.Commands.StopJobCommand
Definition          : Stop-Job [-Id] <Int32[]> [-PassThru] [-Verbose] [-Debug] 
                      [-ErrorAction <ActionPreference>] [-WarningAction <Action
                      Preference>] [-ErrorVariable <String>] [-WarningVariable 
                      <String>] [-OutVariable <String>] [-OutBuffer <Int32>] [-
                      WhatIf] [-Confirm]
                      Stop-Job [-Job] <Job[]> [-PassThru] [-Verbose] [-Debug] [
                      -ErrorAction <ActionPreference>] [-WarningAction <ActionP
                      reference>] [-ErrorVariable <String>] [-WarningVariable <
                      String>] [-OutVariable <String>] [-OutBuffer <Int32>] [-W
                      hatIf] [-Confirm]
                      Stop-Job [[-Name] <String[]>] [-PassThru] [-Verbose] [-De
                      bug] [-ErrorAction <ActionPreference>] [-WarningAction <A
                      ctionPreference>] [-ErrorVariable <String>] [-WarningVari
                      able <String>] [-OutVariable <String>] [-OutBuffer <Int32
                      >] [-WhatIf] [-Confirm]
                      Stop-Job [[-InstanceId] <Guid[]>] [-PassThru] [-Verbose] 
                      [-Debug] [-ErrorAction <ActionPreference>] [-WarningActio
                      n <ActionPreference>] [-ErrorVariable <String>] [-Warning
                      Variable <String>] [-OutVariable <String>] [-OutBuffer <I
                      nt32>] [-WhatIf] [-Confirm]
                      Stop-Job [-PassThru] [-State <JobState>] [-Verbose] [-Deb
                      ug] [-ErrorAction <ActionPreference>] [-WarningAction <Ac
                      tionPreference>] [-ErrorVariable <String>] [-WarningVaria
                      ble <String>] [-OutVariable <String>] [-OutBuffer <Int32>
                      ] [-WhatIf] [-Confirm]
                      
DefaultParameterSet : SessionIdParameterSet
OutputType          : {}
Name                : Stop-Job
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Core
Module              : 
Parameters          : {[Job, System.Management.Automation.ParameterMetadata], [
                      PassThru, System.Management.Automation.ParameterMetadata]
                      , [Name, System.Management.Automation.ParameterMetadata],
                       [InstanceId, System.Management.Automation.ParameterMetad
                      ata]...}
ParameterSets       : {[-Id] <Int32[]> [-PassThru] [-Verbose] [-Debug] [-ErrorA
                      ction <ActionPreference>] [-WarningAction <ActionPreferen
                      ce>] [-ErrorVariable <String>] [-WarningVariable <String>
                      ] [-OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf] 
                      [-Confirm], [-Job] <Job[]> [-PassThru] [-Verbose] [-Debug
                      ] [-ErrorAction <ActionPreference>] [-WarningAction <Acti
                      onPreference>] [-ErrorVariable <String>] [-WarningVariabl
                      e <String>] [-OutVariable <String>] [-OutBuffer <Int32>] 
                      [-WhatIf] [-Confirm], [[-Name] <String[]>] [-PassThru] [-
                      Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-War
                      ningAction <ActionPreference>] [-ErrorVariable <String>] 
                      [-WarningVariable <String>] [-OutVariable <String>] [-Out
                      Buffer <Int32>] [-WhatIf] [-Confirm], [[-InstanceId] <Gui
                      d[]>] [-PassThru] [-Verbose] [-Debug] [-ErrorAction <Acti
                      onPreference>] [-WarningAction <ActionPreference>] [-Erro
                      rVariable <String>] [-WarningVariable <String>] [-OutVari
                      able <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm].
                      ..}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113413
DLL                 : C:\Windows\assembly\GAC_MSIL\System.Management.Automation
                      \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d
                      ll


Verb                : Stop
Noun                : Process
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.StopProcessCommand
Definition          : Stop-Process [-Id] <Int32[]> [-PassThru] [-Force] [-Verbo
                      se] [-Debug] [-ErrorAction <ActionPreference>] [-WarningA
                      ction <ActionPreference>] [-ErrorVariable <String>] [-War
                      ningVariable <String>] [-OutVariable <String>] [-OutBuffe
                      r <Int32>] [-WhatIf] [-Confirm]
                      Stop-Process -Name <String[]> [-PassThru] [-Force] [-Verb
                      ose] [-Debug] [-ErrorAction <ActionPreference>] [-Warning
                      Action <ActionPreference>] [-ErrorVariable <String>] [-Wa
                      rningVariable <String>] [-OutVariable <String>] [-OutBuff
                      er <Int32>] [-WhatIf] [-Confirm]
                      Stop-Process [-PassThru] [-Force] -InputObject <Process[]
                      > [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [
                      -WarningAction <ActionPreference>] [-ErrorVariable <Strin
                      g>] [-WarningVariable <String>] [-OutVariable <String>] [
                      -OutBuffer <Int32>] [-WhatIf] [-Confirm]
                      
DefaultParameterSet : Id
OutputType          : {System.Diagnostics.Process}
Name                : Stop-Process
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[Name, System.Management.Automation.ParameterMetadata], 
                      [Id, System.Management.Automation.ParameterMetadata], [Pa
                      ssThru, System.Management.Automation.ParameterMetadata], 
                      [Force, System.Management.Automation.ParameterMetadata]..
                      .}
ParameterSets       : {[-Id] <Int32[]> [-PassThru] [-Force] [-Verbose] [-Debug]
                       [-ErrorAction <ActionPreference>] [-WarningAction <Actio
                      nPreference>] [-ErrorVariable <String>] [-WarningVariable
                       <String>] [-OutVariable <String>] [-OutBuffer <Int32>] [
                      -WhatIf] [-Confirm], -Name <String[]> [-PassThru] [-Force
                      ] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [
                      -WarningAction <ActionPreference>] [-ErrorVariable <Strin
                      g>] [-WarningVariable <String>] [-OutVariable <String>] [
                      -OutBuffer <Int32>] [-WhatIf] [-Confirm], [-PassThru] [-F
                      orce] -InputObject <Process[]> [-Verbose] [-Debug] [-Erro
                      rAction <ActionPreference>] [-WarningAction <ActionPrefer
                      ence>] [-ErrorVariable <String>] [-WarningVariable <Strin
                      g>] [-OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf
                      ] [-Confirm]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113412
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : Stop
Noun                : Service
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.StopServiceCommand
Definition          : Stop-Service [-Name] <String[]> [-Force] [-PassThru] [-In
                      clude <String[]>] [-Exclude <String[]>] [-Verbose] [-Debu
                      g] [-ErrorAction <ActionPreference>] [-WarningAction <Act
                      ionPreference>] [-ErrorVariable <String>] [-WarningVariab
                      le <String>] [-OutVariable <String>] [-OutBuffer <Int32>]
                       [-WhatIf] [-Confirm]
                      Stop-Service [-Force] [-PassThru] -DisplayName <String[]>
                       [-Include <String[]>] [-Exclude <String[]>] [-Verbose] [
                      -Debug] [-ErrorAction <ActionPreference>] [-WarningAction
                       <ActionPreference>] [-ErrorVariable <String>] [-WarningV
                      ariable <String>] [-OutVariable <String>] [-OutBuffer <In
                      t32>] [-WhatIf] [-Confirm]
                      Stop-Service [-Force] [-PassThru] [-Include <String[]>] [
                      -Exclude <String[]>] [-InputObject <ServiceController[]>]
                       [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-
                      WarningAction <ActionPreference>] [-ErrorVariable <String
                      >] [-WarningVariable <String>] [-OutVariable <String>] [-
                      OutBuffer <Int32>] [-WhatIf] [-Confirm]
                      
DefaultParameterSet : Default
OutputType          : {System.ServiceProcess.ServiceController}
Name                : Stop-Service
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[Force, System.Management.Automation.ParameterMetadata],
                       [Name, System.Management.Automation.ParameterMetadata], 
                      [PassThru, System.Management.Automation.ParameterMetadata
                      ], [DisplayName, System.Management.Automation.ParameterMe
                      tadata]...}
ParameterSets       : {[-Name] <String[]> [-Force] [-PassThru] [-Include <Strin
                      g[]>] [-Exclude <String[]>] [-Verbose] [-Debug] [-ErrorAc
                      tion <ActionPreference>] [-WarningAction <ActionPreferenc
                      e>] [-ErrorVariable <String>] [-WarningVariable <String>]
                       [-OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf] [
                      -Confirm], [-Force] [-PassThru] -DisplayName <String[]> [
                      -Include <String[]>] [-Exclude <String[]>] [-Verbose] [-D
                      ebug] [-ErrorAction <ActionPreference>] [-WarningAction <
                      ActionPreference>] [-ErrorVariable <String>] [-WarningVar
                      iable <String>] [-OutVariable <String>] [-OutBuffer <Int3
                      2>] [-WhatIf] [-Confirm], [-Force] [-PassThru] [-Include 
                      <String[]>] [-Exclude <String[]>] [-InputObject <ServiceC
                      ontroller[]>] [-Verbose] [-Debug] [-ErrorAction <ActionPr
                      eference>] [-WarningAction <ActionPreference>] [-ErrorVar
                      iable <String>] [-WarningVariable <String>] [-OutVariable
                       <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113414
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : Stop
Noun                : Transcript
HelpFile            : Microsoft.PowerShell.ConsoleHost.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Host
ImplementingType    : Microsoft.PowerShell.Commands.StopTranscriptCommand
Definition          : Stop-Transcript [-Verbose] [-Debug] [-ErrorAction <Action
                      Preference>] [-WarningAction <ActionPreference>] [-ErrorV
                      ariable <String>] [-WarningVariable <String>] [-OutVariab
                      le <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Stop-Transcript
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Host
Module              : 
Parameters          : {[Verbose, System.Management.Automation.ParameterMetadata
                      ], [Debug, System.Management.Automation.ParameterMetadata
                      ], [ErrorAction, System.Management.Automation.ParameterMe
                      tadata], [WarningAction, System.Management.Automation.Par
                      ameterMetadata]...}
ParameterSets       : {[-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-
                      WarningAction <ActionPreference>] [-ErrorVariable <String
                      >] [-WarningVariable <String>] [-OutVariable <String>] [-
                      OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113415
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Console
                      Host\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.Conso
                      leHost.dll


Verb                : Suspend
Noun                : Service
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.SuspendServiceCommand
Definition          : Suspend-Service [-Name] <String[]> [-PassThru] [-Include 
                      <String[]>] [-Exclude <String[]>] [-Verbose] [-Debug] [-E
                      rrorAction <ActionPreference>] [-WarningAction <ActionPre
                      ference>] [-ErrorVariable <String>] [-WarningVariable <St
                      ring>] [-OutVariable <String>] [-OutBuffer <Int32>] [-Wha
                      tIf] [-Confirm]
                      Suspend-Service [-PassThru] -DisplayName <String[]> [-Inc
                      lude <String[]>] [-Exclude <String[]>] [-Verbose] [-Debug
                      ] [-ErrorAction <ActionPreference>] [-WarningAction <Acti
                      onPreference>] [-ErrorVariable <String>] [-WarningVariabl
                      e <String>] [-OutVariable <String>] [-OutBuffer <Int32>] 
                      [-WhatIf] [-Confirm]
                      Suspend-Service [-PassThru] [-Include <String[]>] [-Exclu
                      de <String[]>] [-InputObject <ServiceController[]>] [-Ver
                      bose] [-Debug] [-ErrorAction <ActionPreference>] [-Warnin
                      gAction <ActionPreference>] [-ErrorVariable <String>] [-W
                      arningVariable <String>] [-OutVariable <String>] [-OutBuf
                      fer <Int32>] [-WhatIf] [-Confirm]
                      
DefaultParameterSet : Default
OutputType          : {System.ServiceProcess.ServiceController}
Name                : Suspend-Service
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[Name, System.Management.Automation.ParameterMetadata], 
                      [PassThru, System.Management.Automation.ParameterMetadata
                      ], [DisplayName, System.Management.Automation.ParameterMe
                      tadata], [Include, System.Management.Automation.Parameter
                      Metadata]...}
ParameterSets       : {[-Name] <String[]> [-PassThru] [-Include <String[]>] [-E
                      xclude <String[]>] [-Verbose] [-Debug] [-ErrorAction <Act
                      ionPreference>] [-WarningAction <ActionPreference>] [-Err
                      orVariable <String>] [-WarningVariable <String>] [-OutVar
                      iable <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm]
                      , [-PassThru] -DisplayName <String[]> [-Include <String[]
                      >] [-Exclude <String[]>] [-Verbose] [-Debug] [-ErrorActio
                      n <ActionPreference>] [-WarningAction <ActionPreference>]
                       [-ErrorVariable <String>] [-WarningVariable <String>] [-
                      OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf] [-Co
                      nfirm], [-PassThru] [-Include <String[]>] [-Exclude <Stri
                      ng[]>] [-InputObject <ServiceController[]>] [-Verbose] [-
                      Debug] [-ErrorAction <ActionPreference>] [-WarningAction 
                      <ActionPreference>] [-ErrorVariable <String>] [-WarningVa
                      riable <String>] [-OutVariable <String>] [-OutBuffer <Int
                      32>] [-WhatIf] [-Confirm]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113416
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll

Name              : sv
CommandType       : Alias
Definition        : Set-Variable
ReferencedCommand : Set-Variable
ResolvedCommand   : Set-Variable

Name              : swmi
CommandType       : Alias
Definition        : Set-WMIInstance
ReferencedCommand : Set-WmiInstance
ResolvedCommand   : Set-WmiInstance


ScriptBlock         : Set-Location T:
CmdletBinding       : False
DefaultParameterSet : 
Definition          : Set-Location T:
Options             : None
Description         : 
OutputType          : {}
Name                : T:
CommandType         : Function
Visibility          : Public
ModuleName          : 
Module              : 
Parameters          : {}
ParameterSets       : {}
HelpUri             : 


ScriptBlock         : 
                                  param($line, $lastWord)
                      & {
                                      function Write-Members ($sep='.')
                                      {
                                          Invoke-Expression ('$_val=' + $_expre
                      ssion)
                      
                                          $_method = [Management.Automation.PSM
                      emberTypes] `
                                              'Method,CodeMethod,ScriptMethod,P
                      arameterizedProperty'
                                          if ($sep -eq '.')
                                          {
                                              $params = @{view = 'extended','ad
                      apted','base'}
                                          }
                                          else
                                          {
                                              $params = @{static=$true}
                                          }
                              
                                          foreach ($_m in ,$_val | Get-Member @
                      params $_pat |
                                              Sort-Object membertype,name)
                                          {
                                              if ($_m.MemberType -band $_method
                      )
                                              {
                                                  # Return a method...
                                                  $_base + $_expression + $sep 
                      + $_m.name + '('
                                              }
                                              else {
                                                  # Return a property...
                                                  $_base + $_expression + $sep 
                      + $_m.name
                                              }
                                          }
                                      }
                      
                                      # If a command name contains any of these
                       chars, it needs to be quoted
                                      $_charsRequiringQuotes = ('`&@''#{}()$,;|
                      <> ' + "`t").ToCharArray()
                      
                                      # If a variable name contains any of thes
                      e characters it needs to be in braces
                                      $_varsRequiringQuotes = ('-`&@''#{}()$,;|
                      <> .\/' + "`t").ToCharArray()
                      
                                      switch -regex ($lastWord)
                                      {
                                          # Handle property and method expansio
                      n rooted at variables...
                                          # e.g. $a.b.<tab>
                                          '(^.*)(\$(\w|:|\.)+)\.([*\w]*)$' {
                                              $_base = $matches[1]
                                              $_expression = $matches[2]
                                              $_pat = $matches[4] + '*'
                                              Write-Members
                                              break;
                                          }
                      
                                          # Handle simple property and method e
                      xpansion on static members...
                                          # e.g. [datetime]::n<tab>
                                          '(^.*)(\[(\w|\.|\+)+\])(\:\:|\.){0,1}
                      ([*\w]*)$' {
                                              $_base = $matches[1]
                                              $_expression = $matches[2]
                                              $_pat = $matches[5] + '*'
                                              Write-Members $(if (! $matches[4]
                      ) {'::'} else {$matches[4]})
                                              break;
                                          }
                      
                                          # Handle complex property and method 
                      expansion on static members
                                          # where there are intermediate proper
                      ties...
                                          # e.g. [datetime]::now.d<tab>
                                          '(^.*)(\[(\w|\.|\+)+\](\:\:|\.)(\w+\.
                      )+)([*\w]*)$' {
                                              $_base = $matches[1]  # everythin
                      g before the expression
                                              $_expression = $matches[2].TrimEn
                      d('.') # expression less trailing '.'
                                              $_pat = $matches[6] + '*'  # the 
                      member to look for...
                                              Write-Members
                                              break;
                                          }
                      
                                          # Handle variable name expansion...
                                          '(^.*\$)([*\w:]+)$' {
                                              $_prefix = $matches[1]
                                              $_varName = $matches[2]
                                              $_colonPos = $_varname.IndexOf(':
                      ')
                                              if ($_colonPos -eq -1)
                                              {
                                                  $_varName = 'variable:' + $_v
                      arName
                                                  $_provider = ''
                                              }
                                              else
                                              {
                                                  $_provider = $_varname.Substr
                      ing(0, $_colonPos+1)
                                              }
                      
                                              foreach ($_v in Get-ChildItem ($_
                      varName + '*') | sort Name)
                                              { 
                                                  $_nameFound = $_v.name
                                                  $(if ($_nameFound.IndexOfAny(
                      $_varsRequiringQuotes) -eq -1) {'{0}{1}{2}'}
                                                  else {'{0}{{{1}{2}}}'}) -f $_
                      prefix, $_provider, $_nameFound
                                              }
                                              break;
                                          }
                      
                                          # Do completion on parameters...
                                          '^-([*\w0-9]*)' {
                                              $_pat = $matches[1] + '*'
                      
                                              # extract the command name from t
                      he string
                                              # first split the string into sta
                      tements and pipeline elements
                                              # This doesn't handle strings how
                      ever.
                                              $_command = [regex]::Split($line,
                       '[|;=]')[-1]
                      
                                              #  Extract the trailing unclosed 
                      block e.g. ls | foreach { cp
                                              if ($_command -match '\{([^\{\}]*
                      )$')
                                              {
                                                  $_command = $matches[1]
                                              }
                      
                                              # Extract the longest unclosed pa
                      renthetical expression...
                                              if ($_command -match '\(([^()]*)$
                      ')
                                              {
                                                  $_command = $matches[1]
                                              }
                      
                                              # take the first space separated 
                      token of the remaining string
                                              # as the command to look up. Trim
                       any leading or trailing spaces
                                              # so you don't get leading empty 
                      elements.
                                              $_command = $_command.TrimEnd('-'
                      )
                                              $_command,$_arguments = $_command
                      .Trim().Split()
                      
                                              # now get the info object for it,
                       -ArgumentList will force aliases to be resolved
                                              # it also retrieves dynamic param
                      eters
                                              try
                                              {
                                                  $_command = @(Get-Command -ty
                      pe 'Alias,Cmdlet,Function,Filter,ExternalScript' `
                                                      -Name $_command -Argument
                      List $_arguments)[0]
                                              }
                                              catch
                                              {
                                                  # see if the command is an al
                      ias. If so, resolve it to the real command
                                                  if(Test-Path alias:\$_command
                      )
                                                  {
                                                      $_command = @(Get-Command
                       -Type Alias $_command)[0].Definition
                                                  }
                      
                                                  # If we were unsuccessful ret
                      rieving the command, try again without the parameters
                                                  $_command = @(Get-Command -ty
                      pe 'Cmdlet,Function,Filter,ExternalScript' `
                                                      -Name $_command)[0]
                                              }
                      
                                              # remove errors generated by the 
                      command not being found, and break
                                              if(-not $_command) { $error.Remov
                      eAt(0); break; }
                      
                                              # expand the parameter sets and e
                      mit the matching elements
                                              # need to use psbase.Keys in case
                       'keys' is one of the parameters
                                              # to the cmdlet
                                              foreach ($_n in $_command.Paramet
                      ers.psbase.Keys)
                                              {
                                                  if ($_n -like $_pat) { '-' + 
                      $_n }
                                              }
                                              break;
                                          }
                      
                                          # Tab complete against history either
                       #<pattern> or #<id>
                                          '^#(\w*)' {
                                              $_pattern = $matches[1]
                                              if ($_pattern -match '^[0-9]+$')
                                              {
                                                  Get-History -ea SilentlyConti
                      nue -Id $_pattern | Foreach { $_.CommandLine } 
                                              }
                                              else
                                              {
                                                  $_pattern = '*' + $_pattern +
                       '*'
                                                  Get-History -Count 32767 | So
                      rt-Object -Descending Id| Foreach { $_.CommandLine } | wh
                      ere { $_ -like $_pattern }
                                              }
                                              break;
                                          }
                      
                                          # try to find a matching command...
                                          default {
                                              # parse the script...
                                              $_tokens = [System.Management.Aut
                      omation.PSParser]::Tokenize($line,
                                                  [ref] $null)
                      
                                              if ($_tokens)
                                              {
                                                  $_lastToken = $_tokens[$_toke
                      ns.count - 1]
                                                  if ($_lastToken.Type -eq 'Com
                      mand')
                                                  {
                                                      $_cmd = $_lastToken.Conte
                      nt
                      
                                                      # don't look for paths...
                                                      if ($_cmd.IndexOfAny('/\:
                      ') -eq -1)
                                                      {
                                                          # handle parsing erro
                      rs - the last token string should be the last
                                                          # string in the line.
                      ..
                                                          if ($lastword.Length 
                      -ge $_cmd.Length -and 
                                                              $lastword.substri
                      ng($lastword.length-$_cmd.length) -eq $_cmd)
                                                          {
                                                              $_pat = $_cmd + '
                      *'
                                                              $_base = $lastwor
                      d.substring(0, $lastword.length-$_cmd.length)
                      
                                                              # get files in cu
                      rrent directory first, then look for commands...
                                                              $( try {Resolve-P
                      ath -ea SilentlyContinue -Relative $_pat } catch {} ;
                                                                 try { $Executi
                      onContext.InvokeCommand.GetCommandName($_pat, $true, $fal
                      se) |
                                                                     Sort-Objec
                      t -Unique } catch {} ) |
                                                                         # If t
                      he command contains non-word characters (space, ) ] ; ) e
                      tc.)
                                                                         # then
                       it needs to be quoted and prefixed with &
                                                                         ForEac
                      h-Object {
                                                                              i
                      f ($_.IndexOfAny($_charsRequiringQuotes) -eq -1) { $_ }
                                                                              e
                      lseif ($_.IndexOf('''') -ge 0) {'& ''{0}''' -f $_.Replace
                      ('''','''''') }
                                                                              e
                      lse { '& ''{0}''' -f $_ }} |
                                                                         ForEac
                      h-Object {'{0}{1}' -f $_base,$_ }
                                                          }
                                                      }
                                                  }
                                              }
                                          }
                                      }
                                  }
                              
CmdletBinding       : False
DefaultParameterSet : 
Definition          : 
                                  param($line, $lastWord)
                      & {
                                      function Write-Members ($sep='.')
                                      {
                                          Invoke-Expression ('$_val=' + $_expre
                      ssion)
                      
                                          $_method = [Management.Automation.PSM
                      emberTypes] `
                                              'Method,CodeMethod,ScriptMethod,P
                      arameterizedProperty'
                                          if ($sep -eq '.')
                                          {
                                              $params = @{view = 'extended','ad
                      apted','base'}
                                          }
                                          else
                                          {
                                              $params = @{static=$true}
                                          }
                              
                                          foreach ($_m in ,$_val | Get-Member @
                      params $_pat |
                                              Sort-Object membertype,name)
                                          {
                                              if ($_m.MemberType -band $_method
                      )
                                              {
                                                  # Return a method...
                                                  $_base + $_expression + $sep 
                      + $_m.name + '('
                                              }
                                              else {
                                                  # Return a property...
                                                  $_base + $_expression + $sep 
                      + $_m.name
                                              }
                                          }
                                      }
                      
                                      # If a command name contains any of these
                       chars, it needs to be quoted
                                      $_charsRequiringQuotes = ('`&@''#{}()$,;|
                      <> ' + "`t").ToCharArray()
                      
                                      # If a variable name contains any of thes
                      e characters it needs to be in braces
                                      $_varsRequiringQuotes = ('-`&@''#{}()$,;|
                      <> .\/' + "`t").ToCharArray()
                      
                                      switch -regex ($lastWord)
                                      {
                                          # Handle property and method expansio
                      n rooted at variables...
                                          # e.g. $a.b.<tab>
                                          '(^.*)(\$(\w|:|\.)+)\.([*\w]*)$' {
                                              $_base = $matches[1]
                                              $_expression = $matches[2]
                                              $_pat = $matches[4] + '*'
                                              Write-Members
                                              break;
                                          }
                      
                                          # Handle simple property and method e
                      xpansion on static members...
                                          # e.g. [datetime]::n<tab>
                                          '(^.*)(\[(\w|\.|\+)+\])(\:\:|\.){0,1}
                      ([*\w]*)$' {
                                              $_base = $matches[1]
                                              $_expression = $matches[2]
                                              $_pat = $matches[5] + '*'
                                              Write-Members $(if (! $matches[4]
                      ) {'::'} else {$matches[4]})
                                              break;
                                          }
                      
                                          # Handle complex property and method 
                      expansion on static members
                                          # where there are intermediate proper
                      ties...
                                          # e.g. [datetime]::now.d<tab>
                                          '(^.*)(\[(\w|\.|\+)+\](\:\:|\.)(\w+\.
                      )+)([*\w]*)$' {
                                              $_base = $matches[1]  # everythin
                      g before the expression
                                              $_expression = $matches[2].TrimEn
                      d('.') # expression less trailing '.'
                                              $_pat = $matches[6] + '*'  # the 
                      member to look for...
                                              Write-Members
                                              break;
                                          }
                      
                                          # Handle variable name expansion...
                                          '(^.*\$)([*\w:]+)$' {
                                              $_prefix = $matches[1]
                                              $_varName = $matches[2]
                                              $_colonPos = $_varname.IndexOf(':
                      ')
                                              if ($_colonPos -eq -1)
                                              {
                                                  $_varName = 'variable:' + $_v
                      arName
                                                  $_provider = ''
                                              }
                                              else
                                              {
                                                  $_provider = $_varname.Substr
                      ing(0, $_colonPos+1)
                                              }
                      
                                              foreach ($_v in Get-ChildItem ($_
                      varName + '*') | sort Name)
                                              { 
                                                  $_nameFound = $_v.name
                                                  $(if ($_nameFound.IndexOfAny(
                      $_varsRequiringQuotes) -eq -1) {'{0}{1}{2}'}
                                                  else {'{0}{{{1}{2}}}'}) -f $_
                      prefix, $_provider, $_nameFound
                                              }
                                              break;
                                          }
                      
                                          # Do completion on parameters...
                                          '^-([*\w0-9]*)' {
                                              $_pat = $matches[1] + '*'
                      
                                              # extract the command name from t
                      he string
                                              # first split the string into sta
                      tements and pipeline elements
                                              # This doesn't handle strings how
                      ever.
                                              $_command = [regex]::Split($line,
                       '[|;=]')[-1]
                      
                                              #  Extract the trailing unclosed 
                      block e.g. ls | foreach { cp
                                              if ($_command -match '\{([^\{\}]*
                      )$')
                                              {
                                                  $_command = $matches[1]
                                              }
                      
                                              # Extract the longest unclosed pa
                      renthetical expression...
                                              if ($_command -match '\(([^()]*)$
                      ')
                                              {
                                                  $_command = $matches[1]
                                              }
                      
                                              # take the first space separated 
                      token of the remaining string
                                              # as the command to look up. Trim
                       any leading or trailing spaces
                                              # so you don't get leading empty 
                      elements.
                                              $_command = $_command.TrimEnd('-'
                      )
                                              $_command,$_arguments = $_command
                      .Trim().Split()
                      
                                              # now get the info object for it,
                       -ArgumentList will force aliases to be resolved
                                              # it also retrieves dynamic param
                      eters
                                              try
                                              {
                                                  $_command = @(Get-Command -ty
                      pe 'Alias,Cmdlet,Function,Filter,ExternalScript' `
                                                      -Name $_command -Argument
                      List $_arguments)[0]
                                              }
                                              catch
                                              {
                                                  # see if the command is an al
                      ias. If so, resolve it to the real command
                                                  if(Test-Path alias:\$_command
                      )
                                                  {
                                                      $_command = @(Get-Command
                       -Type Alias $_command)[0].Definition
                                                  }
                      
                                                  # If we were unsuccessful ret
                      rieving the command, try again without the parameters
                                                  $_command = @(Get-Command -ty
                      pe 'Cmdlet,Function,Filter,ExternalScript' `
                                                      -Name $_command)[0]
                                              }
                      
                                              # remove errors generated by the 
                      command not being found, and break
                                              if(-not $_command) { $error.Remov
                      eAt(0); break; }
                      
                                              # expand the parameter sets and e
                      mit the matching elements
                                              # need to use psbase.Keys in case
                       'keys' is one of the parameters
                                              # to the cmdlet
                                              foreach ($_n in $_command.Paramet
                      ers.psbase.Keys)
                                              {
                                                  if ($_n -like $_pat) { '-' + 
                      $_n }
                                              }
                                              break;
                                          }
                      
                                          # Tab complete against history either
                       #<pattern> or #<id>
                                          '^#(\w*)' {
                                              $_pattern = $matches[1]
                                              if ($_pattern -match '^[0-9]+$')
                                              {
                                                  Get-History -ea SilentlyConti
                      nue -Id $_pattern | Foreach { $_.CommandLine } 
                                              }
                                              else
                                              {
                                                  $_pattern = '*' + $_pattern +
                       '*'
                                                  Get-History -Count 32767 | So
                      rt-Object -Descending Id| Foreach { $_.CommandLine } | wh
                      ere { $_ -like $_pattern }
                                              }
                                              break;
                                          }
                      
                                          # try to find a matching command...
                                          default {
                                              # parse the script...
                                              $_tokens = [System.Management.Aut
                      omation.PSParser]::Tokenize($line,
                                                  [ref] $null)
                      
                                              if ($_tokens)
                                              {
                                                  $_lastToken = $_tokens[$_toke
                      ns.count - 1]
                                                  if ($_lastToken.Type -eq 'Com
                      mand')
                                                  {
                                                      $_cmd = $_lastToken.Conte
                      nt
                      
                                                      # don't look for paths...
                                                      if ($_cmd.IndexOfAny('/\:
                      ') -eq -1)
                                                      {
                                                          # handle parsing erro
                      rs - the last token string should be the last
                                                          # string in the line.
                      ..
                                                          if ($lastword.Length 
                      -ge $_cmd.Length -and 
                                                              $lastword.substri
                      ng($lastword.length-$_cmd.length) -eq $_cmd)
                                                          {
                                                              $_pat = $_cmd + '
                      *'
                                                              $_base = $lastwor
                      d.substring(0, $lastword.length-$_cmd.length)
                      
                                                              # get files in cu
                      rrent directory first, then look for commands...
                                                              $( try {Resolve-P
                      ath -ea SilentlyContinue -Relative $_pat } catch {} ;
                                                                 try { $Executi
                      onContext.InvokeCommand.GetCommandName($_pat, $true, $fal
                      se) |
                                                                     Sort-Objec
                      t -Unique } catch {} ) |
                                                                         # If t
                      he command contains non-word characters (space, ) ] ; ) e
                      tc.)
                                                                         # then
                       it needs to be quoted and prefixed with &
                                                                         ForEac
                      h-Object {
                                                                              i
                      f ($_.IndexOfAny($_charsRequiringQuotes) -eq -1) { $_ }
                                                                              e
                      lseif ($_.IndexOf('''') -ge 0) {'& ''{0}''' -f $_.Replace
                      ('''','''''') }
                                                                              e
                      lse { '& ''{0}''' -f $_ }} |
                                                                         ForEac
                      h-Object {'{0}{1}' -f $_base,$_ }
                                                          }
                                                      }
                                                  }
                                              }
                                          }
                                      }
                                  }
                              
Options             : None
Description         : 
OutputType          : {}
Name                : TabExpansion
CommandType         : Function
Visibility          : Public
ModuleName          : 
Module              : 
Parameters          : {[line, System.Management.Automation.ParameterMetadata], 
                      [lastWord, System.Management.Automation.ParameterMetadata
                      ]}
ParameterSets       : {[[-line] <Object>] [[-lastWord] <Object>]}
HelpUri             : 

Name              : tee
CommandType       : Alias
Definition        : Tee-Object
ReferencedCommand : Tee-Object
ResolvedCommand   : Tee-Object


Verb                : Tee
Noun                : Object
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.TeeObjectCommand
Definition          : Tee-Object [-FilePath] <String> [-InputObject <PSObject>]
                       [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-
                      WarningAction <ActionPreference>] [-ErrorVariable <String
                      >] [-WarningVariable <String>] [-OutVariable <String>] [-
                      OutBuffer <Int32>]
                      Tee-Object [-InputObject <PSObject>] -Variable <String> [
                      -Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-Wa
                      rningAction <ActionPreference>] [-ErrorVariable <String>]
                       [-WarningVariable <String>] [-OutVariable <String>] [-Ou
                      tBuffer <Int32>]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Tee-Object
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[InputObject, System.Management.Automation.ParameterMeta
                      data], [FilePath, System.Management.Automation.ParameterM
                      etadata], [Variable, System.Management.Automation.Paramet
                      erMetadata], [Verbose, System.Management.Automation.Param
                      eterMetadata]...}
ParameterSets       : {[-FilePath] <String> [-InputObject <PSObject>] [-Verbose
                      ] [-Debug] [-ErrorAction <ActionPreference>] [-WarningAct
                      ion <ActionPreference>] [-ErrorVariable <String>] [-Warni
                      ngVariable <String>] [-OutVariable <String>] [-OutBuffer 
                      <Int32>], [-InputObject <PSObject>] -Variable <String> [-
                      Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-War
                      ningAction <ActionPreference>] [-ErrorVariable <String>] 
                      [-WarningVariable <String>] [-OutVariable <String>] [-Out
                      Buffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113417
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : Test
Noun                : ComputerSecureChannel
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.TestComputerSecureChannelCo
                      mmand
Definition          : Test-ComputerSecureChannel [-Repair] [-Server <String>] [
                      -Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-Wa
                      rningAction <ActionPreference>] [-ErrorVariable <String>]
                       [-WarningVariable <String>] [-OutVariable <String>] [-Ou
                      tBuffer <Int32>] [-WhatIf] [-Confirm]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Test-ComputerSecureChannel
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[Repair, System.Management.Automation.ParameterMetadata]
                      , [Server, System.Management.Automation.ParameterMetadata
                      ], [Verbose, System.Management.Automation.ParameterMetada
                      ta], [Debug, System.Management.Automation.ParameterMetada
                      ta]...}
ParameterSets       : {[-Repair] [-Server <String>] [-Verbose] [-Debug] [-Error
                      Action <ActionPreference>] [-WarningAction <ActionPrefere
                      nce>] [-ErrorVariable <String>] [-WarningVariable <String
                      >] [-OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf]
                       [-Confirm]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=137749
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : Test
Noun                : Connection
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.TestConnectionCommand
Definition          : Test-Connection [-ComputerName] <String[]> [[-Source] <St
                      ring[]>] [-AsJob] [-Authentication <AuthenticationLevel>]
                       [-BufferSize <Int32>] [-Count <Int32>] [-Credential <PSC
                      redential>] [-Impersonation <ImpersonationLevel>] [-Throt
                      tleLimit <Int32>] [-TimeToLive <Int32>] [-Delay <Int32>] 
                      [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-W
                      arningAction <ActionPreference>] [-ErrorVariable <String>
                      ] [-WarningVariable <String>] [-OutVariable <String>] [-O
                      utBuffer <Int32>]
                      Test-Connection [-ComputerName] <String[]> [[-Source] <St
                      ring[]>] [-Authentication <AuthenticationLevel>] [-Buffer
                      Size <Int32>] [-Count <Int32>] [-Credential <PSCredential
                      >] [-Impersonation <ImpersonationLevel>] [-TimeToLive <In
                      t32>] [-Delay <Int32>] [-Quiet] [-Verbose] [-Debug] [-Err
                      orAction <ActionPreference>] [-WarningAction <ActionPrefe
                      rence>] [-ErrorVariable <String>] [-WarningVariable <Stri
                      ng>] [-OutVariable <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : Default
OutputType          : {}
Name                : Test-Connection
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[AsJob, System.Management.Automation.ParameterMetadata],
                       [Authentication, System.Management.Automation.ParameterM
                      etadata], [BufferSize, System.Management.Automation.Param
                      eterMetadata], [ComputerName, System.Management.Automatio
                      n.ParameterMetadata]...}
ParameterSets       : {[-ComputerName] <String[]> [[-Source] <String[]>] [-AsJo
                      b] [-Authentication <AuthenticationLevel>] [-BufferSize <
                      Int32>] [-Count <Int32>] [-Credential <PSCredential>] [-I
                      mpersonation <ImpersonationLevel>] [-ThrottleLimit <Int32
                      >] [-TimeToLive <Int32>] [-Delay <Int32>] [-Verbose] [-De
                      bug] [-ErrorAction <ActionPreference>] [-WarningAction <A
                      ctionPreference>] [-ErrorVariable <String>] [-WarningVari
                      able <String>] [-OutVariable <String>] [-OutBuffer <Int32
                      >], [-ComputerName] <String[]> [[-Source] <String[]>] [-A
                      uthentication <AuthenticationLevel>] [-BufferSize <Int32>
                      ] [-Count <Int32>] [-Credential <PSCredential>] [-Imperso
                      nation <ImpersonationLevel>] [-TimeToLive <Int32>] [-Dela
                      y <Int32>] [-Quiet] [-Verbose] [-Debug] [-ErrorAction <Ac
                      tionPreference>] [-WarningAction <ActionPreference>] [-Er
                      rorVariable <String>] [-WarningVariable <String>] [-OutVa
                      riable <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=135266
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : Test
Noun                : ModuleManifest
HelpFile            : System.Management.Automation.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Core
ImplementingType    : Microsoft.PowerShell.Commands.TestModuleManifestCommand
Definition          : Test-ModuleManifest [-Path] <String> [-Verbose] [-Debug] 
                      [-ErrorAction <ActionPreference>] [-WarningAction <Action
                      Preference>] [-ErrorVariable <String>] [-WarningVariable 
                      <String>] [-OutVariable <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : 
OutputType          : {System.Management.Automation.PSModuleInfo}
Name                : Test-ModuleManifest
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Core
Module              : 
Parameters          : {[Path, System.Management.Automation.ParameterMetadata], 
                      [Verbose, System.Management.Automation.ParameterMetadata]
                      , [Debug, System.Management.Automation.ParameterMetadata]
                      , [ErrorAction, System.Management.Automation.ParameterMet
                      adata]...}
ParameterSets       : {[-Path] <String> [-Verbose] [-Debug] [-ErrorAction <Acti
                      onPreference>] [-WarningAction <ActionPreference>] [-Erro
                      rVariable <String>] [-WarningVariable <String>] [-OutVari
                      able <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=141557
DLL                 : C:\Windows\assembly\GAC_MSIL\System.Management.Automation
                      \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d
                      ll


Verb                : Test
Noun                : Path
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.TestPathCommand
Definition          : Test-Path [-Path] <String[]> [-Filter <String>] [-Include
                       <String[]>] [-Exclude <String[]>] [-PathType <TestPathTy
                      pe>] [-IsValid] [-Credential <PSCredential>] [-Verbose] [
                      -Debug] [-ErrorAction <ActionPreference>] [-WarningAction
                       <ActionPreference>] [-ErrorVariable <String>] [-WarningV
                      ariable <String>] [-OutVariable <String>] [-OutBuffer <In
                      t32>] [-UseTransaction]
                      Test-Path [-LiteralPath] <String[]> [-Filter <String>] [-
                      Include <String[]>] [-Exclude <String[]>] [-PathType <Tes
                      tPathType>] [-IsValid] [-Credential <PSCredential>] [-Ver
                      bose] [-Debug] [-ErrorAction <ActionPreference>] [-Warnin
                      gAction <ActionPreference>] [-ErrorVariable <String>] [-W
                      arningVariable <String>] [-OutVariable <String>] [-OutBuf
                      fer <Int32>] [-UseTransaction]
                      
DefaultParameterSet : Path
OutputType          : {System.Boolean}
Name                : Test-Path
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[Path, System.Management.Automation.ParameterMetadata], 
                      [LiteralPath, System.Management.Automation.ParameterMetad
                      ata], [Filter, System.Management.Automation.ParameterMeta
                      data], [Include, System.Management.Automation.ParameterMe
                      tadata]...}
ParameterSets       : {[-Path] <String[]> [-Filter <String>] [-Include <String[
                      ]>] [-Exclude <String[]>] [-PathType <TestPathType>] [-Is
                      Valid] [-Credential <PSCredential>] [-Verbose] [-Debug] [
                      -ErrorAction <ActionPreference>] [-WarningAction <ActionP
                      reference>] [-ErrorVariable <String>] [-WarningVariable <
                      String>] [-OutVariable <String>] [-OutBuffer <Int32>] [-U
                      seTransaction], [-LiteralPath] <String[]> [-Filter <Strin
                      g>] [-Include <String[]>] [-Exclude <String[]>] [-PathTyp
                      e <TestPathType>] [-IsValid] [-Credential <PSCredential>]
                       [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-
                      WarningAction <ActionPreference>] [-ErrorVariable <String
                      >] [-WarningVariable <String>] [-OutVariable <String>] [-
                      OutBuffer <Int32>] [-UseTransaction]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113418
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : Test
Noun                : WSMan
HelpFile            : Microsoft.WSMan.Management.dll-Help.xml
PSSnapIn            : Microsoft.WSMan.Management
ImplementingType    : Microsoft.WSMan.Management.TestWSManCommand
Definition          : Test-WSMan [[-ComputerName] <String>] [-Authentication <A
                      uthenticationMechanism>] [-Port <Int32>] [-UseSSL] [-Appl
                      icationName <String>] [-Credential <PSCredential>] [-Cert
                      ificateThumbprint <String>] [-Verbose] [-Debug] [-ErrorAc
                      tion <ActionPreference>] [-WarningAction <ActionPreferenc
                      e>] [-ErrorVariable <String>] [-WarningVariable <String>]
                       [-OutVariable <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Test-WSMan
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.WSMan.Management
Module              : 
Parameters          : {[ComputerName, System.Management.Automation.ParameterMet
                      adata], [Authentication, System.Management.Automation.Par
                      ameterMetadata], [Port, System.Management.Automation.Para
                      meterMetadata], [UseSSL, System.Management.Automation.Par
                      ameterMetadata]...}
ParameterSets       : {[[-ComputerName] <String>] [-Authentication <Authenticat
                      ionMechanism>] [-Port <Int32>] [-UseSSL] [-ApplicationNam
                      e <String>] [-Credential <PSCredential>] [-CertificateThu
                      mbprint <String>] [-Verbose] [-Debug] [-ErrorAction <Acti
                      onPreference>] [-WarningAction <ActionPreference>] [-Erro
                      rVariable <String>] [-WarningVariable <String>] [-OutVari
                      able <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkId=141464
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.WSMan.Management\1
                      .0.0.0__31bf3856ad364e35\Microsoft.WSMan.Management.dll


Verb                : Trace
Noun                : Command
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.TraceCommandCommand
Definition          : Trace-Command [-Name] <String[]> [-Expression] <ScriptBlo
                      ck> [[-Option] <PSTraceSourceOptions>] [-InputObject <PSO
                      bject>] [-ListenerOption <TraceOptions>] [-FilePath <Stri
                      ng>] [-Force] [-Debugger] [-PSHost] [-Verbose] [-Debug] [
                      -ErrorAction <ActionPreference>] [-WarningAction <ActionP
                      reference>] [-ErrorVariable <String>] [-WarningVariable <
                      String>] [-OutVariable <String>] [-OutBuffer <Int32>]
                      Trace-Command [-Name] <String[]> [-Command] <String> [[-O
                      ption] <PSTraceSourceOptions>] [-InputObject <PSObject>] 
                      [-ArgumentList <Object[]>] [-ListenerOption <TraceOptions
                      >] [-FilePath <String>] [-Force] [-Debugger] [-PSHost] [-
                      Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-War
                      ningAction <ActionPreference>] [-ErrorVariable <String>] 
                      [-WarningVariable <String>] [-OutVariable <String>] [-Out
                      Buffer <Int32>]
                      
DefaultParameterSet : expressionSet
OutputType          : {}
Name                : Trace-Command
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[InputObject, System.Management.Automation.ParameterMeta
                      data], [Name, System.Management.Automation.ParameterMetad
                      ata], [Option, System.Management.Automation.ParameterMeta
                      data], [Expression, System.Management.Automation.Paramete
                      rMetadata]...}
ParameterSets       : {[-Name] <String[]> [-Expression] <ScriptBlock> [[-Option
                      ] <PSTraceSourceOptions>] [-InputObject <PSObject>] [-Lis
                      tenerOption <TraceOptions>] [-FilePath <String>] [-Force]
                       [-Debugger] [-PSHost] [-Verbose] [-Debug] [-ErrorAction 
                      <ActionPreference>] [-WarningAction <ActionPreference>] [
                      -ErrorVariable <String>] [-WarningVariable <String>] [-Ou
                      tVariable <String>] [-OutBuffer <Int32>], [-Name] <String
                      []> [-Command] <String> [[-Option] <PSTraceSourceOptions>
                      ] [-InputObject <PSObject>] [-ArgumentList <Object[]>] [-
                      ListenerOption <TraceOptions>] [-FilePath <String>] [-For
                      ce] [-Debugger] [-PSHost] [-Verbose] [-Debug] [-ErrorActi
                      on <ActionPreference>] [-WarningAction <ActionPreference>
                      ] [-ErrorVariable <String>] [-WarningVariable <String>] [
                      -OutVariable <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113419
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll

Name              : type
CommandType       : Alias
Definition        : Get-Content
ReferencedCommand : Get-Content
ResolvedCommand   : Get-Content


ScriptBlock         : Set-Location U:
CmdletBinding       : False
DefaultParameterSet : 
Definition          : Set-Location U:
Options             : None
Description         : 
OutputType          : {}
Name                : U:
CommandType         : Function
Visibility          : Public
ModuleName          : 
Module              : 
Parameters          : {}
ParameterSets       : {}
HelpUri             : 


Verb                : Undo
Noun                : Transaction
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.UndoTransactionCommand
Definition          : Undo-Transaction [-Verbose] [-Debug] [-ErrorAction <Actio
                      nPreference>] [-WarningAction <ActionPreference>] [-Error
                      Variable <String>] [-WarningVariable <String>] [-OutVaria
                      ble <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Undo-Transaction
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[Verbose, System.Management.Automation.ParameterMetadata
                      ], [Debug, System.Management.Automation.ParameterMetadata
                      ], [ErrorAction, System.Management.Automation.ParameterMe
                      tadata], [WarningAction, System.Management.Automation.Par
                      ameterMetadata]...}
ParameterSets       : {[-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-
                      WarningAction <ActionPreference>] [-ErrorVariable <String
                      >] [-WarningVariable <String>] [-OutVariable <String>] [-
                      OutBuffer <Int32>] [-WhatIf] [-Confirm]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=135268
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : Unregister
Noun                : Event
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.UnregisterEventCommand
Definition          : Unregister-Event [-SourceIdentifier] <String> [-Force] [-
                      Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-War
                      ningAction <ActionPreference>] [-ErrorVariable <String>] 
                      [-WarningVariable <String>] [-OutVariable <String>] [-Out
                      Buffer <Int32>] [-WhatIf] [-Confirm]
                      Unregister-Event [-SubscriptionId] <Int32> [-Force] [-Ver
                      bose] [-Debug] [-ErrorAction <ActionPreference>] [-Warnin
                      gAction <ActionPreference>] [-ErrorVariable <String>] [-W
                      arningVariable <String>] [-OutVariable <String>] [-OutBuf
                      fer <Int32>] [-WhatIf] [-Confirm]
                      
DefaultParameterSet : BySource
OutputType          : {}
Name                : Unregister-Event
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[SourceIdentifier, System.Management.Automation.Paramete
                      rMetadata], [SubscriptionId, System.Management.Automation
                      .ParameterMetadata], [Force, System.Management.Automation
                      .ParameterMetadata], [Verbose, System.Management.Automati
                      on.ParameterMetadata]...}
ParameterSets       : {[-SourceIdentifier] <String> [-Force] [-Verbose] [-Debug
                      ] [-ErrorAction <ActionPreference>] [-WarningAction <Acti
                      onPreference>] [-ErrorVariable <String>] [-WarningVariabl
                      e <String>] [-OutVariable <String>] [-OutBuffer <Int32>] 
                      [-WhatIf] [-Confirm], [-SubscriptionId] <Int32> [-Force] 
                      [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-W
                      arningAction <ActionPreference>] [-ErrorVariable <String>
                      ] [-WarningVariable <String>] [-OutVariable <String>] [-O
                      utBuffer <Int32>] [-WhatIf] [-Confirm]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=135269
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : Unregister
Noun                : PSSessionConfiguration
HelpFile            : System.Management.Automation.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Core
ImplementingType    : Microsoft.PowerShell.Commands.UnregisterPSSessionConfigur
                      ationCommand
Definition          : Unregister-PSSessionConfiguration [-Name] <String> [-Forc
                      e] [-NoServiceRestart] [-Verbose] [-Debug] [-ErrorAction 
                      <ActionPreference>] [-WarningAction <ActionPreference>] [
                      -ErrorVariable <String>] [-WarningVariable <String>] [-Ou
                      tVariable <String>] [-OutBuffer <Int32>] [-WhatIf] [-Conf
                      irm]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Unregister-PSSessionConfiguration
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Core
Module              : 
Parameters          : {[Name, System.Management.Automation.ParameterMetadata], 
                      [Force, System.Management.Automation.ParameterMetadata], 
                      [NoServiceRestart, System.Management.Automation.Parameter
                      Metadata], [Verbose, System.Management.Automation.Paramet
                      erMetadata]...}
ParameterSets       : {[-Name] <String> [-Force] [-NoServiceRestart] [-Verbose]
                       [-Debug] [-ErrorAction <ActionPreference>] [-WarningActi
                      on <ActionPreference>] [-ErrorVariable <String>] [-Warnin
                      gVariable <String>] [-OutVariable <String>] [-OutBuffer <
                      Int32>] [-WhatIf] [-Confirm]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=144308
DLL                 : C:\Windows\assembly\GAC_MSIL\System.Management.Automation
                      \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d
                      ll


Verb                : Update
Noun                : FormatData
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.UpdateFormatDataCommand
Definition          : Update-FormatData [[-AppendPath] <String[]>] [-PrependPat
                      h <String[]>] [-Verbose] [-Debug] [-ErrorAction <ActionPr
                      eference>] [-WarningAction <ActionPreference>] [-ErrorVar
                      iable <String>] [-WarningVariable <String>] [-OutVariable
                       <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Update-FormatData
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[AppendPath, System.Management.Automation.ParameterMetad
                      ata], [PrependPath, System.Management.Automation.Paramete
                      rMetadata], [Verbose, System.Management.Automation.Parame
                      terMetadata], [Debug, System.Management.Automation.Parame
                      terMetadata]...}
ParameterSets       : {[[-AppendPath] <String[]>] [-PrependPath <String[]>] [-V
                      erbose] [-Debug] [-ErrorAction <ActionPreference>] [-Warn
                      ingAction <ActionPreference>] [-ErrorVariable <String>] [
                      -WarningVariable <String>] [-OutVariable <String>] [-OutB
                      uffer <Int32>] [-WhatIf] [-Confirm]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113420
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : Update
Noun                : List
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.UpdateListCommand
Definition          : Update-List [[-Property] <String>] [-Add <Object[]>] [-Re
                      move <Object[]>] [-InputObject <PSObject>] [-Verbose] [-D
                      ebug] [-ErrorAction <ActionPreference>] [-WarningAction <
                      ActionPreference>] [-ErrorVariable <String>] [-WarningVar
                      iable <String>] [-OutVariable <String>] [-OutBuffer <Int3
                      2>]
                      Update-List [[-Property] <String>] -Replace <Object[]> [-
                      InputObject <PSObject>] [-Verbose] [-Debug] [-ErrorAction
                       <ActionPreference>] [-WarningAction <ActionPreference>] 
                      [-ErrorVariable <String>] [-WarningVariable <String>] [-O
                      utVariable <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : AddRemoveSet
OutputType          : {}
Name                : Update-List
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[Add, System.Management.Automation.ParameterMetadata], [
                      Remove, System.Management.Automation.ParameterMetadata], 
                      [Replace, System.Management.Automation.ParameterMetadata]
                      , [InputObject, System.Management.Automation.ParameterMet
                      adata]...}
ParameterSets       : {[[-Property] <String>] [-Add <Object[]>] [-Remove <Objec
                      t[]>] [-InputObject <PSObject>] [-Verbose] [-Debug] [-Err
                      orAction <ActionPreference>] [-WarningAction <ActionPrefe
                      rence>] [-ErrorVariable <String>] [-WarningVariable <Stri
                      ng>] [-OutVariable <String>] [-OutBuffer <Int32>], [[-Pro
                      perty] <String>] -Replace <Object[]> [-InputObject <PSObj
                      ect>] [-Verbose] [-Debug] [-ErrorAction <ActionPreference
                      >] [-WarningAction <ActionPreference>] [-ErrorVariable <S
                      tring>] [-WarningVariable <String>] [-OutVariable <String
                      >] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113447
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : Update
Noun                : TypeData
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.UpdateTypeDataCommand
Definition          : Update-TypeData [[-AppendPath] <String[]>] [-PrependPath 
                      <String[]>] [-Verbose] [-Debug] [-ErrorAction <ActionPref
                      erence>] [-WarningAction <ActionPreference>] [-ErrorVaria
                      ble <String>] [-WarningVariable <String>] [-OutVariable <
                      String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Update-TypeData
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[AppendPath, System.Management.Automation.ParameterMetad
                      ata], [PrependPath, System.Management.Automation.Paramete
                      rMetadata], [Verbose, System.Management.Automation.Parame
                      terMetadata], [Debug, System.Management.Automation.Parame
                      terMetadata]...}
ParameterSets       : {[[-AppendPath] <String[]>] [-PrependPath <String[]>] [-V
                      erbose] [-Debug] [-ErrorAction <ActionPreference>] [-Warn
                      ingAction <ActionPreference>] [-ErrorVariable <String>] [
                      -WarningVariable <String>] [-OutVariable <String>] [-OutB
                      uffer <Int32>] [-WhatIf] [-Confirm]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113421
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : Use
Noun                : Transaction
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.UseTransactionCommand
Definition          : Use-Transaction [-TransactedScript] <ScriptBlock> [-Verbo
                      se] [-Debug] [-ErrorAction <ActionPreference>] [-WarningA
                      ction <ActionPreference>] [-ErrorVariable <String>] [-War
                      ningVariable <String>] [-OutVariable <String>] [-OutBuffe
                      r <Int32>] [-UseTransaction]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Use-Transaction
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[TransactedScript, System.Management.Automation.Paramete
                      rMetadata], [Verbose, System.Management.Automation.Parame
                      terMetadata], [Debug, System.Management.Automation.Parame
                      terMetadata], [ErrorAction, System.Management.Automation.
                      ParameterMetadata]...}
ParameterSets       : {[-TransactedScript] <ScriptBlock> [-Verbose] [-Debug] [-
                      ErrorAction <ActionPreference>] [-WarningAction <ActionPr
                      eference>] [-ErrorVariable <String>] [-WarningVariable <S
                      tring>] [-OutVariable <String>] [-OutBuffer <Int32>] [-Us
                      eTransaction]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=135271
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


ScriptBlock         : Set-Location V:
CmdletBinding       : False
DefaultParameterSet : 
Definition          : Set-Location V:
Options             : None
Description         : 
OutputType          : {}
Name                : V:
CommandType         : Function
Visibility          : Public
ModuleName          : 
Module              : 
Parameters          : {}
ParameterSets       : {}
HelpUri             : 


ScriptBlock         : Set-Location W:
CmdletBinding       : False
DefaultParameterSet : 
Definition          : Set-Location W:
Options             : None
Description         : 
OutputType          : {}
Name                : W:
CommandType         : Function
Visibility          : Public
ModuleName          : 
Module              : 
Parameters          : {}
ParameterSets       : {}
HelpUri             : 


Verb                : Wait
Noun                : Event
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.WaitEventCommand
Definition          : Wait-Event [[-SourceIdentifier] <String>] [-Timeout <Int3
                      2>] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>]
                       [-WarningAction <ActionPreference>] [-ErrorVariable <Str
                      ing>] [-WarningVariable <String>] [-OutVariable <String>]
                       [-OutBuffer <Int32>]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Wait-Event
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[SourceIdentifier, System.Management.Automation.Paramete
                      rMetadata], [Timeout, System.Management.Automation.Parame
                      terMetadata], [Verbose, System.Management.Automation.Para
                      meterMetadata], [Debug, System.Management.Automation.Para
                      meterMetadata]...}
ParameterSets       : {[[-SourceIdentifier] <String>] [-Timeout <Int32>] [-Verb
                      ose] [-Debug] [-ErrorAction <ActionPreference>] [-Warning
                      Action <ActionPreference>] [-ErrorVariable <String>] [-Wa
                      rningVariable <String>] [-OutVariable <String>] [-OutBuff
                      er <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=135276
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : Wait
Noun                : Job
HelpFile            : System.Management.Automation.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Core
ImplementingType    : Microsoft.PowerShell.Commands.WaitJobCommand
Definition          : Wait-Job [-Id] <Int32[]> [-Any] [-Timeout <Int32>] [-Verb
                      ose] [-Debug] [-ErrorAction <ActionPreference>] [-Warning
                      Action <ActionPreference>] [-ErrorVariable <String>] [-Wa
                      rningVariable <String>] [-OutVariable <String>] [-OutBuff
                      er <Int32>]
                      Wait-Job [-Job] <Job[]> [-Any] [-Timeout <Int32>] [-Verbo
                      se] [-Debug] [-ErrorAction <ActionPreference>] [-WarningA
                      ction <ActionPreference>] [-ErrorVariable <String>] [-War
                      ningVariable <String>] [-OutVariable <String>] [-OutBuffe
                      r <Int32>]
                      Wait-Job [[-Name] <String[]>] [-Any] [-Timeout <Int32>] [
                      -Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-Wa
                      rningAction <ActionPreference>] [-ErrorVariable <String>]
                       [-WarningVariable <String>] [-OutVariable <String>] [-Ou
                      tBuffer <Int32>]
                      Wait-Job [[-InstanceId] <Guid[]>] [-Any] [-Timeout <Int32
                      >] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] 
                      [-WarningAction <ActionPreference>] [-ErrorVariable <Stri
                      ng>] [-WarningVariable <String>] [-OutVariable <String>] 
                      [-OutBuffer <Int32>]
                      Wait-Job [-Any] [-Timeout <Int32>] [-State <JobState>] [-
                      Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-War
                      ningAction <ActionPreference>] [-ErrorVariable <String>] 
                      [-WarningVariable <String>] [-OutVariable <String>] [-Out
                      Buffer <Int32>]
                      
DefaultParameterSet : SessionIdParameterSet
OutputType          : {}
Name                : Wait-Job
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Core
Module              : 
Parameters          : {[Job, System.Management.Automation.ParameterMetadata], [
                      Any, System.Management.Automation.ParameterMetadata], [Ti
                      meout, System.Management.Automation.ParameterMetadata], [
                      Name, System.Management.Automation.ParameterMetadata]...}
ParameterSets       : {[-Id] <Int32[]> [-Any] [-Timeout <Int32>] [-Verbose] [-D
                      ebug] [-ErrorAction <ActionPreference>] [-WarningAction <
                      ActionPreference>] [-ErrorVariable <String>] [-WarningVar
                      iable <String>] [-OutVariable <String>] [-OutBuffer <Int3
                      2>], [-Job] <Job[]> [-Any] [-Timeout <Int32>] [-Verbose] 
                      [-Debug] [-ErrorAction <ActionPreference>] [-WarningActio
                      n <ActionPreference>] [-ErrorVariable <String>] [-Warning
                      Variable <String>] [-OutVariable <String>] [-OutBuffer <I
                      nt32>], [[-Name] <String[]>] [-Any] [-Timeout <Int32>] [-
                      Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-War
                      ningAction <ActionPreference>] [-ErrorVariable <String>] 
                      [-WarningVariable <String>] [-OutVariable <String>] [-Out
                      Buffer <Int32>], [[-InstanceId] <Guid[]>] [-Any] [-Timeou
                      t <Int32>] [-Verbose] [-Debug] [-ErrorAction <ActionPrefe
                      rence>] [-WarningAction <ActionPreference>] [-ErrorVariab
                      le <String>] [-WarningVariable <String>] [-OutVariable <S
                      tring>] [-OutBuffer <Int32>]...}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113422
DLL                 : C:\Windows\assembly\GAC_MSIL\System.Management.Automation
                      \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d
                      ll


Verb                : Wait
Noun                : Process
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.WaitProcessCommand
Definition          : Wait-Process [-Name] <String[]> [[-Timeout] <Int32>] [-Ve
                      rbose] [-Debug] [-ErrorAction <ActionPreference>] [-Warni
                      ngAction <ActionPreference>] [-ErrorVariable <String>] [-
                      WarningVariable <String>] [-OutVariable <String>] [-OutBu
                      ffer <Int32>]
                      Wait-Process [-Id] <Int32[]> [[-Timeout] <Int32>] [-Verbo
                      se] [-Debug] [-ErrorAction <ActionPreference>] [-WarningA
                      ction <ActionPreference>] [-ErrorVariable <String>] [-War
                      ningVariable <String>] [-OutVariable <String>] [-OutBuffe
                      r <Int32>]
                      Wait-Process [[-Timeout] <Int32>] -InputObject <Process[]
                      > [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [
                      -WarningAction <ActionPreference>] [-ErrorVariable <Strin
                      g>] [-WarningVariable <String>] [-OutVariable <String>] [
                      -OutBuffer <Int32>]
                      
DefaultParameterSet : Name
OutputType          : {}
Name                : Wait-Process
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[Id, System.Management.Automation.ParameterMetadata], [N
                      ame, System.Management.Automation.ParameterMetadata], [Ti
                      meout, System.Management.Automation.ParameterMetadata], [
                      InputObject, System.Management.Automation.ParameterMetada
                      ta]...}
ParameterSets       : {[-Name] <String[]> [[-Timeout] <Int32>] [-Verbose] [-Deb
                      ug] [-ErrorAction <ActionPreference>] [-WarningAction <Ac
                      tionPreference>] [-ErrorVariable <String>] [-WarningVaria
                      ble <String>] [-OutVariable <String>] [-OutBuffer <Int32>
                      ], [-Id] <Int32[]> [[-Timeout] <Int32>] [-Verbose] [-Debu
                      g] [-ErrorAction <ActionPreference>] [-WarningAction <Act
                      ionPreference>] [-ErrorVariable <String>] [-WarningVariab
                      le <String>] [-OutVariable <String>] [-OutBuffer <Int32>]
                      , [[-Timeout] <Int32>] -InputObject <Process[]> [-Verbose
                      ] [-Debug] [-ErrorAction <ActionPreference>] [-WarningAct
                      ion <ActionPreference>] [-ErrorVariable <String>] [-Warni
                      ngVariable <String>] [-OutVariable <String>] [-OutBuffer 
                      <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=135277
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll

Name              : where
CommandType       : Alias
Definition        : Where-Object
ReferencedCommand : Where-Object
ResolvedCommand   : Where-Object


Verb                : Where
Noun                : Object
HelpFile            : System.Management.Automation.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Core
ImplementingType    : Microsoft.PowerShell.Commands.WhereObjectCommand
Definition          : Where-Object [-FilterScript] <ScriptBlock> [-InputObject 
                      <PSObject>] [-Verbose] [-Debug] [-ErrorAction <ActionPref
                      erence>] [-WarningAction <ActionPreference>] [-ErrorVaria
                      ble <String>] [-WarningVariable <String>] [-OutVariable <
                      String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Where-Object
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Core
Module              : 
Parameters          : {[InputObject, System.Management.Automation.ParameterMeta
                      data], [FilterScript, System.Management.Automation.Parame
                      terMetadata], [Verbose, System.Management.Automation.Para
                      meterMetadata], [Debug, System.Management.Automation.Para
                      meterMetadata]...}
ParameterSets       : {[-FilterScript] <ScriptBlock> [-InputObject <PSObject>] 
                      [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-W
                      arningAction <ActionPreference>] [-ErrorVariable <String>
                      ] [-WarningVariable <String>] [-OutVariable <String>] [-O
                      utBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113423
DLL                 : C:\Windows\assembly\GAC_MSIL\System.Management.Automation
                      \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d
                      ll

Name              : wjb
CommandType       : Alias
Definition        : Wait-Job
ReferencedCommand : Wait-Job
ResolvedCommand   : Wait-Job

Name              : write
CommandType       : Alias
Definition        : Write-Output
ReferencedCommand : Write-Output
ResolvedCommand   : Write-Output


Verb                : Write
Noun                : Debug
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.WriteDebugCommand
Definition          : Write-Debug [-Message] <String> [-Verbose] [-Debug] [-Err
                      orAction <ActionPreference>] [-WarningAction <ActionPrefe
                      rence>] [-ErrorVariable <String>] [-WarningVariable <Stri
                      ng>] [-OutVariable <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Write-Debug
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[Message, System.Management.Automation.ParameterMetadata
                      ], [Verbose, System.Management.Automation.ParameterMetada
                      ta], [Debug, System.Management.Automation.ParameterMetada
                      ta], [ErrorAction, System.Management.Automation.Parameter
                      Metadata]...}
ParameterSets       : {[-Message] <String> [-Verbose] [-Debug] [-ErrorAction <A
                      ctionPreference>] [-WarningAction <ActionPreference>] [-E
                      rrorVariable <String>] [-WarningVariable <String>] [-OutV
                      ariable <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113424
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : Write
Noun                : Error
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.WriteErrorCommand
Definition          : Write-Error [-Message] <String> [-Category <ErrorCategory
                      >] [-ErrorId <String>] [-TargetObject <Object>] [-Recomme
                      ndedAction <String>] [-CategoryActivity <String>] [-Categ
                      oryReason <String>] [-CategoryTargetName <String>] [-Cate
                      goryTargetType <String>] [-Verbose] [-Debug] [-ErrorActio
                      n <ActionPreference>] [-WarningAction <ActionPreference>]
                       [-ErrorVariable <String>] [-WarningVariable <String>] [-
                      OutVariable <String>] [-OutBuffer <Int32>]
                      Write-Error -Exception <Exception> [-Message <String>] [-
                      Category <ErrorCategory>] [-ErrorId <String>] [-TargetObj
                      ect <Object>] [-RecommendedAction <String>] [-CategoryAct
                      ivity <String>] [-CategoryReason <String>] [-CategoryTarg
                      etName <String>] [-CategoryTargetType <String>] [-Verbose
                      ] [-Debug] [-ErrorAction <ActionPreference>] [-WarningAct
                      ion <ActionPreference>] [-ErrorVariable <String>] [-Warni
                      ngVariable <String>] [-OutVariable <String>] [-OutBuffer 
                      <Int32>]
                      Write-Error -ErrorRecord <ErrorRecord> [-RecommendedActio
                      n <String>] [-CategoryActivity <String>] [-CategoryReason
                       <String>] [-CategoryTargetName <String>] [-CategoryTarge
                      tType <String>] [-Verbose] [-Debug] [-ErrorAction <Action
                      Preference>] [-WarningAction <ActionPreference>] [-ErrorV
                      ariable <String>] [-WarningVariable <String>] [-OutVariab
                      le <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : NoException
OutputType          : {}
Name                : Write-Error
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[Exception, System.Management.Automation.ParameterMetada
                      ta], [Message, System.Management.Automation.ParameterMeta
                      data], [ErrorRecord, System.Management.Automation.Paramet
                      erMetadata], [Category, System.Management.Automation.Para
                      meterMetadata]...}
ParameterSets       : {[-Message] <String> [-Category <ErrorCategory>] [-ErrorI
                      d <String>] [-TargetObject <Object>] [-RecommendedAction 
                      <String>] [-CategoryActivity <String>] [-CategoryReason <
                      String>] [-CategoryTargetName <String>] [-CategoryTargetT
                      ype <String>] [-Verbose] [-Debug] [-ErrorAction <ActionPr
                      eference>] [-WarningAction <ActionPreference>] [-ErrorVar
                      iable <String>] [-WarningVariable <String>] [-OutVariable
                       <String>] [-OutBuffer <Int32>], -Exception <Exception> [
                      -Message <String>] [-Category <ErrorCategory>] [-ErrorId 
                      <String>] [-TargetObject <Object>] [-RecommendedAction <S
                      tring>] [-CategoryActivity <String>] [-CategoryReason <St
                      ring>] [-CategoryTargetName <String>] [-CategoryTargetTyp
                      e <String>] [-Verbose] [-Debug] [-ErrorAction <ActionPref
                      erence>] [-WarningAction <ActionPreference>] [-ErrorVaria
                      ble <String>] [-WarningVariable <String>] [-OutVariable <
                      String>] [-OutBuffer <Int32>], -ErrorRecord <ErrorRecord>
                       [-RecommendedAction <String>] [-CategoryActivity <String
                      >] [-CategoryReason <String>] [-CategoryTargetName <Strin
                      g>] [-CategoryTargetType <String>] [-Verbose] [-Debug] [-
                      ErrorAction <ActionPreference>] [-WarningAction <ActionPr
                      eference>] [-ErrorVariable <String>] [-WarningVariable <S
                      tring>] [-OutVariable <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113425
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : Write
Noun                : EventLog
HelpFile            : Microsoft.PowerShell.Commands.Management.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Management
ImplementingType    : Microsoft.PowerShell.Commands.WriteEventLogCommand
Definition          : Write-EventLog [-LogName] <String> [-Source] <String> [-E
                      ventId] <Int32> [[-EntryType] <EventLogEntryType>] [-Mess
                      age] <String> [-Category <Int16>] [-RawData <Byte[]>] [-C
                      omputerName <String>] [-Verbose] [-Debug] [-ErrorAction <
                      ActionPreference>] [-WarningAction <ActionPreference>] [-
                      ErrorVariable <String>] [-WarningVariable <String>] [-Out
                      Variable <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Write-EventLog
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Management
Module              : 
Parameters          : {[LogName, System.Management.Automation.ParameterMetadata
                      ], [Source, System.Management.Automation.ParameterMetadat
                      a], [EntryType, System.Management.Automation.ParameterMet
                      adata], [Category, System.Management.Automation.Parameter
                      Metadata]...}
ParameterSets       : {[-LogName] <String> [-Source] <String> [-EventId] <Int32
                      > [[-EntryType] <EventLogEntryType>] [-Message] <String> 
                      [-Category <Int16>] [-RawData <Byte[]>] [-ComputerName <S
                      tring>] [-Verbose] [-Debug] [-ErrorAction <ActionPreferen
                      ce>] [-WarningAction <ActionPreference>] [-ErrorVariable 
                      <String>] [-WarningVariable <String>] [-OutVariable <Stri
                      ng>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=135281
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe
                      ll.Commands.Management.dll


Verb                : Write
Noun                : Host
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.WriteHostCommand
Definition          : Write-Host [[-Object] <Object>] [-NoNewline] [-Separator 
                      <Object>] [-ForegroundColor <ConsoleColor>] [-BackgroundC
                      olor <ConsoleColor>] [-Verbose] [-Debug] [-ErrorAction <A
                      ctionPreference>] [-WarningAction <ActionPreference>] [-E
                      rrorVariable <String>] [-WarningVariable <String>] [-OutV
                      ariable <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Write-Host
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[Object, System.Management.Automation.ParameterMetadata]
                      , [NoNewline, System.Management.Automation.ParameterMetad
                      ata], [Separator, System.Management.Automation.ParameterM
                      etadata], [ForegroundColor, System.Management.Automation.
                      ParameterMetadata]...}
ParameterSets       : {[[-Object] <Object>] [-NoNewline] [-Separator <Object>] 
                      [-ForegroundColor <ConsoleColor>] [-BackgroundColor <Cons
                      oleColor>] [-Verbose] [-Debug] [-ErrorAction <ActionPrefe
                      rence>] [-WarningAction <ActionPreference>] [-ErrorVariab
                      le <String>] [-WarningVariable <String>] [-OutVariable <S
                      tring>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113426
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : Write
Noun                : Output
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.WriteOutputCommand
Definition          : Write-Output [-InputObject] <PSObject[]> [-Verbose] [-Deb
                      ug] [-ErrorAction <ActionPreference>] [-WarningAction <Ac
                      tionPreference>] [-ErrorVariable <String>] [-WarningVaria
                      ble <String>] [-OutVariable <String>] [-OutBuffer <Int32>
                      ]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Write-Output
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[InputObject, System.Management.Automation.ParameterMeta
                      data], [Verbose, System.Management.Automation.ParameterMe
                      tadata], [Debug, System.Management.Automation.ParameterMe
                      tadata], [ErrorAction, System.Management.Automation.Param
                      eterMetadata]...}
ParameterSets       : {[-InputObject] <PSObject[]> [-Verbose] [-Debug] [-ErrorA
                      ction <ActionPreference>] [-WarningAction <ActionPreferen
                      ce>] [-ErrorVariable <String>] [-WarningVariable <String>
                      ] [-OutVariable <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113427
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : Write
Noun                : Progress
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.WriteProgressCommand
Definition          : Write-Progress [-Activity] <String> [-Status] <String> [[
                      -Id] <Int32>] [-PercentComplete <Int32>] [-SecondsRemaini
                      ng <Int32>] [-CurrentOperation <String>] [-ParentId <Int3
                      2>] [-Completed] [-SourceId <Int32>] [-Verbose] [-Debug] 
                      [-ErrorAction <ActionPreference>] [-WarningAction <Action
                      Preference>] [-ErrorVariable <String>] [-WarningVariable 
                      <String>] [-OutVariable <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Write-Progress
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[Activity, System.Management.Automation.ParameterMetadat
                      a], [Status, System.Management.Automation.ParameterMetada
                      ta], [Id, System.Management.Automation.ParameterMetadata]
                      , [PercentComplete, System.Management.Automation.Paramete
                      rMetadata]...}
ParameterSets       : {[-Activity] <String> [-Status] <String> [[-Id] <Int32>] 
                      [-PercentComplete <Int32>] [-SecondsRemaining <Int32>] [-
                      CurrentOperation <String>] [-ParentId <Int32>] [-Complete
                      d] [-SourceId <Int32>] [-Verbose] [-Debug] [-ErrorAction 
                      <ActionPreference>] [-WarningAction <ActionPreference>] [
                      -ErrorVariable <String>] [-WarningVariable <String>] [-Ou
                      tVariable <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113428
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : Write
Noun                : Verbose
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.WriteVerboseCommand
Definition          : Write-Verbose [-Message] <String> [-Verbose] [-Debug] [-E
                      rrorAction <ActionPreference>] [-WarningAction <ActionPre
                      ference>] [-ErrorVariable <String>] [-WarningVariable <St
                      ring>] [-OutVariable <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Write-Verbose
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[Message, System.Management.Automation.ParameterMetadata
                      ], [Verbose, System.Management.Automation.ParameterMetada
                      ta], [Debug, System.Management.Automation.ParameterMetada
                      ta], [ErrorAction, System.Management.Automation.Parameter
                      Metadata]...}
ParameterSets       : {[-Message] <String> [-Verbose] [-Debug] [-ErrorAction <A
                      ctionPreference>] [-WarningAction <ActionPreference>] [-E
                      rrorVariable <String>] [-WarningVariable <String>] [-OutV
                      ariable <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113429
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


Verb                : Write
Noun                : Warning
HelpFile            : Microsoft.PowerShell.Commands.Utility.dll-Help.xml
PSSnapIn            : Microsoft.PowerShell.Utility
ImplementingType    : Microsoft.PowerShell.Commands.WriteWarningCommand
Definition          : Write-Warning [-Message] <String> [-Verbose] [-Debug] [-E
                      rrorAction <ActionPreference>] [-WarningAction <ActionPre
                      ference>] [-ErrorVariable <String>] [-WarningVariable <St
                      ring>] [-OutVariable <String>] [-OutBuffer <Int32>]
                      
DefaultParameterSet : 
OutputType          : {}
Name                : Write-Warning
CommandType         : Cmdlet
Visibility          : Public
ModuleName          : Microsoft.PowerShell.Utility
Module              : 
Parameters          : {[Message, System.Management.Automation.ParameterMetadata
                      ], [Verbose, System.Management.Automation.ParameterMetada
                      ta], [Debug, System.Management.Automation.ParameterMetada
                      ta], [ErrorAction, System.Management.Automation.Parameter
                      Metadata]...}
ParameterSets       : {[-Message] <String> [-Verbose] [-Debug] [-ErrorAction <A
                      ctionPreference>] [-WarningAction <ActionPreference>] [-E
                      rrorVariable <String>] [-WarningVariable <String>] [-OutV
                      ariable <String>] [-OutBuffer <Int32>]}
HelpUri             : http://go.microsoft.com/fwlink/?LinkID=113430
DLL                 : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command
                      s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.
                      Commands.Utility.dll


ScriptBlock         : Set-Location X:
CmdletBinding       : False
DefaultParameterSet : 
Definition          : Set-Location X:
Options             : None
Description         : 
OutputType          : {}
Name                : X:
CommandType         : Function
Visibility          : Public
ModuleName          : 
Module              : 
Parameters          : {}
ParameterSets       : {}
HelpUri             : 


ScriptBlock         : Set-Location Y:
CmdletBinding       : False
DefaultParameterSet : 
Definition          : Set-Location Y:
Options             : None
Description         : 
OutputType          : {}
Name                : Y:
CommandType         : Function
Visibility          : Public
ModuleName          : 
Module              : 
Parameters          : {}
ParameterSets       : {}
HelpUri             : 


ScriptBlock         : Set-Location Z:
CmdletBinding       : False
DefaultParameterSet : 
Definition          : Set-Location Z:
Options             : None
Description         : 
OutputType          : {}
Name                : Z:
CommandType         : Function
Visibility          : Public
ModuleName          : 
Module              : 
Parameters          : {}
ParameterSets       : {}
HelpUri             : 






