private knowhow
Revision | 7c269850c02b145f6a599d411f936f004558241d (tree) |
---|---|
Zeit | 2014-02-11 12:12:43 |
Autor | oga <hyperoga@gmai...> |
Commiter | oga |
add knowhow
@@ -5,6 +5,7 @@ Power Shell | ||
5 | 5 | (2)*.ps1の実行を許可する |
6 | 6 | PS > Set-ExecutionPolicy RemoteSigned |
7 | 7 | (PowerShellを管理者モードで実行すること) |
8 | +(3)パイプはテキストではなく、オブジェクト渡しになる | |
8 | 9 | |
9 | 10 | 実行ポリシー 概要 |
10 | 11 | --------------------------------------------------- |
@@ -14,7 +15,7 @@ RemoteSigned | ||
14 | 15 | Unrestricted すべてのスクリプト実行を許可(ただしインターネット経由でダウンロードしたコードは実行確認のみあり) |
15 | 16 | |
16 | 17 | (3)予約変数 |
17 | -$_ :(パイプライン経由で渡されたオブジェクト) | |
18 | + $_ :(パイプライン経由で渡されたオブジェクト) | |
18 | 19 | |
19 | 20 | 関数に渡された名前なし引数は自動変数$Args(配列)に登録されるので、 |
20 | 21 | あとは「$Args[0]」のように指定することで、与えられた引数値にアクセス |
@@ -121,6 +122,34 @@ PS > Write-Output " | ||
121 | 122 | PS > Write-Output '私の名前は $name です。' |
122 | 123 | 私の名前は $name です。 |
123 | 124 | |
125 | +#dirの結果を、ディレクトリ名とファイル名を|で区切って表示する例 | |
126 | +dir | ForEach-Object{ '{0} | {1}' -f $_.directory , $_.name } | |
127 | + | |
128 | +フォーマット出力 | |
129 | +{0} 特定の要素を表示する '{0} {1}' -f 10, 20 10 20 | |
130 | +{0:x} 数値を16進数で表示する(xが小文字なら出力も小文字、大文字なら出力も大文字となる) | |
131 | + '0x{0:x}' -f 10 0xa | |
132 | +{0:dn} 10進数を左揃えで表示し、0でパディングする '{0:d5}' -f 4 00004 | |
133 | +{0:p} 数値をパーセントで表示する '{0:p}' -f 0.543 54.30% | |
134 | +{0:c} 数値を通貨で表示する '{0:c}' -f 100 \100 | |
135 | +{0,n} フィールド幅nで表示し、右揃えにする '|{0,5}|' -f 20 | 20| | |
136 | +{0,-n} フィールド幅nで表示し、左揃えにする '|{0,-5}|' -f 20|20 | | |
137 | + | |
138 | +{0:hh} DateTime値から時間と分と秒を表示する '{0:hh}:{0:mm}:{0:ss}' -f (get-date)→08:24:12 | |
139 | +{0:mm} | |
140 | +{0:ss} | |
141 | + | |
142 | +(5)-2 標準入力 | |
143 | +PS C:\> $user = read-host EnterUserName | |
144 | +EnterUserName: newpops | |
145 | + | |
146 | +PS C:\> $password = read-host EnterPassword -AsSecureString | |
147 | +EnterPassword: ******* <= *で隠される | |
148 | +PS C:\> $password | |
149 | +System.Security.SecureString <= 表示できない | |
150 | + | |
151 | + | |
152 | + | |
124 | 153 | (6)エスケープシーケンス |
125 | 154 | エスケープ文字は\ではなく`(バッククォート) |
126 | 155 |
@@ -319,13 +348,49 @@ function | ||
319 | 348 | (注)[Int32]でキャストしないと文字列が複数回羅列されるので注意 |
320 | 349 | |
321 | 350 | |
351 | +{ | |
322 | 352 | 3. コマンド |
323 | -(1)grep | |
324 | - Select-String | |
353 | +(1)Help | |
354 | + Get-Help Format-List | |
355 | + Get-Help Format-List -full | |
356 | + Get-Help Format-List -examples | |
357 | + | |
358 | +(2)コマンドレットの一覧 | |
359 | + Get-Command | fl | |
360 | + | |
361 | +(3)Alias | |
362 | + % : ForEach-Object (xargs?) | |
363 | + ? : Where-Object (grep) | |
364 | + | |
365 | +(3)ファイル一覧のファイル名をgrep | |
366 | + PS> ls | % { echo $_.BaseName } | ? { $_ -match "aba" } | |
367 | + | |
368 | +(4)Get-ChildItem / gci / ls | |
369 | + | |
370 | +(5)grep (Select-String) | |
325 | 371 | |
326 | 372 | grep して wc -l |
327 | 373 | (ipconfig | Select-String IPv4).Length |
328 | 374 | |
375 | + ls | Select-String <key> ... ls | xargs grep <key> | |
376 | + cat x.txt |Select-String <key> ... grep <key> x.txt | |
377 | + | |
378 | + | |
379 | +(6)Format-List / fl | |
380 | + 各プロパティを表示する。 ... の全情報を見る | |
381 | + get-service | fl | |
382 | + c:\PS> $a = gci $pshome\*.ps1xml | |
383 | + get-process | fl | |
384 | + get-process wdf | fl -property * | |
385 | + | |
386 | +(7)サービス一覧 | |
387 | + get-service | |
388 | + フル表示 | |
389 | + get-service | fl | |
390 | + | |
391 | +(8)ls |grep xxx | |
392 | + PS> ls | % { echo $_.BaseName } | ? { $_ -match "xxx" } | |
393 | + | |
329 | 394 | { |
330 | 395 | 4. .NET Frameworkクラス・ライブラリの利用方法 |
331 | 396 | .NET Frameworkが提供するクラスをインスタンス化して、 |
@@ -374,6 +439,13520 @@ $smtp.Send($mail) | ||
374 | 439 | |
375 | 440 | |
376 | 441 | |
442 | +{ | |
443 | +10. Alias | |
444 | + | |
445 | +CommandType Name Definition | |
446 | +----------- ---- ---------- | |
447 | +Alias % ForEach-Object | |
448 | +Alias ? Where-Object | |
449 | +Alias ac Add-Content | |
450 | +Alias asnp Add-PSSnapIn | |
451 | +Alias cat Get-Content | |
452 | +Alias cd Set-Location | |
453 | +Alias chdir Set-Location | |
454 | +Alias clc Clear-Content | |
455 | +Alias clear Clear-Host | |
456 | +Alias clhy Clear-History | |
457 | +Alias cli Clear-Item | |
458 | +Alias clp Clear-ItemProperty | |
459 | +Alias cls Clear-Host | |
460 | +Alias clv Clear-Variable | |
461 | +Alias compare Compare-Object | |
462 | +Alias copy Copy-Item | |
463 | +Alias cp Copy-Item | |
464 | +Alias cpi Copy-Item | |
465 | +Alias cpp Copy-ItemProperty | |
466 | +Alias cvpa Convert-Path | |
467 | +Alias dbp Disable-PSBreakpoint | |
468 | +Alias del Remove-Item | |
469 | +Alias diff Compare-Object | |
470 | +Alias dir Get-ChildItem | |
471 | +Alias ebp Enable-PSBreakpoint | |
472 | +Alias echo Write-Output | |
473 | +Alias epal Export-Alias | |
474 | +Alias epcsv Export-Csv | |
475 | +Alias epsn Export-PSSession | |
476 | +Alias erase Remove-Item | |
477 | +Alias etsn Enter-PSSession | |
478 | +Alias exsn Exit-PSSession | |
479 | +Alias fc Format-Custom | |
480 | +Alias fl Format-List | |
481 | +Alias foreach ForEach-Object | |
482 | +Alias ft Format-Table | |
483 | +Alias fw Format-Wide | |
484 | +Alias gal Get-Alias | |
485 | +Alias gbp Get-PSBreakpoint | |
486 | +Alias gc Get-Content | |
487 | +Alias gci Get-ChildItem | |
488 | +Alias gcm Get-Command | |
489 | +Alias gcs Get-PSCallStack | |
490 | +Alias gdr Get-PSDrive | |
491 | +Alias ghy Get-History | |
492 | +Alias gi Get-Item | |
493 | +Alias gjb Get-Job | |
494 | +Alias gl Get-Location | |
495 | +Alias gm Get-Member | |
496 | +Alias gmo Get-Module | |
497 | +Alias gp Get-ItemProperty | |
498 | +Alias gps Get-Process | |
499 | +Alias group Group-Object | |
500 | +Alias gsn Get-PSSession | |
501 | +Alias gsnp Get-PSSnapIn | |
502 | +Alias gsv Get-Service | |
503 | +Alias gu Get-Unique | |
504 | +Alias gv Get-Variable | |
505 | +Alias gwmi Get-WmiObject | |
506 | +Alias h Get-History | |
507 | +Alias history Get-History | |
508 | +Alias icm Invoke-Command | |
509 | +Alias iex Invoke-Expression | |
510 | +Alias ihy Invoke-History | |
511 | +Alias ii Invoke-Item | |
512 | +Alias ipal Import-Alias | |
513 | +Alias ipcsv Import-Csv | |
514 | +Alias ipmo Import-Module | |
515 | +Alias ipsn Import-PSSession | |
516 | +Alias ise powershell_ise.exe | |
517 | +Alias iwmi Invoke-WMIMethod | |
518 | +Alias kill Stop-Process | |
519 | +Alias lp Out-Printer | |
520 | +Alias ls Get-ChildItem | |
521 | +Alias man help | |
522 | +Alias md mkdir | |
523 | +Alias measure Measure-Object | |
524 | +Alias mi Move-Item | |
525 | +Alias mount New-PSDrive | |
526 | +Alias move Move-Item | |
527 | +Alias mp Move-ItemProperty | |
528 | +Alias mv Move-Item | |
529 | +Alias nal New-Alias | |
530 | +Alias ndr New-PSDrive | |
531 | +Alias ni New-Item | |
532 | +Alias nmo New-Module | |
533 | +Alias nsn New-PSSession | |
534 | +Alias nv New-Variable | |
535 | +Alias ogv Out-GridView | |
536 | +Alias oh Out-Host | |
537 | +Alias popd Pop-Location | |
538 | +Alias ps Get-Process | |
539 | +Alias pushd Push-Location | |
540 | +Alias pwd Get-Location | |
541 | +Alias r Invoke-History | |
542 | +Alias rbp Remove-PSBreakpoint | |
543 | +Alias rcjb Receive-Job | |
544 | +Alias rd Remove-Item | |
545 | +Alias rdr Remove-PSDrive | |
546 | +Alias ren Rename-Item | |
547 | +Alias ri Remove-Item | |
548 | +Alias rjb Remove-Job | |
549 | +Alias rm Remove-Item | |
550 | +Alias rmdir Remove-Item | |
551 | +Alias rmo Remove-Module | |
552 | +Alias rni Rename-Item | |
553 | +Alias rnp Rename-ItemProperty | |
554 | +Alias rp Remove-ItemProperty | |
555 | +Alias rsn Remove-PSSession | |
556 | +Alias rsnp Remove-PSSnapin | |
557 | +Alias rv Remove-Variable | |
558 | +Alias rvpa Resolve-Path | |
559 | +Alias rwmi Remove-WMIObject | |
560 | +Alias sajb Start-Job | |
561 | +Alias sal Set-Alias | |
562 | +Alias saps Start-Process | |
563 | +Alias sasv Start-Service | |
564 | +Alias sbp Set-PSBreakpoint | |
565 | +Alias sc Set-Content | |
566 | +Alias select Select-Object | |
567 | +Alias set Set-Variable | |
568 | +Alias si Set-Item | |
569 | +Alias sl Set-Location | |
570 | +Alias sleep Start-Sleep | |
571 | +Alias sort Sort-Object | |
572 | +Alias sp Set-ItemProperty | |
573 | +Alias spjb Stop-Job | |
574 | +Alias spps Stop-Process | |
575 | +Alias spsv Stop-Service | |
576 | +Alias start Start-Process | |
577 | +Alias sv Set-Variable | |
578 | +Alias swmi Set-WMIInstance | |
579 | +Alias tee Tee-Object | |
580 | +Alias type Get-Content | |
581 | +Alias where Where-Object | |
582 | +Alias wjb Wait-Job | |
583 | +Alias write Write-Output | |
584 | + | |
585 | +{ | |
586 | +11. コマンド一覧 (Get-Command) | |
587 | + | |
588 | + | |
589 | +Name : % | |
590 | +CommandType : Alias | |
591 | +Definition : ForEach-Object | |
592 | +ReferencedCommand : ForEach-Object | |
593 | +ResolvedCommand : ForEach-Object | |
594 | + | |
595 | +Name : ? | |
596 | +CommandType : Alias | |
597 | +Definition : Where-Object | |
598 | +ReferencedCommand : Where-Object | |
599 | +ResolvedCommand : Where-Object | |
600 | + | |
601 | + | |
602 | +ScriptBlock : Set-Location A: | |
603 | +CmdletBinding : False | |
604 | +DefaultParameterSet : | |
605 | +Definition : Set-Location A: | |
606 | +Options : None | |
607 | +Description : | |
608 | +OutputType : {} | |
609 | +Name : A: | |
610 | +CommandType : Function | |
611 | +Visibility : Public | |
612 | +ModuleName : | |
613 | +Module : | |
614 | +Parameters : {} | |
615 | +ParameterSets : {} | |
616 | +HelpUri : | |
617 | + | |
618 | +Name : ac | |
619 | +CommandType : Alias | |
620 | +Definition : Add-Content | |
621 | +ReferencedCommand : Add-Content | |
622 | +ResolvedCommand : Add-Content | |
623 | + | |
624 | + | |
625 | +Verb : Add | |
626 | +Noun : Computer | |
627 | +HelpFile : Microsoft.PowerShell.Commands.Management.dll-Help.xml | |
628 | +PSSnapIn : Microsoft.PowerShell.Management | |
629 | +ImplementingType : Microsoft.PowerShell.Commands.AddComputerCommand | |
630 | +Definition : Add-Computer [-DomainName] <String> [-Credential <PSCrede | |
631 | + ntial>] [-OUPath <String>] [-PassThru] [-Server <String>] | |
632 | + [-UnSecure] [-Verbose] [-Debug] [-ErrorAction <ActionPre | |
633 | + ference>] [-WarningAction <ActionPreference>] [-ErrorVari | |
634 | + able <String>] [-WarningVariable <String>] [-OutVariable | |
635 | + <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm] | |
636 | + Add-Computer [-WorkGroupName] <String> [-Credential <PSCr | |
637 | + edential>] [-PassThru] [-Verbose] [-Debug] [-ErrorAction | |
638 | + <ActionPreference>] [-WarningAction <ActionPreference>] [ | |
639 | + -ErrorVariable <String>] [-WarningVariable <String>] [-Ou | |
640 | + tVariable <String>] [-OutBuffer <Int32>] [-WhatIf] [-Conf | |
641 | + irm] | |
642 | + | |
643 | +DefaultParameterSet : Domain | |
644 | +OutputType : {} | |
645 | +Name : Add-Computer | |
646 | +CommandType : Cmdlet | |
647 | +Visibility : Public | |
648 | +ModuleName : Microsoft.PowerShell.Management | |
649 | +Module : | |
650 | +Parameters : {[Credential, System.Management.Automation.ParameterMetad | |
651 | + ata], [DomainName, System.Management.Automation.Parameter | |
652 | + Metadata], [OUPath, System.Management.Automation.Paramete | |
653 | + rMetadata], [PassThru, System.Management.Automation.Param | |
654 | + eterMetadata]...} | |
655 | +ParameterSets : {[-DomainName] <String> [-Credential <PSCredential>] [-OU | |
656 | + Path <String>] [-PassThru] [-Server <String>] [-UnSecure] | |
657 | + [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [- | |
658 | + WarningAction <ActionPreference>] [-ErrorVariable <String | |
659 | + >] [-WarningVariable <String>] [-OutVariable <String>] [- | |
660 | + OutBuffer <Int32>] [-WhatIf] [-Confirm], [-WorkGroupName] | |
661 | + <String> [-Credential <PSCredential>] [-PassThru] [-Verb | |
662 | + ose] [-Debug] [-ErrorAction <ActionPreference>] [-Warning | |
663 | + Action <ActionPreference>] [-ErrorVariable <String>] [-Wa | |
664 | + rningVariable <String>] [-OutVariable <String>] [-OutBuff | |
665 | + er <Int32>] [-WhatIf] [-Confirm]} | |
666 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=135194 | |
667 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
668 | + s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe | |
669 | + ll.Commands.Management.dll | |
670 | + | |
671 | + | |
672 | +Verb : Add | |
673 | +Noun : Content | |
674 | +HelpFile : Microsoft.PowerShell.Commands.Management.dll-Help.xml | |
675 | +PSSnapIn : Microsoft.PowerShell.Management | |
676 | +ImplementingType : Microsoft.PowerShell.Commands.AddContentCommand | |
677 | +Definition : Add-Content [-Path] <String[]> [-Value] <Object[]> [-Pass | |
678 | + Thru] [-Filter <String>] [-Include <String[]>] [-Exclude | |
679 | + <String[]>] [-Force] [-Credential <PSCredential>] [-Verbo | |
680 | + se] [-Debug] [-ErrorAction <ActionPreference>] [-WarningA | |
681 | + ction <ActionPreference>] [-ErrorVariable <String>] [-War | |
682 | + ningVariable <String>] [-OutVariable <String>] [-OutBuffe | |
683 | + r <Int32>] [-WhatIf] [-Confirm] [-UseTransaction] [-Encod | |
684 | + ing <FileSystemCmdletProviderEncoding>] | |
685 | + Add-Content [-LiteralPath] <String[]> [-Value] <Object[]> | |
686 | + [-PassThru] [-Filter <String>] [-Include <String[]>] [-E | |
687 | + xclude <String[]>] [-Force] [-Credential <PSCredential>] | |
688 | + [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-W | |
689 | + arningAction <ActionPreference>] [-ErrorVariable <String> | |
690 | + ] [-WarningVariable <String>] [-OutVariable <String>] [-O | |
691 | + utBuffer <Int32>] [-WhatIf] [-Confirm] [-UseTransaction] | |
692 | + [-Encoding <FileSystemCmdletProviderEncoding>] | |
693 | + | |
694 | +DefaultParameterSet : Path | |
695 | +OutputType : {} | |
696 | +Name : Add-Content | |
697 | +CommandType : Cmdlet | |
698 | +Visibility : Public | |
699 | +ModuleName : Microsoft.PowerShell.Management | |
700 | +Module : | |
701 | +Parameters : {[Value, System.Management.Automation.ParameterMetadata], | |
702 | + [PassThru, System.Management.Automation.ParameterMetadat | |
703 | + a], [Path, System.Management.Automation.ParameterMetadata | |
704 | + ], [LiteralPath, System.Management.Automation.ParameterMe | |
705 | + tadata]...} | |
706 | +ParameterSets : {[-Path] <String[]> [-Value] <Object[]> [-PassThru] [-Fil | |
707 | + ter <String>] [-Include <String[]>] [-Exclude <String[]>] | |
708 | + [-Force] [-Credential <PSCredential>] [-Verbose] [-Debug | |
709 | + ] [-ErrorAction <ActionPreference>] [-WarningAction <Acti | |
710 | + onPreference>] [-ErrorVariable <String>] [-WarningVariabl | |
711 | + e <String>] [-OutVariable <String>] [-OutBuffer <Int32>] | |
712 | + [-WhatIf] [-Confirm] [-UseTransaction] [-Encoding <FileSy | |
713 | + stemCmdletProviderEncoding>], [-LiteralPath] <String[]> [ | |
714 | + -Value] <Object[]> [-PassThru] [-Filter <String>] [-Inclu | |
715 | + de <String[]>] [-Exclude <String[]>] [-Force] [-Credentia | |
716 | + l <PSCredential>] [-Verbose] [-Debug] [-ErrorAction <Acti | |
717 | + onPreference>] [-WarningAction <ActionPreference>] [-Erro | |
718 | + rVariable <String>] [-WarningVariable <String>] [-OutVari | |
719 | + able <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm] | |
720 | + [-UseTransaction] [-Encoding <FileSystemCmdletProviderEnc | |
721 | + oding>]} | |
722 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113278 | |
723 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
724 | + s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe | |
725 | + ll.Commands.Management.dll | |
726 | + | |
727 | + | |
728 | +Verb : Add | |
729 | +Noun : History | |
730 | +HelpFile : System.Management.Automation.dll-Help.xml | |
731 | +PSSnapIn : Microsoft.PowerShell.Core | |
732 | +ImplementingType : Microsoft.PowerShell.Commands.AddHistoryCommand | |
733 | +Definition : Add-History [[-InputObject] <PSObject[]>] [-Passthru] [-V | |
734 | + erbose] [-Debug] [-ErrorAction <ActionPreference>] [-Warn | |
735 | + ingAction <ActionPreference>] [-ErrorVariable <String>] [ | |
736 | + -WarningVariable <String>] [-OutVariable <String>] [-OutB | |
737 | + uffer <Int32>] | |
738 | + | |
739 | +DefaultParameterSet : | |
740 | +OutputType : {} | |
741 | +Name : Add-History | |
742 | +CommandType : Cmdlet | |
743 | +Visibility : Public | |
744 | +ModuleName : Microsoft.PowerShell.Core | |
745 | +Module : | |
746 | +Parameters : {[InputObject, System.Management.Automation.ParameterMeta | |
747 | + data], [Passthru, System.Management.Automation.ParameterM | |
748 | + etadata], [Verbose, System.Management.Automation.Paramete | |
749 | + rMetadata], [Debug, System.Management.Automation.Paramete | |
750 | + rMetadata]...} | |
751 | +ParameterSets : {[[-InputObject] <PSObject[]>] [-Passthru] [-Verbose] [-D | |
752 | + ebug] [-ErrorAction <ActionPreference>] [-WarningAction < | |
753 | + ActionPreference>] [-ErrorVariable <String>] [-WarningVar | |
754 | + iable <String>] [-OutVariable <String>] [-OutBuffer <Int3 | |
755 | + 2>]} | |
756 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113279 | |
757 | +DLL : C:\Windows\assembly\GAC_MSIL\System.Management.Automation | |
758 | + \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d | |
759 | + ll | |
760 | + | |
761 | + | |
762 | +Verb : Add | |
763 | +Noun : Member | |
764 | +HelpFile : Microsoft.PowerShell.Commands.Utility.dll-Help.xml | |
765 | +PSSnapIn : Microsoft.PowerShell.Utility | |
766 | +ImplementingType : Microsoft.PowerShell.Commands.AddMemberCommand | |
767 | +Definition : Add-Member [-MemberType] <PSMemberTypes> [-Name] <String> | |
768 | + [[-Value] <Object>] [[-SecondValue] <Object>] -InputObje | |
769 | + ct <PSObject> [-Force] [-PassThru] [-Verbose] [-Debug] [- | |
770 | + ErrorAction <ActionPreference>] [-WarningAction <ActionPr | |
771 | + eference>] [-ErrorVariable <String>] [-WarningVariable <S | |
772 | + tring>] [-OutVariable <String>] [-OutBuffer <Int32>] | |
773 | + | |
774 | +DefaultParameterSet : | |
775 | +OutputType : {} | |
776 | +Name : Add-Member | |
777 | +CommandType : Cmdlet | |
778 | +Visibility : Public | |
779 | +ModuleName : Microsoft.PowerShell.Utility | |
780 | +Module : | |
781 | +Parameters : {[InputObject, System.Management.Automation.ParameterMeta | |
782 | + data], [MemberType, System.Management.Automation.Paramete | |
783 | + rMetadata], [Name, System.Management.Automation.Parameter | |
784 | + Metadata], [Value, System.Management.Automation.Parameter | |
785 | + Metadata]...} | |
786 | +ParameterSets : {[-MemberType] <PSMemberTypes> [-Name] <String> [[-Value] | |
787 | + <Object>] [[-SecondValue] <Object>] -InputObject <PSObje | |
788 | + ct> [-Force] [-PassThru] [-Verbose] [-Debug] [-ErrorActio | |
789 | + n <ActionPreference>] [-WarningAction <ActionPreference>] | |
790 | + [-ErrorVariable <String>] [-WarningVariable <String>] [- | |
791 | + OutVariable <String>] [-OutBuffer <Int32>]} | |
792 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113280 | |
793 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
794 | + s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell. | |
795 | + Commands.Utility.dll | |
796 | + | |
797 | + | |
798 | +Verb : Add | |
799 | +Noun : PSSnapin | |
800 | +HelpFile : System.Management.Automation.dll-Help.xml | |
801 | +PSSnapIn : Microsoft.PowerShell.Core | |
802 | +ImplementingType : Microsoft.PowerShell.Commands.AddPSSnapinCommand | |
803 | +Definition : Add-PSSnapin [-Name] <String[]> [-PassThru] [-Verbose] [- | |
804 | + Debug] [-ErrorAction <ActionPreference>] [-WarningAction | |
805 | + <ActionPreference>] [-ErrorVariable <String>] [-WarningVa | |
806 | + riable <String>] [-OutVariable <String>] [-OutBuffer <Int | |
807 | + 32>] | |
808 | + | |
809 | +DefaultParameterSet : | |
810 | +OutputType : {} | |
811 | +Name : Add-PSSnapin | |
812 | +CommandType : Cmdlet | |
813 | +Visibility : Public | |
814 | +ModuleName : Microsoft.PowerShell.Core | |
815 | +Module : | |
816 | +Parameters : {[Name, System.Management.Automation.ParameterMetadata], | |
817 | + [PassThru, System.Management.Automation.ParameterMetadata | |
818 | + ], [Verbose, System.Management.Automation.ParameterMetada | |
819 | + ta], [Debug, System.Management.Automation.ParameterMetada | |
820 | + ta]...} | |
821 | +ParameterSets : {[-Name] <String[]> [-PassThru] [-Verbose] [-Debug] [-Err | |
822 | + orAction <ActionPreference>] [-WarningAction <ActionPrefe | |
823 | + rence>] [-ErrorVariable <String>] [-WarningVariable <Stri | |
824 | + ng>] [-OutVariable <String>] [-OutBuffer <Int32>]} | |
825 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113281 | |
826 | +DLL : C:\Windows\assembly\GAC_MSIL\System.Management.Automation | |
827 | + \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d | |
828 | + ll | |
829 | + | |
830 | + | |
831 | +Verb : Add | |
832 | +Noun : Type | |
833 | +HelpFile : Microsoft.PowerShell.Commands.Utility.dll-Help.xml | |
834 | +PSSnapIn : Microsoft.PowerShell.Utility | |
835 | +ImplementingType : Microsoft.PowerShell.Commands.AddTypeCommand | |
836 | +Definition : Add-Type [-TypeDefinition] <String> [-Language <Language> | |
837 | + ] [-ReferencedAssemblies <String[]>] [-CodeDomProvider <C | |
838 | + odeDomProvider>] [-CompilerParameters <CompilerParameters | |
839 | + >] [-OutputAssembly <String>] [-OutputType <OutputAssembl | |
840 | + yType>] [-PassThru] [-IgnoreWarnings] [-Verbose] [-Debug] | |
841 | + [-ErrorAction <ActionPreference>] [-WarningAction <Actio | |
842 | + nPreference>] [-ErrorVariable <String>] [-WarningVariable | |
843 | + <String>] [-OutVariable <String>] [-OutBuffer <Int32>] | |
844 | + Add-Type [-Name] <String> [-MemberDefinition] <String[]> | |
845 | + [-Namespace <String>] [-UsingNamespace <String[]>] [-Lang | |
846 | + uage <Language>] [-ReferencedAssemblies <String[]>] [-Cod | |
847 | + eDomProvider <CodeDomProvider>] [-CompilerParameters <Com | |
848 | + pilerParameters>] [-OutputAssembly <String>] [-OutputType | |
849 | + <OutputAssemblyType>] [-PassThru] [-IgnoreWarnings] [-Ve | |
850 | + rbose] [-Debug] [-ErrorAction <ActionPreference>] [-Warni | |
851 | + ngAction <ActionPreference>] [-ErrorVariable <String>] [- | |
852 | + WarningVariable <String>] [-OutVariable <String>] [-OutBu | |
853 | + ffer <Int32>] | |
854 | + Add-Type [-Path] <String[]> [-ReferencedAssemblies <Strin | |
855 | + g[]>] [-CompilerParameters <CompilerParameters>] [-Output | |
856 | + Assembly <String>] [-OutputType <OutputAssemblyType>] [-P | |
857 | + assThru] [-IgnoreWarnings] [-Verbose] [-Debug] [-ErrorAct | |
858 | + ion <ActionPreference>] [-WarningAction <ActionPreference | |
859 | + >] [-ErrorVariable <String>] [-WarningVariable <String>] | |
860 | + [-OutVariable <String>] [-OutBuffer <Int32>] | |
861 | + Add-Type -AssemblyName <String[]> [-PassThru] [-IgnoreWar | |
862 | + nings] [-Verbose] [-Debug] [-ErrorAction <ActionPreferenc | |
863 | + e>] [-WarningAction <ActionPreference>] [-ErrorVariable < | |
864 | + String>] [-WarningVariable <String>] [-OutVariable <Strin | |
865 | + g>] [-OutBuffer <Int32>] | |
866 | + | |
867 | +DefaultParameterSet : FromSource | |
868 | +OutputType : {} | |
869 | +Name : Add-Type | |
870 | +CommandType : Cmdlet | |
871 | +Visibility : Public | |
872 | +ModuleName : Microsoft.PowerShell.Utility | |
873 | +Module : | |
874 | +Parameters : {[TypeDefinition, System.Management.Automation.ParameterM | |
875 | + etadata], [Name, System.Management.Automation.ParameterMe | |
876 | + tadata], [MemberDefinition, System.Management.Automation. | |
877 | + ParameterMetadata], [Namespace, System.Management.Automat | |
878 | + ion.ParameterMetadata]...} | |
879 | +ParameterSets : {[-TypeDefinition] <String> [-Language <Language>] [-Refe | |
880 | + rencedAssemblies <String[]>] [-CodeDomProvider <CodeDomPr | |
881 | + ovider>] [-CompilerParameters <CompilerParameters>] [-Out | |
882 | + putAssembly <String>] [-OutputType <OutputAssemblyType>] | |
883 | + [-PassThru] [-IgnoreWarnings] [-Verbose] [-Debug] [-Error | |
884 | + Action <ActionPreference>] [-WarningAction <ActionPrefere | |
885 | + nce>] [-ErrorVariable <String>] [-WarningVariable <String | |
886 | + >] [-OutVariable <String>] [-OutBuffer <Int32>], [-Name] | |
887 | + <String> [-MemberDefinition] <String[]> [-Namespace <Stri | |
888 | + ng>] [-UsingNamespace <String[]>] [-Language <Language>] | |
889 | + [-ReferencedAssemblies <String[]>] [-CodeDomProvider <Cod | |
890 | + eDomProvider>] [-CompilerParameters <CompilerParameters>] | |
891 | + [-OutputAssembly <String>] [-OutputType <OutputAssemblyT | |
892 | + ype>] [-PassThru] [-IgnoreWarnings] [-Verbose] [-Debug] [ | |
893 | + -ErrorAction <ActionPreference>] [-WarningAction <ActionP | |
894 | + reference>] [-ErrorVariable <String>] [-WarningVariable < | |
895 | + String>] [-OutVariable <String>] [-OutBuffer <Int32>], [- | |
896 | + Path] <String[]> [-ReferencedAssemblies <String[]>] [-Com | |
897 | + pilerParameters <CompilerParameters>] [-OutputAssembly <S | |
898 | + tring>] [-OutputType <OutputAssemblyType>] [-PassThru] [- | |
899 | + IgnoreWarnings] [-Verbose] [-Debug] [-ErrorAction <Action | |
900 | + Preference>] [-WarningAction <ActionPreference>] [-ErrorV | |
901 | + ariable <String>] [-WarningVariable <String>] [-OutVariab | |
902 | + le <String>] [-OutBuffer <Int32>], -AssemblyName <String[ | |
903 | + ]> [-PassThru] [-IgnoreWarnings] [-Verbose] [-Debug] [-Er | |
904 | + rorAction <ActionPreference>] [-WarningAction <ActionPref | |
905 | + erence>] [-ErrorVariable <String>] [-WarningVariable <Str | |
906 | + ing>] [-OutVariable <String>] [-OutBuffer <Int32>]} | |
907 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=135195 | |
908 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
909 | + s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell. | |
910 | + Commands.Utility.dll | |
911 | + | |
912 | +Name : asnp | |
913 | +CommandType : Alias | |
914 | +Definition : Add-PSSnapIn | |
915 | +ReferencedCommand : Add-PSSnapin | |
916 | +ResolvedCommand : Add-PSSnapin | |
917 | + | |
918 | + | |
919 | +ScriptBlock : Set-Location B: | |
920 | +CmdletBinding : False | |
921 | +DefaultParameterSet : | |
922 | +Definition : Set-Location B: | |
923 | +Options : None | |
924 | +Description : | |
925 | +OutputType : {} | |
926 | +Name : B: | |
927 | +CommandType : Function | |
928 | +Visibility : Public | |
929 | +ModuleName : | |
930 | +Module : | |
931 | +Parameters : {} | |
932 | +ParameterSets : {} | |
933 | +HelpUri : | |
934 | + | |
935 | + | |
936 | +ScriptBlock : Set-Location C: | |
937 | +CmdletBinding : False | |
938 | +DefaultParameterSet : | |
939 | +Definition : Set-Location C: | |
940 | +Options : None | |
941 | +Description : | |
942 | +OutputType : {} | |
943 | +Name : C: | |
944 | +CommandType : Function | |
945 | +Visibility : Public | |
946 | +ModuleName : | |
947 | +Module : | |
948 | +Parameters : {} | |
949 | +ParameterSets : {} | |
950 | +HelpUri : | |
951 | + | |
952 | +Name : cat | |
953 | +CommandType : Alias | |
954 | +Definition : Get-Content | |
955 | +ReferencedCommand : Get-Content | |
956 | +ResolvedCommand : Get-Content | |
957 | + | |
958 | +Name : cd | |
959 | +CommandType : Alias | |
960 | +Definition : Set-Location | |
961 | +ReferencedCommand : Set-Location | |
962 | +ResolvedCommand : Set-Location | |
963 | + | |
964 | + | |
965 | +ScriptBlock : Set-Location .. | |
966 | +CmdletBinding : False | |
967 | +DefaultParameterSet : | |
968 | +Definition : Set-Location .. | |
969 | +Options : None | |
970 | +Description : | |
971 | +OutputType : {} | |
972 | +Name : cd.. | |
973 | +CommandType : Function | |
974 | +Visibility : Public | |
975 | +ModuleName : | |
976 | +Module : | |
977 | +Parameters : {} | |
978 | +ParameterSets : {} | |
979 | +HelpUri : | |
980 | + | |
981 | + | |
982 | +ScriptBlock : Set-Location \ | |
983 | +CmdletBinding : False | |
984 | +DefaultParameterSet : | |
985 | +Definition : Set-Location \ | |
986 | +Options : None | |
987 | +Description : | |
988 | +OutputType : {} | |
989 | +Name : cd\ | |
990 | +CommandType : Function | |
991 | +Visibility : Public | |
992 | +ModuleName : | |
993 | +Module : | |
994 | +Parameters : {} | |
995 | +ParameterSets : {} | |
996 | +HelpUri : | |
997 | + | |
998 | +Name : chdir | |
999 | +CommandType : Alias | |
1000 | +Definition : Set-Location | |
1001 | +ReferencedCommand : Set-Location | |
1002 | +ResolvedCommand : Set-Location | |
1003 | + | |
1004 | + | |
1005 | +Verb : Checkpoint | |
1006 | +Noun : Computer | |
1007 | +HelpFile : Microsoft.PowerShell.Commands.Management.dll-Help.xml | |
1008 | +PSSnapIn : Microsoft.PowerShell.Management | |
1009 | +ImplementingType : Microsoft.PowerShell.Commands.CheckpointComputerCommand | |
1010 | +Definition : Checkpoint-Computer [-Description] <String> [[-RestorePoi | |
1011 | + ntType] <String>] [-Verbose] [-Debug] [-ErrorAction <Acti | |
1012 | + onPreference>] [-WarningAction <ActionPreference>] [-Erro | |
1013 | + rVariable <String>] [-WarningVariable <String>] [-OutVari | |
1014 | + able <String>] [-OutBuffer <Int32>] | |
1015 | + | |
1016 | +DefaultParameterSet : | |
1017 | +OutputType : {} | |
1018 | +Name : Checkpoint-Computer | |
1019 | +CommandType : Cmdlet | |
1020 | +Visibility : Public | |
1021 | +ModuleName : Microsoft.PowerShell.Management | |
1022 | +Module : | |
1023 | +Parameters : {[Description, System.Management.Automation.ParameterMeta | |
1024 | + data], [RestorePointType, System.Management.Automation.Pa | |
1025 | + rameterMetadata], [Verbose, System.Management.Automation. | |
1026 | + ParameterMetadata], [Debug, System.Management.Automation. | |
1027 | + ParameterMetadata]...} | |
1028 | +ParameterSets : {[-Description] <String> [[-RestorePointType] <String>] [ | |
1029 | + -Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-Wa | |
1030 | + rningAction <ActionPreference>] [-ErrorVariable <String>] | |
1031 | + [-WarningVariable <String>] [-OutVariable <String>] [-Ou | |
1032 | + tBuffer <Int32>]} | |
1033 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=135197 | |
1034 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
1035 | + s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe | |
1036 | + ll.Commands.Management.dll | |
1037 | + | |
1038 | +Name : clc | |
1039 | +CommandType : Alias | |
1040 | +Definition : Clear-Content | |
1041 | +ReferencedCommand : Clear-Content | |
1042 | +ResolvedCommand : Clear-Content | |
1043 | + | |
1044 | +Name : clear | |
1045 | +CommandType : Alias | |
1046 | +Definition : Clear-Host | |
1047 | +ReferencedCommand : Clear-Host | |
1048 | +ResolvedCommand : Clear-Host | |
1049 | + | |
1050 | + | |
1051 | +Verb : Clear | |
1052 | +Noun : Content | |
1053 | +HelpFile : Microsoft.PowerShell.Commands.Management.dll-Help.xml | |
1054 | +PSSnapIn : Microsoft.PowerShell.Management | |
1055 | +ImplementingType : Microsoft.PowerShell.Commands.ClearContentCommand | |
1056 | +Definition : Clear-Content [-Path] <String[]> [-Filter <String>] [-Inc | |
1057 | + lude <String[]>] [-Exclude <String[]>] [-Force] [-Credent | |
1058 | + ial <PSCredential>] [-Verbose] [-Debug] [-ErrorAction <Ac | |
1059 | + tionPreference>] [-WarningAction <ActionPreference>] [-Er | |
1060 | + rorVariable <String>] [-WarningVariable <String>] [-OutVa | |
1061 | + riable <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm | |
1062 | + ] [-UseTransaction] | |
1063 | + Clear-Content [-LiteralPath] <String[]> [-Filter <String> | |
1064 | + ] [-Include <String[]>] [-Exclude <String[]>] [-Force] [- | |
1065 | + Credential <PSCredential>] [-Verbose] [-Debug] [-ErrorAct | |
1066 | + ion <ActionPreference>] [-WarningAction <ActionPreference | |
1067 | + >] [-ErrorVariable <String>] [-WarningVariable <String>] | |
1068 | + [-OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf] [- | |
1069 | + Confirm] [-UseTransaction] | |
1070 | + | |
1071 | +DefaultParameterSet : Path | |
1072 | +OutputType : {} | |
1073 | +Name : Clear-Content | |
1074 | +CommandType : Cmdlet | |
1075 | +Visibility : Public | |
1076 | +ModuleName : Microsoft.PowerShell.Management | |
1077 | +Module : | |
1078 | +Parameters : {[Path, System.Management.Automation.ParameterMetadata], | |
1079 | + [LiteralPath, System.Management.Automation.ParameterMetad | |
1080 | + ata], [Filter, System.Management.Automation.ParameterMeta | |
1081 | + data], [Include, System.Management.Automation.ParameterMe | |
1082 | + tadata]...} | |
1083 | +ParameterSets : {[-Path] <String[]> [-Filter <String>] [-Include <String[ | |
1084 | + ]>] [-Exclude <String[]>] [-Force] [-Credential <PSCreden | |
1085 | + tial>] [-Verbose] [-Debug] [-ErrorAction <ActionPreferenc | |
1086 | + e>] [-WarningAction <ActionPreference>] [-ErrorVariable < | |
1087 | + String>] [-WarningVariable <String>] [-OutVariable <Strin | |
1088 | + g>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm] [-UseTransa | |
1089 | + ction], [-LiteralPath] <String[]> [-Filter <String>] [-In | |
1090 | + clude <String[]>] [-Exclude <String[]>] [-Force] [-Creden | |
1091 | + tial <PSCredential>] [-Verbose] [-Debug] [-ErrorAction <A | |
1092 | + ctionPreference>] [-WarningAction <ActionPreference>] [-E | |
1093 | + rrorVariable <String>] [-WarningVariable <String>] [-OutV | |
1094 | + ariable <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confir | |
1095 | + m] [-UseTransaction]} | |
1096 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113282 | |
1097 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
1098 | + s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe | |
1099 | + ll.Commands.Management.dll | |
1100 | + | |
1101 | + | |
1102 | +Verb : Clear | |
1103 | +Noun : EventLog | |
1104 | +HelpFile : Microsoft.PowerShell.Commands.Management.dll-Help.xml | |
1105 | +PSSnapIn : Microsoft.PowerShell.Management | |
1106 | +ImplementingType : Microsoft.PowerShell.Commands.ClearEventLogCommand | |
1107 | +Definition : Clear-EventLog [-LogName] <String[]> [[-ComputerName] <St | |
1108 | + ring[]>] [-Verbose] [-Debug] [-ErrorAction <ActionPrefere | |
1109 | + nce>] [-WarningAction <ActionPreference>] [-ErrorVariable | |
1110 | + <String>] [-WarningVariable <String>] [-OutVariable <Str | |
1111 | + ing>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm] | |
1112 | + | |
1113 | +DefaultParameterSet : | |
1114 | +OutputType : {} | |
1115 | +Name : Clear-EventLog | |
1116 | +CommandType : Cmdlet | |
1117 | +Visibility : Public | |
1118 | +ModuleName : Microsoft.PowerShell.Management | |
1119 | +Module : | |
1120 | +Parameters : {[LogName, System.Management.Automation.ParameterMetadata | |
1121 | + ], [ComputerName, System.Management.Automation.ParameterM | |
1122 | + etadata], [Verbose, System.Management.Automation.Paramete | |
1123 | + rMetadata], [Debug, System.Management.Automation.Paramete | |
1124 | + rMetadata]...} | |
1125 | +ParameterSets : {[-LogName] <String[]> [[-ComputerName] <String[]>] [-Ver | |
1126 | + bose] [-Debug] [-ErrorAction <ActionPreference>] [-Warnin | |
1127 | + gAction <ActionPreference>] [-ErrorVariable <String>] [-W | |
1128 | + arningVariable <String>] [-OutVariable <String>] [-OutBuf | |
1129 | + fer <Int32>] [-WhatIf] [-Confirm]} | |
1130 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=135198 | |
1131 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
1132 | + s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe | |
1133 | + ll.Commands.Management.dll | |
1134 | + | |
1135 | + | |
1136 | +Verb : Clear | |
1137 | +Noun : History | |
1138 | +HelpFile : System.Management.Automation.dll-Help.xml | |
1139 | +PSSnapIn : Microsoft.PowerShell.Core | |
1140 | +ImplementingType : Microsoft.PowerShell.Commands.ClearHistoryCommand | |
1141 | +Definition : Clear-History [[-Id] <Int32[]>] [[-Count] <Int32>] [-Newe | |
1142 | + st] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] | |
1143 | + [-WarningAction <ActionPreference>] [-ErrorVariable <Str | |
1144 | + ing>] [-WarningVariable <String>] [-OutVariable <String>] | |
1145 | + [-OutBuffer <Int32>] [-WhatIf] [-Confirm] | |
1146 | + Clear-History [[-Count] <Int32>] [-CommandLine <String[]> | |
1147 | + ] [-Newest] [-Verbose] [-Debug] [-ErrorAction <ActionPref | |
1148 | + erence>] [-WarningAction <ActionPreference>] [-ErrorVaria | |
1149 | + ble <String>] [-WarningVariable <String>] [-OutVariable < | |
1150 | + String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm] | |
1151 | + | |
1152 | +DefaultParameterSet : IDParameter | |
1153 | +OutputType : {} | |
1154 | +Name : Clear-History | |
1155 | +CommandType : Cmdlet | |
1156 | +Visibility : Public | |
1157 | +ModuleName : Microsoft.PowerShell.Core | |
1158 | +Module : | |
1159 | +Parameters : {[Id, System.Management.Automation.ParameterMetadata], [C | |
1160 | + ommandLine, System.Management.Automation.ParameterMetadat | |
1161 | + a], [Count, System.Management.Automation.ParameterMetadat | |
1162 | + a], [Newest, System.Management.Automation.ParameterMetada | |
1163 | + ta]...} | |
1164 | +ParameterSets : {[[-Id] <Int32[]>] [[-Count] <Int32>] [-Newest] [-Verbose | |
1165 | + ] [-Debug] [-ErrorAction <ActionPreference>] [-WarningAct | |
1166 | + ion <ActionPreference>] [-ErrorVariable <String>] [-Warni | |
1167 | + ngVariable <String>] [-OutVariable <String>] [-OutBuffer | |
1168 | + <Int32>] [-WhatIf] [-Confirm], [[-Count] <Int32>] [-Comma | |
1169 | + ndLine <String[]>] [-Newest] [-Verbose] [-Debug] [-ErrorA | |
1170 | + ction <ActionPreference>] [-WarningAction <ActionPreferen | |
1171 | + ce>] [-ErrorVariable <String>] [-WarningVariable <String> | |
1172 | + ] [-OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf] | |
1173 | + [-Confirm]} | |
1174 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=135199 | |
1175 | +DLL : C:\Windows\assembly\GAC_MSIL\System.Management.Automation | |
1176 | + \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d | |
1177 | + ll | |
1178 | + | |
1179 | + | |
1180 | +ScriptBlock : $space = New-Object System.Management.Automation.Host.Buf | |
1181 | + ferCell | |
1182 | + $space.Character = ' ' | |
1183 | + $space.ForegroundColor = $host.ui.rawui.ForegroundColor | |
1184 | + $space.BackgroundColor = $host.ui.rawui.BackgroundColor | |
1185 | + $rect = New-Object System.Management.Automation.Host.Rect | |
1186 | + angle | |
1187 | + $rect.Top = $rect.Bottom = $rect.Right = $rect.Left = -1 | |
1188 | + $origin = New-Object System.Management.Automation.Host.Co | |
1189 | + ordinates | |
1190 | + $Host.UI.RawUI.CursorPosition = $origin | |
1191 | + $Host.UI.RawUI.SetBufferContents($rect, $space) | |
1192 | + | |
1193 | +CmdletBinding : False | |
1194 | +DefaultParameterSet : | |
1195 | +Definition : $space = New-Object System.Management.Automation.Host.Buf | |
1196 | + ferCell | |
1197 | + $space.Character = ' ' | |
1198 | + $space.ForegroundColor = $host.ui.rawui.ForegroundColor | |
1199 | + $space.BackgroundColor = $host.ui.rawui.BackgroundColor | |
1200 | + $rect = New-Object System.Management.Automation.Host.Rect | |
1201 | + angle | |
1202 | + $rect.Top = $rect.Bottom = $rect.Right = $rect.Left = -1 | |
1203 | + $origin = New-Object System.Management.Automation.Host.Co | |
1204 | + ordinates | |
1205 | + $Host.UI.RawUI.CursorPosition = $origin | |
1206 | + $Host.UI.RawUI.SetBufferContents($rect, $space) | |
1207 | + | |
1208 | +Options : None | |
1209 | +Description : | |
1210 | +OutputType : {} | |
1211 | +Name : Clear-Host | |
1212 | +CommandType : Function | |
1213 | +Visibility : Public | |
1214 | +ModuleName : | |
1215 | +Module : | |
1216 | +Parameters : {} | |
1217 | +ParameterSets : {} | |
1218 | +HelpUri : | |
1219 | + | |
1220 | + | |
1221 | +Verb : Clear | |
1222 | +Noun : Item | |
1223 | +HelpFile : Microsoft.PowerShell.Commands.Management.dll-Help.xml | |
1224 | +PSSnapIn : Microsoft.PowerShell.Management | |
1225 | +ImplementingType : Microsoft.PowerShell.Commands.ClearItemCommand | |
1226 | +Definition : Clear-Item [-Path] <String[]> [-Force] [-Filter <String>] | |
1227 | + [-Include <String[]>] [-Exclude <String[]>] [-Credential | |
1228 | + <PSCredential>] [-Verbose] [-Debug] [-ErrorAction <Actio | |
1229 | + nPreference>] [-WarningAction <ActionPreference>] [-Error | |
1230 | + Variable <String>] [-WarningVariable <String>] [-OutVaria | |
1231 | + ble <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm] [ | |
1232 | + -UseTransaction] | |
1233 | + Clear-Item [-LiteralPath] <String[]> [-Force] [-Filter <S | |
1234 | + tring>] [-Include <String[]>] [-Exclude <String[]>] [-Cre | |
1235 | + dential <PSCredential>] [-Verbose] [-Debug] [-ErrorAction | |
1236 | + <ActionPreference>] [-WarningAction <ActionPreference>] | |
1237 | + [-ErrorVariable <String>] [-WarningVariable <String>] [-O | |
1238 | + utVariable <String>] [-OutBuffer <Int32>] [-WhatIf] [-Con | |
1239 | + firm] [-UseTransaction] | |
1240 | + | |
1241 | +DefaultParameterSet : Path | |
1242 | +OutputType : {} | |
1243 | +Name : Clear-Item | |
1244 | +CommandType : Cmdlet | |
1245 | +Visibility : Public | |
1246 | +ModuleName : Microsoft.PowerShell.Management | |
1247 | +Module : | |
1248 | +Parameters : {[Path, System.Management.Automation.ParameterMetadata], | |
1249 | + [LiteralPath, System.Management.Automation.ParameterMetad | |
1250 | + ata], [Force, System.Management.Automation.ParameterMetad | |
1251 | + ata], [Filter, System.Management.Automation.ParameterMeta | |
1252 | + data]...} | |
1253 | +ParameterSets : {[-Path] <String[]> [-Force] [-Filter <String>] [-Include | |
1254 | + <String[]>] [-Exclude <String[]>] [-Credential <PSCreden | |
1255 | + tial>] [-Verbose] [-Debug] [-ErrorAction <ActionPreferenc | |
1256 | + e>] [-WarningAction <ActionPreference>] [-ErrorVariable < | |
1257 | + String>] [-WarningVariable <String>] [-OutVariable <Strin | |
1258 | + g>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm] [-UseTransa | |
1259 | + ction], [-LiteralPath] <String[]> [-Force] [-Filter <Stri | |
1260 | + ng>] [-Include <String[]>] [-Exclude <String[]>] [-Creden | |
1261 | + tial <PSCredential>] [-Verbose] [-Debug] [-ErrorAction <A | |
1262 | + ctionPreference>] [-WarningAction <ActionPreference>] [-E | |
1263 | + rrorVariable <String>] [-WarningVariable <String>] [-OutV | |
1264 | + ariable <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confir | |
1265 | + m] [-UseTransaction]} | |
1266 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113283 | |
1267 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
1268 | + s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe | |
1269 | + ll.Commands.Management.dll | |
1270 | + | |
1271 | + | |
1272 | +Verb : Clear | |
1273 | +Noun : ItemProperty | |
1274 | +HelpFile : Microsoft.PowerShell.Commands.Management.dll-Help.xml | |
1275 | +PSSnapIn : Microsoft.PowerShell.Management | |
1276 | +ImplementingType : Microsoft.PowerShell.Commands.ClearItemPropertyCommand | |
1277 | +Definition : Clear-ItemProperty [-Path] <String[]> [-Name] <String> [- | |
1278 | + PassThru] [-Force] [-Filter <String>] [-Include <String[] | |
1279 | + >] [-Exclude <String[]>] [-Credential <PSCredential>] [-V | |
1280 | + erbose] [-Debug] [-ErrorAction <ActionPreference>] [-Warn | |
1281 | + ingAction <ActionPreference>] [-ErrorVariable <String>] [ | |
1282 | + -WarningVariable <String>] [-OutVariable <String>] [-OutB | |
1283 | + uffer <Int32>] [-WhatIf] [-Confirm] [-UseTransaction] | |
1284 | + Clear-ItemProperty [-LiteralPath] <String[]> [-Name] <Str | |
1285 | + ing> [-PassThru] [-Force] [-Filter <String>] [-Include <S | |
1286 | + tring[]>] [-Exclude <String[]>] [-Credential <PSCredentia | |
1287 | + l>] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] | |
1288 | + [-WarningAction <ActionPreference>] [-ErrorVariable <Str | |
1289 | + ing>] [-WarningVariable <String>] [-OutVariable <String>] | |
1290 | + [-OutBuffer <Int32>] [-WhatIf] [-Confirm] [-UseTransacti | |
1291 | + on] | |
1292 | + | |
1293 | +DefaultParameterSet : Path | |
1294 | +OutputType : {} | |
1295 | +Name : Clear-ItemProperty | |
1296 | +CommandType : Cmdlet | |
1297 | +Visibility : Public | |
1298 | +ModuleName : Microsoft.PowerShell.Management | |
1299 | +Module : | |
1300 | +Parameters : {[Path, System.Management.Automation.ParameterMetadata], | |
1301 | + [LiteralPath, System.Management.Automation.ParameterMetad | |
1302 | + ata], [Name, System.Management.Automation.ParameterMetada | |
1303 | + ta], [PassThru, System.Management.Automation.ParameterMet | |
1304 | + adata]...} | |
1305 | +ParameterSets : {[-Path] <String[]> [-Name] <String> [-PassThru] [-Force] | |
1306 | + [-Filter <String>] [-Include <String[]>] [-Exclude <Stri | |
1307 | + ng[]>] [-Credential <PSCredential>] [-Verbose] [-Debug] [ | |
1308 | + -ErrorAction <ActionPreference>] [-WarningAction <ActionP | |
1309 | + reference>] [-ErrorVariable <String>] [-WarningVariable < | |
1310 | + String>] [-OutVariable <String>] [-OutBuffer <Int32>] [-W | |
1311 | + hatIf] [-Confirm] [-UseTransaction], [-LiteralPath] <Stri | |
1312 | + ng[]> [-Name] <String> [-PassThru] [-Force] [-Filter <Str | |
1313 | + ing>] [-Include <String[]>] [-Exclude <String[]>] [-Crede | |
1314 | + ntial <PSCredential>] [-Verbose] [-Debug] [-ErrorAction < | |
1315 | + ActionPreference>] [-WarningAction <ActionPreference>] [- | |
1316 | + ErrorVariable <String>] [-WarningVariable <String>] [-Out | |
1317 | + Variable <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confi | |
1318 | + rm] [-UseTransaction]} | |
1319 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113284 | |
1320 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
1321 | + s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe | |
1322 | + ll.Commands.Management.dll | |
1323 | + | |
1324 | + | |
1325 | +Verb : Clear | |
1326 | +Noun : Variable | |
1327 | +HelpFile : Microsoft.PowerShell.Commands.Utility.dll-Help.xml | |
1328 | +PSSnapIn : Microsoft.PowerShell.Utility | |
1329 | +ImplementingType : Microsoft.PowerShell.Commands.ClearVariableCommand | |
1330 | +Definition : Clear-Variable [-Name] <String[]> [-Include <String[]>] [ | |
1331 | + -Exclude <String[]>] [-Force] [-PassThru] [-Scope <String | |
1332 | + >] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] | |
1333 | + [-WarningAction <ActionPreference>] [-ErrorVariable <Stri | |
1334 | + ng>] [-WarningVariable <String>] [-OutVariable <String>] | |
1335 | + [-OutBuffer <Int32>] [-WhatIf] [-Confirm] | |
1336 | + | |
1337 | +DefaultParameterSet : | |
1338 | +OutputType : {} | |
1339 | +Name : Clear-Variable | |
1340 | +CommandType : Cmdlet | |
1341 | +Visibility : Public | |
1342 | +ModuleName : Microsoft.PowerShell.Utility | |
1343 | +Module : | |
1344 | +Parameters : {[Name, System.Management.Automation.ParameterMetadata], | |
1345 | + [Include, System.Management.Automation.ParameterMetadata] | |
1346 | + , [Exclude, System.Management.Automation.ParameterMetadat | |
1347 | + a], [Force, System.Management.Automation.ParameterMetadat | |
1348 | + a]...} | |
1349 | +ParameterSets : {[-Name] <String[]> [-Include <String[]>] [-Exclude <Stri | |
1350 | + ng[]>] [-Force] [-PassThru] [-Scope <String>] [-Verbose] | |
1351 | + [-Debug] [-ErrorAction <ActionPreference>] [-WarningActio | |
1352 | + n <ActionPreference>] [-ErrorVariable <String>] [-Warning | |
1353 | + Variable <String>] [-OutVariable <String>] [-OutBuffer <I | |
1354 | + nt32>] [-WhatIf] [-Confirm]} | |
1355 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113285 | |
1356 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
1357 | + s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell. | |
1358 | + Commands.Utility.dll | |
1359 | + | |
1360 | +Name : clhy | |
1361 | +CommandType : Alias | |
1362 | +Definition : Clear-History | |
1363 | +ReferencedCommand : Clear-History | |
1364 | +ResolvedCommand : Clear-History | |
1365 | + | |
1366 | +Name : cli | |
1367 | +CommandType : Alias | |
1368 | +Definition : Clear-Item | |
1369 | +ReferencedCommand : Clear-Item | |
1370 | +ResolvedCommand : Clear-Item | |
1371 | + | |
1372 | +Name : clp | |
1373 | +CommandType : Alias | |
1374 | +Definition : Clear-ItemProperty | |
1375 | +ReferencedCommand : Clear-ItemProperty | |
1376 | +ResolvedCommand : Clear-ItemProperty | |
1377 | + | |
1378 | +Name : cls | |
1379 | +CommandType : Alias | |
1380 | +Definition : Clear-Host | |
1381 | +ReferencedCommand : Clear-Host | |
1382 | +ResolvedCommand : Clear-Host | |
1383 | + | |
1384 | +Name : clv | |
1385 | +CommandType : Alias | |
1386 | +Definition : Clear-Variable | |
1387 | +ReferencedCommand : Clear-Variable | |
1388 | +ResolvedCommand : Clear-Variable | |
1389 | + | |
1390 | +Name : compare | |
1391 | +CommandType : Alias | |
1392 | +Definition : Compare-Object | |
1393 | +ReferencedCommand : Compare-Object | |
1394 | +ResolvedCommand : Compare-Object | |
1395 | + | |
1396 | + | |
1397 | +Verb : Compare | |
1398 | +Noun : Object | |
1399 | +HelpFile : Microsoft.PowerShell.Commands.Utility.dll-Help.xml | |
1400 | +PSSnapIn : Microsoft.PowerShell.Utility | |
1401 | +ImplementingType : Microsoft.PowerShell.Commands.CompareObjectCommand | |
1402 | +Definition : Compare-Object [-ReferenceObject] <PSObject[]> [-Differen | |
1403 | + ceObject] <PSObject[]> [-SyncWindow <Int32>] [-Property < | |
1404 | + Object[]>] [-ExcludeDifferent] [-IncludeEqual] [-PassThru | |
1405 | + ] [-Culture <String>] [-CaseSensitive] [-Verbose] [-Debug | |
1406 | + ] [-ErrorAction <ActionPreference>] [-WarningAction <Acti | |
1407 | + onPreference>] [-ErrorVariable <String>] [-WarningVariabl | |
1408 | + e <String>] [-OutVariable <String>] [-OutBuffer <Int32>] | |
1409 | + | |
1410 | +DefaultParameterSet : | |
1411 | +OutputType : {} | |
1412 | +Name : Compare-Object | |
1413 | +CommandType : Cmdlet | |
1414 | +Visibility : Public | |
1415 | +ModuleName : Microsoft.PowerShell.Utility | |
1416 | +Module : | |
1417 | +Parameters : {[ReferenceObject, System.Management.Automation.Parameter | |
1418 | + Metadata], [DifferenceObject, System.Management.Automatio | |
1419 | + n.ParameterMetadata], [SyncWindow, System.Management.Auto | |
1420 | + mation.ParameterMetadata], [Property, System.Management.A | |
1421 | + utomation.ParameterMetadata]...} | |
1422 | +ParameterSets : {[-ReferenceObject] <PSObject[]> [-DifferenceObject] <PSO | |
1423 | + bject[]> [-SyncWindow <Int32>] [-Property <Object[]>] [-E | |
1424 | + xcludeDifferent] [-IncludeEqual] [-PassThru] [-Culture <S | |
1425 | + tring>] [-CaseSensitive] [-Verbose] [-Debug] [-ErrorActio | |
1426 | + n <ActionPreference>] [-WarningAction <ActionPreference>] | |
1427 | + [-ErrorVariable <String>] [-WarningVariable <String>] [- | |
1428 | + OutVariable <String>] [-OutBuffer <Int32>]} | |
1429 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113286 | |
1430 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
1431 | + s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell. | |
1432 | + Commands.Utility.dll | |
1433 | + | |
1434 | + | |
1435 | +Verb : Complete | |
1436 | +Noun : Transaction | |
1437 | +HelpFile : Microsoft.PowerShell.Commands.Management.dll-Help.xml | |
1438 | +PSSnapIn : Microsoft.PowerShell.Management | |
1439 | +ImplementingType : Microsoft.PowerShell.Commands.CompleteTransactionCommand | |
1440 | +Definition : Complete-Transaction [-Verbose] [-Debug] [-ErrorAction <A | |
1441 | + ctionPreference>] [-WarningAction <ActionPreference>] [-E | |
1442 | + rrorVariable <String>] [-WarningVariable <String>] [-OutV | |
1443 | + ariable <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confir | |
1444 | + m] | |
1445 | + | |
1446 | +DefaultParameterSet : | |
1447 | +OutputType : {} | |
1448 | +Name : Complete-Transaction | |
1449 | +CommandType : Cmdlet | |
1450 | +Visibility : Public | |
1451 | +ModuleName : Microsoft.PowerShell.Management | |
1452 | +Module : | |
1453 | +Parameters : {[Verbose, System.Management.Automation.ParameterMetadata | |
1454 | + ], [Debug, System.Management.Automation.ParameterMetadata | |
1455 | + ], [ErrorAction, System.Management.Automation.ParameterMe | |
1456 | + tadata], [WarningAction, System.Management.Automation.Par | |
1457 | + ameterMetadata]...} | |
1458 | +ParameterSets : {[-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [- | |
1459 | + WarningAction <ActionPreference>] [-ErrorVariable <String | |
1460 | + >] [-WarningVariable <String>] [-OutVariable <String>] [- | |
1461 | + OutBuffer <Int32>] [-WhatIf] [-Confirm]} | |
1462 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=135200 | |
1463 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
1464 | + s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe | |
1465 | + ll.Commands.Management.dll | |
1466 | + | |
1467 | + | |
1468 | +Verb : Connect | |
1469 | +Noun : WSMan | |
1470 | +HelpFile : Microsoft.WSMan.Management.dll-Help.xml | |
1471 | +PSSnapIn : Microsoft.WSMan.Management | |
1472 | +ImplementingType : Microsoft.WSMan.Management.ConnectWSManCommand | |
1473 | +Definition : Connect-WSMan [[-ComputerName] <String>] [-ApplicationNam | |
1474 | + e <String>] [-OptionSet <Hashtable>] [-Port <Int32>] [-Se | |
1475 | + ssionOption <SessionOption>] [-UseSSL] [-Credential <PSCr | |
1476 | + edential>] [-Authentication <AuthenticationMechanism>] [- | |
1477 | + CertificateThumbprint <String>] [-Verbose] [-Debug] [-Err | |
1478 | + orAction <ActionPreference>] [-WarningAction <ActionPrefe | |
1479 | + rence>] [-ErrorVariable <String>] [-WarningVariable <Stri | |
1480 | + ng>] [-OutVariable <String>] [-OutBuffer <Int32>] | |
1481 | + Connect-WSMan [-ConnectionURI <Uri>] [-OptionSet <Hashtab | |
1482 | + le>] [-Port <Int32>] [-SessionOption <SessionOption>] [-C | |
1483 | + redential <PSCredential>] [-Authentication <Authenticatio | |
1484 | + nMechanism>] [-CertificateThumbprint <String>] [-Verbose] | |
1485 | + [-Debug] [-ErrorAction <ActionPreference>] [-WarningActi | |
1486 | + on <ActionPreference>] [-ErrorVariable <String>] [-Warnin | |
1487 | + gVariable <String>] [-OutVariable <String>] [-OutBuffer < | |
1488 | + Int32>] | |
1489 | + | |
1490 | +DefaultParameterSet : ComputerName | |
1491 | +OutputType : {} | |
1492 | +Name : Connect-WSMan | |
1493 | +CommandType : Cmdlet | |
1494 | +Visibility : Public | |
1495 | +ModuleName : Microsoft.WSMan.Management | |
1496 | +Module : | |
1497 | +Parameters : {[ApplicationName, System.Management.Automation.Parameter | |
1498 | + Metadata], [ComputerName, System.Management.Automation.Pa | |
1499 | + rameterMetadata], [ConnectionURI, System.Management.Autom | |
1500 | + ation.ParameterMetadata], [OptionSet, System.Management.A | |
1501 | + utomation.ParameterMetadata]...} | |
1502 | +ParameterSets : {[[-ComputerName] <String>] [-ApplicationName <String>] [ | |
1503 | + -OptionSet <Hashtable>] [-Port <Int32>] [-SessionOption < | |
1504 | + SessionOption>] [-UseSSL] [-Credential <PSCredential>] [- | |
1505 | + Authentication <AuthenticationMechanism>] [-CertificateTh | |
1506 | + umbprint <String>] [-Verbose] [-Debug] [-ErrorAction <Act | |
1507 | + ionPreference>] [-WarningAction <ActionPreference>] [-Err | |
1508 | + orVariable <String>] [-WarningVariable <String>] [-OutVar | |
1509 | + iable <String>] [-OutBuffer <Int32>], [-ConnectionURI <Ur | |
1510 | + i>] [-OptionSet <Hashtable>] [-Port <Int32>] [-SessionOpt | |
1511 | + ion <SessionOption>] [-Credential <PSCredential>] [-Authe | |
1512 | + ntication <AuthenticationMechanism>] [-CertificateThumbpr | |
1513 | + int <String>] [-Verbose] [-Debug] [-ErrorAction <ActionPr | |
1514 | + eference>] [-WarningAction <ActionPreference>] [-ErrorVar | |
1515 | + iable <String>] [-WarningVariable <String>] [-OutVariable | |
1516 | + <String>] [-OutBuffer <Int32>]} | |
1517 | +HelpUri : http://go.microsoft.com/fwlink/?LinkId=141437 | |
1518 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.WSMan.Management\1 | |
1519 | + .0.0.0__31bf3856ad364e35\Microsoft.WSMan.Management.dll | |
1520 | + | |
1521 | + | |
1522 | +Verb : ConvertFrom | |
1523 | +Noun : Csv | |
1524 | +HelpFile : Microsoft.PowerShell.Commands.Utility.dll-Help.xml | |
1525 | +PSSnapIn : Microsoft.PowerShell.Utility | |
1526 | +ImplementingType : Microsoft.PowerShell.Commands.ConvertFromCsvCommand | |
1527 | +Definition : ConvertFrom-Csv [-InputObject] <PSObject[]> [[-Delimiter] | |
1528 | + <Char>] [-Header <String[]>] [-Verbose] [-Debug] [-Error | |
1529 | + Action <ActionPreference>] [-WarningAction <ActionPrefere | |
1530 | + nce>] [-ErrorVariable <String>] [-WarningVariable <String | |
1531 | + >] [-OutVariable <String>] [-OutBuffer <Int32>] | |
1532 | + ConvertFrom-Csv [-InputObject] <PSObject[]> -UseCulture [ | |
1533 | + -Header <String[]>] [-Verbose] [-Debug] [-ErrorAction <Ac | |
1534 | + tionPreference>] [-WarningAction <ActionPreference>] [-Er | |
1535 | + rorVariable <String>] [-WarningVariable <String>] [-OutVa | |
1536 | + riable <String>] [-OutBuffer <Int32>] | |
1537 | + | |
1538 | +DefaultParameterSet : Delimiter | |
1539 | +OutputType : {} | |
1540 | +Name : ConvertFrom-Csv | |
1541 | +CommandType : Cmdlet | |
1542 | +Visibility : Public | |
1543 | +ModuleName : Microsoft.PowerShell.Utility | |
1544 | +Module : | |
1545 | +Parameters : {[Delimiter, System.Management.Automation.ParameterMetada | |
1546 | + ta], [UseCulture, System.Management.Automation.ParameterM | |
1547 | + etadata], [InputObject, System.Management.Automation.Para | |
1548 | + meterMetadata], [Header, System.Management.Automation.Par | |
1549 | + ameterMetadata]...} | |
1550 | +ParameterSets : {[-InputObject] <PSObject[]> [[-Delimiter] <Char>] [-Head | |
1551 | + er <String[]>] [-Verbose] [-Debug] [-ErrorAction <ActionP | |
1552 | + reference>] [-WarningAction <ActionPreference>] [-ErrorVa | |
1553 | + riable <String>] [-WarningVariable <String>] [-OutVariabl | |
1554 | + e <String>] [-OutBuffer <Int32>], [-InputObject] <PSObjec | |
1555 | + t[]> -UseCulture [-Header <String[]>] [-Verbose] [-Debug] | |
1556 | + [-ErrorAction <ActionPreference>] [-WarningAction <Actio | |
1557 | + nPreference>] [-ErrorVariable <String>] [-WarningVariable | |
1558 | + <String>] [-OutVariable <String>] [-OutBuffer <Int32>]} | |
1559 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=135201 | |
1560 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
1561 | + s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell. | |
1562 | + Commands.Utility.dll | |
1563 | + | |
1564 | + | |
1565 | +Verb : ConvertFrom | |
1566 | +Noun : SecureString | |
1567 | +HelpFile : Microsoft.PowerShell.Security.dll-Help.xml | |
1568 | +PSSnapIn : Microsoft.PowerShell.Security | |
1569 | +ImplementingType : Microsoft.PowerShell.Commands.ConvertFromSecureStringComm | |
1570 | + and | |
1571 | +Definition : ConvertFrom-SecureString [-SecureString] <SecureString> [ | |
1572 | + [-SecureKey] <SecureString>] [-Verbose] [-Debug] [-ErrorA | |
1573 | + ction <ActionPreference>] [-WarningAction <ActionPreferen | |
1574 | + ce>] [-ErrorVariable <String>] [-WarningVariable <String> | |
1575 | + ] [-OutVariable <String>] [-OutBuffer <Int32>] | |
1576 | + ConvertFrom-SecureString [-SecureString] <SecureString> [ | |
1577 | + -Key <Byte[]>] [-Verbose] [-Debug] [-ErrorAction <ActionP | |
1578 | + reference>] [-WarningAction <ActionPreference>] [-ErrorVa | |
1579 | + riable <String>] [-WarningVariable <String>] [-OutVariabl | |
1580 | + e <String>] [-OutBuffer <Int32>] | |
1581 | + | |
1582 | +DefaultParameterSet : Secure | |
1583 | +OutputType : {System.String} | |
1584 | +Name : ConvertFrom-SecureString | |
1585 | +CommandType : Cmdlet | |
1586 | +Visibility : Public | |
1587 | +ModuleName : Microsoft.PowerShell.Security | |
1588 | +Module : | |
1589 | +Parameters : {[SecureString, System.Management.Automation.ParameterMet | |
1590 | + adata], [SecureKey, System.Management.Automation.Paramete | |
1591 | + rMetadata], [Key, System.Management.Automation.ParameterM | |
1592 | + etadata], [Verbose, System.Management.Automation.Paramete | |
1593 | + rMetadata]...} | |
1594 | +ParameterSets : {[-SecureString] <SecureString> [[-SecureKey] <SecureStri | |
1595 | + ng>] [-Verbose] [-Debug] [-ErrorAction <ActionPreference> | |
1596 | + ] [-WarningAction <ActionPreference>] [-ErrorVariable <St | |
1597 | + ring>] [-WarningVariable <String>] [-OutVariable <String> | |
1598 | + ] [-OutBuffer <Int32>], [-SecureString] <SecureString> [- | |
1599 | + Key <Byte[]>] [-Verbose] [-Debug] [-ErrorAction <ActionPr | |
1600 | + eference>] [-WarningAction <ActionPreference>] [-ErrorVar | |
1601 | + iable <String>] [-WarningVariable <String>] [-OutVariable | |
1602 | + <String>] [-OutBuffer <Int32>]} | |
1603 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113287 | |
1604 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Securit | |
1605 | + y\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.Security | |
1606 | + .dll | |
1607 | + | |
1608 | + | |
1609 | +Verb : ConvertFrom | |
1610 | +Noun : StringData | |
1611 | +HelpFile : Microsoft.PowerShell.Commands.Utility.dll-Help.xml | |
1612 | +PSSnapIn : Microsoft.PowerShell.Utility | |
1613 | +ImplementingType : Microsoft.PowerShell.Commands.ConvertFromStringDataComman | |
1614 | + d | |
1615 | +Definition : ConvertFrom-StringData [-StringData] <String> [-Verbose] | |
1616 | + [-Debug] [-ErrorAction <ActionPreference>] [-WarningActio | |
1617 | + n <ActionPreference>] [-ErrorVariable <String>] [-Warning | |
1618 | + Variable <String>] [-OutVariable <String>] [-OutBuffer <I | |
1619 | + nt32>] | |
1620 | + | |
1621 | +DefaultParameterSet : | |
1622 | +OutputType : {System.Collections.Hashtable} | |
1623 | +Name : ConvertFrom-StringData | |
1624 | +CommandType : Cmdlet | |
1625 | +Visibility : Public | |
1626 | +ModuleName : Microsoft.PowerShell.Utility | |
1627 | +Module : | |
1628 | +Parameters : {[StringData, System.Management.Automation.ParameterMetad | |
1629 | + ata], [Verbose, System.Management.Automation.ParameterMet | |
1630 | + adata], [Debug, System.Management.Automation.ParameterMet | |
1631 | + adata], [ErrorAction, System.Management.Automation.Parame | |
1632 | + terMetadata]...} | |
1633 | +ParameterSets : {[-StringData] <String> [-Verbose] [-Debug] [-ErrorAction | |
1634 | + <ActionPreference>] [-WarningAction <ActionPreference>] | |
1635 | + [-ErrorVariable <String>] [-WarningVariable <String>] [-O | |
1636 | + utVariable <String>] [-OutBuffer <Int32>]} | |
1637 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113288 | |
1638 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
1639 | + s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell. | |
1640 | + Commands.Utility.dll | |
1641 | + | |
1642 | + | |
1643 | +Verb : Convert | |
1644 | +Noun : Path | |
1645 | +HelpFile : Microsoft.PowerShell.Commands.Management.dll-Help.xml | |
1646 | +PSSnapIn : Microsoft.PowerShell.Management | |
1647 | +ImplementingType : Microsoft.PowerShell.Commands.ConvertPathCommand | |
1648 | +Definition : Convert-Path [-Path] <String[]> [-Verbose] [-Debug] [-Err | |
1649 | + orAction <ActionPreference>] [-WarningAction <ActionPrefe | |
1650 | + rence>] [-ErrorVariable <String>] [-WarningVariable <Stri | |
1651 | + ng>] [-OutVariable <String>] [-OutBuffer <Int32>] [-UseTr | |
1652 | + ansaction] | |
1653 | + Convert-Path [-LiteralPath] <String[]> [-Verbose] [-Debug | |
1654 | + ] [-ErrorAction <ActionPreference>] [-WarningAction <Acti | |
1655 | + onPreference>] [-ErrorVariable <String>] [-WarningVariabl | |
1656 | + e <String>] [-OutVariable <String>] [-OutBuffer <Int32>] | |
1657 | + [-UseTransaction] | |
1658 | + | |
1659 | +DefaultParameterSet : Path | |
1660 | +OutputType : {System.String} | |
1661 | +Name : Convert-Path | |
1662 | +CommandType : Cmdlet | |
1663 | +Visibility : Public | |
1664 | +ModuleName : Microsoft.PowerShell.Management | |
1665 | +Module : | |
1666 | +Parameters : {[Path, System.Management.Automation.ParameterMetadata], | |
1667 | + [LiteralPath, System.Management.Automation.ParameterMetad | |
1668 | + ata], [Verbose, System.Management.Automation.ParameterMet | |
1669 | + adata], [Debug, System.Management.Automation.ParameterMet | |
1670 | + adata]...} | |
1671 | +ParameterSets : {[-Path] <String[]> [-Verbose] [-Debug] [-ErrorAction <Ac | |
1672 | + tionPreference>] [-WarningAction <ActionPreference>] [-Er | |
1673 | + rorVariable <String>] [-WarningVariable <String>] [-OutVa | |
1674 | + riable <String>] [-OutBuffer <Int32>] [-UseTransaction], | |
1675 | + [-LiteralPath] <String[]> [-Verbose] [-Debug] [-ErrorActi | |
1676 | + on <ActionPreference>] [-WarningAction <ActionPreference> | |
1677 | + ] [-ErrorVariable <String>] [-WarningVariable <String>] [ | |
1678 | + -OutVariable <String>] [-OutBuffer <Int32>] [-UseTransact | |
1679 | + ion]} | |
1680 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113289 | |
1681 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
1682 | + s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe | |
1683 | + ll.Commands.Management.dll | |
1684 | + | |
1685 | + | |
1686 | +Verb : ConvertTo | |
1687 | +Noun : Csv | |
1688 | +HelpFile : Microsoft.PowerShell.Commands.Utility.dll-Help.xml | |
1689 | +PSSnapIn : Microsoft.PowerShell.Utility | |
1690 | +ImplementingType : Microsoft.PowerShell.Commands.ConvertToCsvCommand | |
1691 | +Definition : ConvertTo-Csv [-InputObject] <PSObject> [[-Delimiter] <Ch | |
1692 | + ar>] [-NoTypeInformation] [-Verbose] [-Debug] [-ErrorActi | |
1693 | + on <ActionPreference>] [-WarningAction <ActionPreference> | |
1694 | + ] [-ErrorVariable <String>] [-WarningVariable <String>] [ | |
1695 | + -OutVariable <String>] [-OutBuffer <Int32>] | |
1696 | + ConvertTo-Csv [-InputObject] <PSObject> [-UseCulture] [-N | |
1697 | + oTypeInformation] [-Verbose] [-Debug] [-ErrorAction <Acti | |
1698 | + onPreference>] [-WarningAction <ActionPreference>] [-Erro | |
1699 | + rVariable <String>] [-WarningVariable <String>] [-OutVari | |
1700 | + able <String>] [-OutBuffer <Int32>] | |
1701 | + | |
1702 | +DefaultParameterSet : Delimiter | |
1703 | +OutputType : {} | |
1704 | +Name : ConvertTo-Csv | |
1705 | +CommandType : Cmdlet | |
1706 | +Visibility : Public | |
1707 | +ModuleName : Microsoft.PowerShell.Utility | |
1708 | +Module : | |
1709 | +Parameters : {[InputObject, System.Management.Automation.ParameterMeta | |
1710 | + data], [Delimiter, System.Management.Automation.Parameter | |
1711 | + Metadata], [UseCulture, System.Management.Automation.Para | |
1712 | + meterMetadata], [NoTypeInformation, System.Management.Aut | |
1713 | + omation.ParameterMetadata]...} | |
1714 | +ParameterSets : {[-InputObject] <PSObject> [[-Delimiter] <Char>] [-NoType | |
1715 | + Information] [-Verbose] [-Debug] [-ErrorAction <ActionPre | |
1716 | + ference>] [-WarningAction <ActionPreference>] [-ErrorVari | |
1717 | + able <String>] [-WarningVariable <String>] [-OutVariable | |
1718 | + <String>] [-OutBuffer <Int32>], [-InputObject] <PSObject> | |
1719 | + [-UseCulture] [-NoTypeInformation] [-Verbose] [-Debug] [ | |
1720 | + -ErrorAction <ActionPreference>] [-WarningAction <ActionP | |
1721 | + reference>] [-ErrorVariable <String>] [-WarningVariable < | |
1722 | + String>] [-OutVariable <String>] [-OutBuffer <Int32>]} | |
1723 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=135203 | |
1724 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
1725 | + s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell. | |
1726 | + Commands.Utility.dll | |
1727 | + | |
1728 | + | |
1729 | +Verb : ConvertTo | |
1730 | +Noun : Html | |
1731 | +HelpFile : Microsoft.PowerShell.Commands.Utility.dll-Help.xml | |
1732 | +PSSnapIn : Microsoft.PowerShell.Utility | |
1733 | +ImplementingType : Microsoft.PowerShell.Commands.ConvertToHtmlCommand | |
1734 | +Definition : ConvertTo-Html [[-Property] <Object[]>] [[-Head] <String[ | |
1735 | + ]>] [[-Title] <String>] [[-Body] <String[]>] [-InputObjec | |
1736 | + t <PSObject>] [-As <String>] [-CssUri <Uri>] [-PostConten | |
1737 | + t <String[]>] [-PreContent <String[]>] [-Verbose] [-Debug | |
1738 | + ] [-ErrorAction <ActionPreference>] [-WarningAction <Acti | |
1739 | + onPreference>] [-ErrorVariable <String>] [-WarningVariabl | |
1740 | + e <String>] [-OutVariable <String>] [-OutBuffer <Int32>] | |
1741 | + ConvertTo-Html [[-Property] <Object[]>] [-InputObject <PS | |
1742 | + Object>] [-As <String>] [-Fragment] [-PostContent <String | |
1743 | + []>] [-PreContent <String[]>] [-Verbose] [-Debug] [-Error | |
1744 | + Action <ActionPreference>] [-WarningAction <ActionPrefere | |
1745 | + nce>] [-ErrorVariable <String>] [-WarningVariable <String | |
1746 | + >] [-OutVariable <String>] [-OutBuffer <Int32>] | |
1747 | + | |
1748 | +DefaultParameterSet : Page | |
1749 | +OutputType : {} | |
1750 | +Name : ConvertTo-Html | |
1751 | +CommandType : Cmdlet | |
1752 | +Visibility : Public | |
1753 | +ModuleName : Microsoft.PowerShell.Utility | |
1754 | +Module : | |
1755 | +Parameters : {[InputObject, System.Management.Automation.ParameterMeta | |
1756 | + data], [Property, System.Management.Automation.ParameterM | |
1757 | + etadata], [Body, System.Management.Automation.ParameterMe | |
1758 | + tadata], [Head, System.Management.Automation.ParameterMet | |
1759 | + adata]...} | |
1760 | +ParameterSets : {[[-Property] <Object[]>] [[-Head] <String[]>] [[-Title] | |
1761 | + <String>] [[-Body] <String[]>] [-InputObject <PSObject>] | |
1762 | + [-As <String>] [-CssUri <Uri>] [-PostContent <String[]>] | |
1763 | + [-PreContent <String[]>] [-Verbose] [-Debug] [-ErrorActio | |
1764 | + n <ActionPreference>] [-WarningAction <ActionPreference>] | |
1765 | + [-ErrorVariable <String>] [-WarningVariable <String>] [- | |
1766 | + OutVariable <String>] [-OutBuffer <Int32>], [[-Property] | |
1767 | + <Object[]>] [-InputObject <PSObject>] [-As <String>] [-Fr | |
1768 | + agment] [-PostContent <String[]>] [-PreContent <String[]> | |
1769 | + ] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [ | |
1770 | + -WarningAction <ActionPreference>] [-ErrorVariable <Strin | |
1771 | + g>] [-WarningVariable <String>] [-OutVariable <String>] [ | |
1772 | + -OutBuffer <Int32>]} | |
1773 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113290 | |
1774 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
1775 | + s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell. | |
1776 | + Commands.Utility.dll | |
1777 | + | |
1778 | + | |
1779 | +Verb : ConvertTo | |
1780 | +Noun : SecureString | |
1781 | +HelpFile : Microsoft.PowerShell.Security.dll-Help.xml | |
1782 | +PSSnapIn : Microsoft.PowerShell.Security | |
1783 | +ImplementingType : Microsoft.PowerShell.Commands.ConvertToSecureStringComman | |
1784 | + d | |
1785 | +Definition : ConvertTo-SecureString [-String] <String> [[-SecureKey] < | |
1786 | + SecureString>] [-Verbose] [-Debug] [-ErrorAction <ActionP | |
1787 | + reference>] [-WarningAction <ActionPreference>] [-ErrorVa | |
1788 | + riable <String>] [-WarningVariable <String>] [-OutVariabl | |
1789 | + e <String>] [-OutBuffer <Int32>] | |
1790 | + ConvertTo-SecureString [-String] <String> [-AsPlainText] | |
1791 | + [-Force] [-Verbose] [-Debug] [-ErrorAction <ActionPrefere | |
1792 | + nce>] [-WarningAction <ActionPreference>] [-ErrorVariable | |
1793 | + <String>] [-WarningVariable <String>] [-OutVariable <Str | |
1794 | + ing>] [-OutBuffer <Int32>] | |
1795 | + ConvertTo-SecureString [-String] <String> [-Key <Byte[]>] | |
1796 | + [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [- | |
1797 | + WarningAction <ActionPreference>] [-ErrorVariable <String | |
1798 | + >] [-WarningVariable <String>] [-OutVariable <String>] [- | |
1799 | + OutBuffer <Int32>] | |
1800 | + | |
1801 | +DefaultParameterSet : Secure | |
1802 | +OutputType : {System.Security.SecureString} | |
1803 | +Name : ConvertTo-SecureString | |
1804 | +CommandType : Cmdlet | |
1805 | +Visibility : Public | |
1806 | +ModuleName : Microsoft.PowerShell.Security | |
1807 | +Module : | |
1808 | +Parameters : {[String, System.Management.Automation.ParameterMetadata] | |
1809 | + , [AsPlainText, System.Management.Automation.ParameterMet | |
1810 | + adata], [Force, System.Management.Automation.ParameterMet | |
1811 | + adata], [SecureKey, System.Management.Automation.Paramete | |
1812 | + rMetadata]...} | |
1813 | +ParameterSets : {[-String] <String> [[-SecureKey] <SecureString>] [-Verbo | |
1814 | + se] [-Debug] [-ErrorAction <ActionPreference>] [-WarningA | |
1815 | + ction <ActionPreference>] [-ErrorVariable <String>] [-War | |
1816 | + ningVariable <String>] [-OutVariable <String>] [-OutBuffe | |
1817 | + r <Int32>], [-String] <String> [-AsPlainText] [-Force] [- | |
1818 | + Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-War | |
1819 | + ningAction <ActionPreference>] [-ErrorVariable <String>] | |
1820 | + [-WarningVariable <String>] [-OutVariable <String>] [-Out | |
1821 | + Buffer <Int32>], [-String] <String> [-Key <Byte[]>] [-Ver | |
1822 | + bose] [-Debug] [-ErrorAction <ActionPreference>] [-Warnin | |
1823 | + gAction <ActionPreference>] [-ErrorVariable <String>] [-W | |
1824 | + arningVariable <String>] [-OutVariable <String>] [-OutBuf | |
1825 | + fer <Int32>]} | |
1826 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113291 | |
1827 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Securit | |
1828 | + y\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.Security | |
1829 | + .dll | |
1830 | + | |
1831 | + | |
1832 | +Verb : ConvertTo | |
1833 | +Noun : Xml | |
1834 | +HelpFile : Microsoft.PowerShell.Commands.Utility.dll-Help.xml | |
1835 | +PSSnapIn : Microsoft.PowerShell.Utility | |
1836 | +ImplementingType : Microsoft.PowerShell.Commands.ConvertToXmlCommand | |
1837 | +Definition : ConvertTo-Xml [-InputObject] <PSObject> [-Depth <Int32>] | |
1838 | + [-NoTypeInformation] [-As <String>] [-Verbose] [-Debug] [ | |
1839 | + -ErrorAction <ActionPreference>] [-WarningAction <ActionP | |
1840 | + reference>] [-ErrorVariable <String>] [-WarningVariable < | |
1841 | + String>] [-OutVariable <String>] [-OutBuffer <Int32>] | |
1842 | + | |
1843 | +DefaultParameterSet : | |
1844 | +OutputType : {} | |
1845 | +Name : ConvertTo-Xml | |
1846 | +CommandType : Cmdlet | |
1847 | +Visibility : Public | |
1848 | +ModuleName : Microsoft.PowerShell.Utility | |
1849 | +Module : | |
1850 | +Parameters : {[Depth, System.Management.Automation.ParameterMetadata], | |
1851 | + [InputObject, System.Management.Automation.ParameterMeta | |
1852 | + data], [NoTypeInformation, System.Management.Automation.P | |
1853 | + arameterMetadata], [As, System.Management.Automation.Para | |
1854 | + meterMetadata]...} | |
1855 | +ParameterSets : {[-InputObject] <PSObject> [-Depth <Int32>] [-NoTypeInfor | |
1856 | + mation] [-As <String>] [-Verbose] [-Debug] [-ErrorAction | |
1857 | + <ActionPreference>] [-WarningAction <ActionPreference>] [ | |
1858 | + -ErrorVariable <String>] [-WarningVariable <String>] [-Ou | |
1859 | + tVariable <String>] [-OutBuffer <Int32>]} | |
1860 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=135204 | |
1861 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
1862 | + s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell. | |
1863 | + Commands.Utility.dll | |
1864 | + | |
1865 | +Name : copy | |
1866 | +CommandType : Alias | |
1867 | +Definition : Copy-Item | |
1868 | +ReferencedCommand : Copy-Item | |
1869 | +ResolvedCommand : Copy-Item | |
1870 | + | |
1871 | + | |
1872 | +Verb : Copy | |
1873 | +Noun : Item | |
1874 | +HelpFile : Microsoft.PowerShell.Commands.Management.dll-Help.xml | |
1875 | +PSSnapIn : Microsoft.PowerShell.Management | |
1876 | +ImplementingType : Microsoft.PowerShell.Commands.CopyItemCommand | |
1877 | +Definition : Copy-Item [-Path] <String[]> [[-Destination] <String>] [- | |
1878 | + Container] [-Force] [-Filter <String>] [-Include <String[ | |
1879 | + ]>] [-Exclude <String[]>] [-Recurse] [-PassThru] [-Creden | |
1880 | + tial <PSCredential>] [-Verbose] [-Debug] [-ErrorAction <A | |
1881 | + ctionPreference>] [-WarningAction <ActionPreference>] [-E | |
1882 | + rrorVariable <String>] [-WarningVariable <String>] [-OutV | |
1883 | + ariable <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confir | |
1884 | + m] [-UseTransaction] | |
1885 | + Copy-Item [-LiteralPath] <String[]> [[-Destination] <Stri | |
1886 | + ng>] [-Container] [-Force] [-Filter <String>] [-Include < | |
1887 | + String[]>] [-Exclude <String[]>] [-Recurse] [-PassThru] [ | |
1888 | + -Credential <PSCredential>] [-Verbose] [-Debug] [-ErrorAc | |
1889 | + tion <ActionPreference>] [-WarningAction <ActionPreferenc | |
1890 | + e>] [-ErrorVariable <String>] [-WarningVariable <String>] | |
1891 | + [-OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf] [ | |
1892 | + -Confirm] [-UseTransaction] | |
1893 | + | |
1894 | +DefaultParameterSet : Path | |
1895 | +OutputType : {} | |
1896 | +Name : Copy-Item | |
1897 | +CommandType : Cmdlet | |
1898 | +Visibility : Public | |
1899 | +ModuleName : Microsoft.PowerShell.Management | |
1900 | +Module : | |
1901 | +Parameters : {[Path, System.Management.Automation.ParameterMetadata], | |
1902 | + [LiteralPath, System.Management.Automation.ParameterMetad | |
1903 | + ata], [Destination, System.Management.Automation.Paramete | |
1904 | + rMetadata], [Container, System.Management.Automation.Para | |
1905 | + meterMetadata]...} | |
1906 | +ParameterSets : {[-Path] <String[]> [[-Destination] <String>] [-Container | |
1907 | + ] [-Force] [-Filter <String>] [-Include <String[]>] [-Exc | |
1908 | + lude <String[]>] [-Recurse] [-PassThru] [-Credential <PSC | |
1909 | + redential>] [-Verbose] [-Debug] [-ErrorAction <ActionPref | |
1910 | + erence>] [-WarningAction <ActionPreference>] [-ErrorVaria | |
1911 | + ble <String>] [-WarningVariable <String>] [-OutVariable < | |
1912 | + String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm] [-UseT | |
1913 | + ransaction], [-LiteralPath] <String[]> [[-Destination] <S | |
1914 | + tring>] [-Container] [-Force] [-Filter <String>] [-Includ | |
1915 | + e <String[]>] [-Exclude <String[]>] [-Recurse] [-PassThru | |
1916 | + ] [-Credential <PSCredential>] [-Verbose] [-Debug] [-Erro | |
1917 | + rAction <ActionPreference>] [-WarningAction <ActionPrefer | |
1918 | + ence>] [-ErrorVariable <String>] [-WarningVariable <Strin | |
1919 | + g>] [-OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf | |
1920 | + ] [-Confirm] [-UseTransaction]} | |
1921 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113292 | |
1922 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
1923 | + s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe | |
1924 | + ll.Commands.Management.dll | |
1925 | + | |
1926 | + | |
1927 | +Verb : Copy | |
1928 | +Noun : ItemProperty | |
1929 | +HelpFile : Microsoft.PowerShell.Commands.Management.dll-Help.xml | |
1930 | +PSSnapIn : Microsoft.PowerShell.Management | |
1931 | +ImplementingType : Microsoft.PowerShell.Commands.CopyItemPropertyCommand | |
1932 | +Definition : Copy-ItemProperty [-Path] <String[]> [-Destination] <Stri | |
1933 | + ng> [-Name] <String> [-PassThru] [-Force] [-Filter <Strin | |
1934 | + g>] [-Include <String[]>] [-Exclude <String[]>] [-Credent | |
1935 | + ial <PSCredential>] [-Verbose] [-Debug] [-ErrorAction <Ac | |
1936 | + tionPreference>] [-WarningAction <ActionPreference>] [-Er | |
1937 | + rorVariable <String>] [-WarningVariable <String>] [-OutVa | |
1938 | + riable <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm | |
1939 | + ] [-UseTransaction] | |
1940 | + Copy-ItemProperty [-LiteralPath] <String[]> [-Destination | |
1941 | + ] <String> [-Name] <String> [-PassThru] [-Force] [-Filter | |
1942 | + <String>] [-Include <String[]>] [-Exclude <String[]>] [- | |
1943 | + Credential <PSCredential>] [-Verbose] [-Debug] [-ErrorAct | |
1944 | + ion <ActionPreference>] [-WarningAction <ActionPreference | |
1945 | + >] [-ErrorVariable <String>] [-WarningVariable <String>] | |
1946 | + [-OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf] [- | |
1947 | + Confirm] [-UseTransaction] | |
1948 | + | |
1949 | +DefaultParameterSet : Path | |
1950 | +OutputType : {} | |
1951 | +Name : Copy-ItemProperty | |
1952 | +CommandType : Cmdlet | |
1953 | +Visibility : Public | |
1954 | +ModuleName : Microsoft.PowerShell.Management | |
1955 | +Module : | |
1956 | +Parameters : {[Path, System.Management.Automation.ParameterMetadata], | |
1957 | + [LiteralPath, System.Management.Automation.ParameterMetad | |
1958 | + ata], [Name, System.Management.Automation.ParameterMetada | |
1959 | + ta], [Destination, System.Management.Automation.Parameter | |
1960 | + Metadata]...} | |
1961 | +ParameterSets : {[-Path] <String[]> [-Destination] <String> [-Name] <Stri | |
1962 | + ng> [-PassThru] [-Force] [-Filter <String>] [-Include <St | |
1963 | + ring[]>] [-Exclude <String[]>] [-Credential <PSCredential | |
1964 | + >] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] | |
1965 | + [-WarningAction <ActionPreference>] [-ErrorVariable <Stri | |
1966 | + ng>] [-WarningVariable <String>] [-OutVariable <String>] | |
1967 | + [-OutBuffer <Int32>] [-WhatIf] [-Confirm] [-UseTransactio | |
1968 | + n], [-LiteralPath] <String[]> [-Destination] <String> [-N | |
1969 | + ame] <String> [-PassThru] [-Force] [-Filter <String>] [-I | |
1970 | + nclude <String[]>] [-Exclude <String[]>] [-Credential <PS | |
1971 | + Credential>] [-Verbose] [-Debug] [-ErrorAction <ActionPre | |
1972 | + ference>] [-WarningAction <ActionPreference>] [-ErrorVari | |
1973 | + able <String>] [-WarningVariable <String>] [-OutVariable | |
1974 | + <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm] [-Use | |
1975 | + Transaction]} | |
1976 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113293 | |
1977 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
1978 | + s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe | |
1979 | + ll.Commands.Management.dll | |
1980 | + | |
1981 | +Name : cp | |
1982 | +CommandType : Alias | |
1983 | +Definition : Copy-Item | |
1984 | +ReferencedCommand : Copy-Item | |
1985 | +ResolvedCommand : Copy-Item | |
1986 | + | |
1987 | +Name : cpi | |
1988 | +CommandType : Alias | |
1989 | +Definition : Copy-Item | |
1990 | +ReferencedCommand : Copy-Item | |
1991 | +ResolvedCommand : Copy-Item | |
1992 | + | |
1993 | +Name : cpp | |
1994 | +CommandType : Alias | |
1995 | +Definition : Copy-ItemProperty | |
1996 | +ReferencedCommand : Copy-ItemProperty | |
1997 | +ResolvedCommand : Copy-ItemProperty | |
1998 | + | |
1999 | +Name : cvpa | |
2000 | +CommandType : Alias | |
2001 | +Definition : Convert-Path | |
2002 | +ReferencedCommand : Convert-Path | |
2003 | +ResolvedCommand : Convert-Path | |
2004 | + | |
2005 | + | |
2006 | +ScriptBlock : Set-Location D: | |
2007 | +CmdletBinding : False | |
2008 | +DefaultParameterSet : | |
2009 | +Definition : Set-Location D: | |
2010 | +Options : None | |
2011 | +Description : | |
2012 | +OutputType : {} | |
2013 | +Name : D: | |
2014 | +CommandType : Function | |
2015 | +Visibility : Public | |
2016 | +ModuleName : | |
2017 | +Module : | |
2018 | +Parameters : {} | |
2019 | +ParameterSets : {} | |
2020 | +HelpUri : | |
2021 | + | |
2022 | +Name : dbp | |
2023 | +CommandType : Alias | |
2024 | +Definition : Disable-PSBreakpoint | |
2025 | +ReferencedCommand : Disable-PSBreakpoint | |
2026 | +ResolvedCommand : Disable-PSBreakpoint | |
2027 | + | |
2028 | + | |
2029 | +Verb : Debug | |
2030 | +Noun : Process | |
2031 | +HelpFile : Microsoft.PowerShell.Commands.Management.dll-Help.xml | |
2032 | +PSSnapIn : Microsoft.PowerShell.Management | |
2033 | +ImplementingType : Microsoft.PowerShell.Commands.DebugProcessCommand | |
2034 | +Definition : Debug-Process [-Name] <String[]> [-Verbose] [-Debug] [-Er | |
2035 | + rorAction <ActionPreference>] [-WarningAction <ActionPref | |
2036 | + erence>] [-ErrorVariable <String>] [-WarningVariable <Str | |
2037 | + ing>] [-OutVariable <String>] [-OutBuffer <Int32>] [-What | |
2038 | + If] [-Confirm] | |
2039 | + Debug-Process [-Id] <Int32[]> [-Verbose] [-Debug] [-Error | |
2040 | + Action <ActionPreference>] [-WarningAction <ActionPrefere | |
2041 | + nce>] [-ErrorVariable <String>] [-WarningVariable <String | |
2042 | + >] [-OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf] | |
2043 | + [-Confirm] | |
2044 | + Debug-Process -InputObject <Process[]> [-Verbose] [-Debug | |
2045 | + ] [-ErrorAction <ActionPreference>] [-WarningAction <Acti | |
2046 | + onPreference>] [-ErrorVariable <String>] [-WarningVariabl | |
2047 | + e <String>] [-OutVariable <String>] [-OutBuffer <Int32>] | |
2048 | + [-WhatIf] [-Confirm] | |
2049 | + | |
2050 | +DefaultParameterSet : Name | |
2051 | +OutputType : {} | |
2052 | +Name : Debug-Process | |
2053 | +CommandType : Cmdlet | |
2054 | +Visibility : Public | |
2055 | +ModuleName : Microsoft.PowerShell.Management | |
2056 | +Module : | |
2057 | +Parameters : {[Id, System.Management.Automation.ParameterMetadata], [N | |
2058 | + ame, System.Management.Automation.ParameterMetadata], [In | |
2059 | + putObject, System.Management.Automation.ParameterMetadata | |
2060 | + ], [Verbose, System.Management.Automation.ParameterMetada | |
2061 | + ta]...} | |
2062 | +ParameterSets : {[-Name] <String[]> [-Verbose] [-Debug] [-ErrorAction <Ac | |
2063 | + tionPreference>] [-WarningAction <ActionPreference>] [-Er | |
2064 | + rorVariable <String>] [-WarningVariable <String>] [-OutVa | |
2065 | + riable <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm | |
2066 | + ], [-Id] <Int32[]> [-Verbose] [-Debug] [-ErrorAction <Act | |
2067 | + ionPreference>] [-WarningAction <ActionPreference>] [-Err | |
2068 | + orVariable <String>] [-WarningVariable <String>] [-OutVar | |
2069 | + iable <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm] | |
2070 | + , -InputObject <Process[]> [-Verbose] [-Debug] [-ErrorAct | |
2071 | + ion <ActionPreference>] [-WarningAction <ActionPreference | |
2072 | + >] [-ErrorVariable <String>] [-WarningVariable <String>] | |
2073 | + [-OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf] [- | |
2074 | + Confirm]} | |
2075 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=135206 | |
2076 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
2077 | + s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe | |
2078 | + ll.Commands.Management.dll | |
2079 | + | |
2080 | +Name : del | |
2081 | +CommandType : Alias | |
2082 | +Definition : Remove-Item | |
2083 | +ReferencedCommand : Remove-Item | |
2084 | +ResolvedCommand : Remove-Item | |
2085 | + | |
2086 | +Name : diff | |
2087 | +CommandType : Alias | |
2088 | +Definition : Compare-Object | |
2089 | +ReferencedCommand : Compare-Object | |
2090 | +ResolvedCommand : Compare-Object | |
2091 | + | |
2092 | +Name : dir | |
2093 | +CommandType : Alias | |
2094 | +Definition : Get-ChildItem | |
2095 | +ReferencedCommand : Get-ChildItem | |
2096 | +ResolvedCommand : Get-ChildItem | |
2097 | + | |
2098 | + | |
2099 | +Verb : Disable | |
2100 | +Noun : ComputerRestore | |
2101 | +HelpFile : Microsoft.PowerShell.Commands.Management.dll-Help.xml | |
2102 | +PSSnapIn : Microsoft.PowerShell.Management | |
2103 | +ImplementingType : Microsoft.PowerShell.Commands.DisableComputerRestoreComma | |
2104 | + nd | |
2105 | +Definition : Disable-ComputerRestore [-Drive] <String[]> [-Verbose] [- | |
2106 | + Debug] [-ErrorAction <ActionPreference>] [-WarningAction | |
2107 | + <ActionPreference>] [-ErrorVariable <String>] [-WarningVa | |
2108 | + riable <String>] [-OutVariable <String>] [-OutBuffer <Int | |
2109 | + 32>] [-WhatIf] [-Confirm] | |
2110 | + | |
2111 | +DefaultParameterSet : | |
2112 | +OutputType : {} | |
2113 | +Name : Disable-ComputerRestore | |
2114 | +CommandType : Cmdlet | |
2115 | +Visibility : Public | |
2116 | +ModuleName : Microsoft.PowerShell.Management | |
2117 | +Module : | |
2118 | +Parameters : {[Drive, System.Management.Automation.ParameterMetadata], | |
2119 | + [Verbose, System.Management.Automation.ParameterMetadata | |
2120 | + ], [Debug, System.Management.Automation.ParameterMetadata | |
2121 | + ], [ErrorAction, System.Management.Automation.ParameterMe | |
2122 | + tadata]...} | |
2123 | +ParameterSets : {[-Drive] <String[]> [-Verbose] [-Debug] [-ErrorAction <A | |
2124 | + ctionPreference>] [-WarningAction <ActionPreference>] [-E | |
2125 | + rrorVariable <String>] [-WarningVariable <String>] [-OutV | |
2126 | + ariable <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confir | |
2127 | + m]} | |
2128 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=135207 | |
2129 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
2130 | + s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe | |
2131 | + ll.Commands.Management.dll | |
2132 | + | |
2133 | + | |
2134 | +Verb : Disable | |
2135 | +Noun : PSBreakpoint | |
2136 | +HelpFile : Microsoft.PowerShell.Commands.Utility.dll-Help.xml | |
2137 | +PSSnapIn : Microsoft.PowerShell.Utility | |
2138 | +ImplementingType : Microsoft.PowerShell.Commands.DisablePSBreakpointCommand | |
2139 | +Definition : Disable-PSBreakpoint [-Breakpoint] <Breakpoint[]> [-PassT | |
2140 | + hru] [-Verbose] [-Debug] [-ErrorAction <ActionPreference> | |
2141 | + ] [-WarningAction <ActionPreference>] [-ErrorVariable <St | |
2142 | + ring>] [-WarningVariable <String>] [-OutVariable <String> | |
2143 | + ] [-OutBuffer <Int32>] [-WhatIf] [-Confirm] | |
2144 | + Disable-PSBreakpoint [-Id] <Int32[]> [-PassThru] [-Verbos | |
2145 | + e] [-Debug] [-ErrorAction <ActionPreference>] [-WarningAc | |
2146 | + tion <ActionPreference>] [-ErrorVariable <String>] [-Warn | |
2147 | + ingVariable <String>] [-OutVariable <String>] [-OutBuffer | |
2148 | + <Int32>] [-WhatIf] [-Confirm] | |
2149 | + | |
2150 | +DefaultParameterSet : Breakpoint | |
2151 | +OutputType : {System.Management.Automation.Breakpoint} | |
2152 | +Name : Disable-PSBreakpoint | |
2153 | +CommandType : Cmdlet | |
2154 | +Visibility : Public | |
2155 | +ModuleName : Microsoft.PowerShell.Utility | |
2156 | +Module : | |
2157 | +Parameters : {[PassThru, System.Management.Automation.ParameterMetadat | |
2158 | + a], [Breakpoint, System.Management.Automation.ParameterMe | |
2159 | + tadata], [Id, System.Management.Automation.ParameterMetad | |
2160 | + ata], [Verbose, System.Management.Automation.ParameterMet | |
2161 | + adata]...} | |
2162 | +ParameterSets : {[-Breakpoint] <Breakpoint[]> [-PassThru] [-Verbose] [-De | |
2163 | + bug] [-ErrorAction <ActionPreference>] [-WarningAction <A | |
2164 | + ctionPreference>] [-ErrorVariable <String>] [-WarningVari | |
2165 | + able <String>] [-OutVariable <String>] [-OutBuffer <Int32 | |
2166 | + >] [-WhatIf] [-Confirm], [-Id] <Int32[]> [-PassThru] [-Ve | |
2167 | + rbose] [-Debug] [-ErrorAction <ActionPreference>] [-Warni | |
2168 | + ngAction <ActionPreference>] [-ErrorVariable <String>] [- | |
2169 | + WarningVariable <String>] [-OutVariable <String>] [-OutBu | |
2170 | + ffer <Int32>] [-WhatIf] [-Confirm]} | |
2171 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113294 | |
2172 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
2173 | + s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell. | |
2174 | + Commands.Utility.dll | |
2175 | + | |
2176 | + | |
2177 | +ScriptBlock : | |
2178 | + [CmdletBinding(SupportsShouldProcess=$true, ConfirmImpact | |
2179 | + ="High")] | |
2180 | + param( | |
2181 | + [Parameter()] | |
2182 | + [switch] | |
2183 | + $force = ($false) | |
2184 | + ) | |
2185 | + process { | |
2186 | + | |
2187 | + # Disable all Session Configurations | |
2188 | + try { | |
2189 | + $PSBoundParameters.Add("Name","*") | |
2190 | + Disable-PSSessionConfiguration @PSBoundParameters | |
2191 | + } catch { | |
2192 | + throw | |
2193 | + } | |
2194 | + | |
2195 | + } | |
2196 | + | |
2197 | +CmdletBinding : True | |
2198 | +DefaultParameterSet : | |
2199 | +Definition : | |
2200 | + [CmdletBinding(SupportsShouldProcess=$true, ConfirmImpact | |
2201 | + ="High")] | |
2202 | + param( | |
2203 | + [Parameter()] | |
2204 | + [switch] | |
2205 | + $force = ($false) | |
2206 | + ) | |
2207 | + process { | |
2208 | + | |
2209 | + # Disable all Session Configurations | |
2210 | + try { | |
2211 | + $PSBoundParameters.Add("Name","*") | |
2212 | + Disable-PSSessionConfiguration @PSBoundParameters | |
2213 | + } catch { | |
2214 | + throw | |
2215 | + } | |
2216 | + | |
2217 | + } | |
2218 | + | |
2219 | +Options : None | |
2220 | +Description : | |
2221 | +OutputType : {} | |
2222 | +Name : Disable-PSRemoting | |
2223 | +CommandType : Function | |
2224 | +Visibility : Public | |
2225 | +ModuleName : | |
2226 | +Module : | |
2227 | +Parameters : {[force, System.Management.Automation.ParameterMetadata], | |
2228 | + [Verbose, System.Management.Automation.ParameterMetadata | |
2229 | + ], [Debug, System.Management.Automation.ParameterMetadata | |
2230 | + ], [ErrorAction, System.Management.Automation.ParameterMe | |
2231 | + tadata]...} | |
2232 | +ParameterSets : {[-force] [-Verbose] [-Debug] [-ErrorAction <ActionPrefer | |
2233 | + ence>] [-WarningAction <ActionPreference>] [-ErrorVariabl | |
2234 | + e <String>] [-WarningVariable <String>] [-OutVariable <St | |
2235 | + ring>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm]} | |
2236 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=144298 | |
2237 | + | |
2238 | + | |
2239 | +Verb : Disable | |
2240 | +Noun : PSSessionConfiguration | |
2241 | +HelpFile : System.Management.Automation.dll-Help.xml | |
2242 | +PSSnapIn : Microsoft.PowerShell.Core | |
2243 | +ImplementingType : Microsoft.PowerShell.Commands.DisablePSSessionConfigurati | |
2244 | + onCommand | |
2245 | +Definition : Disable-PSSessionConfiguration [[-Name] <String[]>] [-For | |
2246 | + ce] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] | |
2247 | + [-WarningAction <ActionPreference>] [-ErrorVariable <Str | |
2248 | + ing>] [-WarningVariable <String>] [-OutVariable <String>] | |
2249 | + [-OutBuffer <Int32>] [-WhatIf] [-Confirm] | |
2250 | + | |
2251 | +DefaultParameterSet : | |
2252 | +OutputType : {} | |
2253 | +Name : Disable-PSSessionConfiguration | |
2254 | +CommandType : Cmdlet | |
2255 | +Visibility : Public | |
2256 | +ModuleName : Microsoft.PowerShell.Core | |
2257 | +Module : | |
2258 | +Parameters : {[Name, System.Management.Automation.ParameterMetadata], | |
2259 | + [Force, System.Management.Automation.ParameterMetadata], | |
2260 | + [Verbose, System.Management.Automation.ParameterMetadata] | |
2261 | + , [Debug, System.Management.Automation.ParameterMetadata] | |
2262 | + ...} | |
2263 | +ParameterSets : {[[-Name] <String[]>] [-Force] [-Verbose] [-Debug] [-Erro | |
2264 | + rAction <ActionPreference>] [-WarningAction <ActionPrefer | |
2265 | + ence>] [-ErrorVariable <String>] [-WarningVariable <Strin | |
2266 | + g>] [-OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf | |
2267 | + ] [-Confirm]} | |
2268 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=144299 | |
2269 | +DLL : C:\Windows\assembly\GAC_MSIL\System.Management.Automation | |
2270 | + \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d | |
2271 | + ll | |
2272 | + | |
2273 | + | |
2274 | +Verb : Disable | |
2275 | +Noun : WSManCredSSP | |
2276 | +HelpFile : Microsoft.WSMan.Management.dll-Help.xml | |
2277 | +PSSnapIn : Microsoft.WSMan.Management | |
2278 | +ImplementingType : Microsoft.WSMan.Management.DisableWSManCredSSPCommand | |
2279 | +Definition : Disable-WSManCredSSP [-Role] <String> [-Verbose] [-Debug] | |
2280 | + [-ErrorAction <ActionPreference>] [-WarningAction <Actio | |
2281 | + nPreference>] [-ErrorVariable <String>] [-WarningVariable | |
2282 | + <String>] [-OutVariable <String>] [-OutBuffer <Int32>] | |
2283 | + | |
2284 | +DefaultParameterSet : | |
2285 | +OutputType : {} | |
2286 | +Name : Disable-WSManCredSSP | |
2287 | +CommandType : Cmdlet | |
2288 | +Visibility : Public | |
2289 | +ModuleName : Microsoft.WSMan.Management | |
2290 | +Module : | |
2291 | +Parameters : {[Role, System.Management.Automation.ParameterMetadata], | |
2292 | + [Verbose, System.Management.Automation.ParameterMetadata] | |
2293 | + , [Debug, System.Management.Automation.ParameterMetadata] | |
2294 | + , [ErrorAction, System.Management.Automation.ParameterMet | |
2295 | + adata]...} | |
2296 | +ParameterSets : {[-Role] <String> [-Verbose] [-Debug] [-ErrorAction <Acti | |
2297 | + onPreference>] [-WarningAction <ActionPreference>] [-Erro | |
2298 | + rVariable <String>] [-WarningVariable <String>] [-OutVari | |
2299 | + able <String>] [-OutBuffer <Int32>]} | |
2300 | +HelpUri : http://go.microsoft.com/fwlink/?LinkId=141438 | |
2301 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.WSMan.Management\1 | |
2302 | + .0.0.0__31bf3856ad364e35\Microsoft.WSMan.Management.dll | |
2303 | + | |
2304 | + | |
2305 | +Verb : Disconnect | |
2306 | +Noun : WSMan | |
2307 | +HelpFile : Microsoft.WSMan.Management.dll-Help.xml | |
2308 | +PSSnapIn : Microsoft.WSMan.Management | |
2309 | +ImplementingType : Microsoft.WSMan.Management.DisconnectWSManCommand | |
2310 | +Definition : Disconnect-WSMan [[-ComputerName] <String>] [-Verbose] [- | |
2311 | + Debug] [-ErrorAction <ActionPreference>] [-WarningAction | |
2312 | + <ActionPreference>] [-ErrorVariable <String>] [-WarningVa | |
2313 | + riable <String>] [-OutVariable <String>] [-OutBuffer <Int | |
2314 | + 32>] | |
2315 | + | |
2316 | +DefaultParameterSet : | |
2317 | +OutputType : {} | |
2318 | +Name : Disconnect-WSMan | |
2319 | +CommandType : Cmdlet | |
2320 | +Visibility : Public | |
2321 | +ModuleName : Microsoft.WSMan.Management | |
2322 | +Module : | |
2323 | +Parameters : {[ComputerName, System.Management.Automation.ParameterMet | |
2324 | + adata], [Verbose, System.Management.Automation.ParameterM | |
2325 | + etadata], [Debug, System.Management.Automation.ParameterM | |
2326 | + etadata], [ErrorAction, System.Management.Automation.Para | |
2327 | + meterMetadata]...} | |
2328 | +ParameterSets : {[[-ComputerName] <String>] [-Verbose] [-Debug] [-ErrorAc | |
2329 | + tion <ActionPreference>] [-WarningAction <ActionPreferenc | |
2330 | + e>] [-ErrorVariable <String>] [-WarningVariable <String>] | |
2331 | + [-OutVariable <String>] [-OutBuffer <Int32>]} | |
2332 | +HelpUri : http://go.microsoft.com/fwlink/?LinkId=141439 | |
2333 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.WSMan.Management\1 | |
2334 | + .0.0.0__31bf3856ad364e35\Microsoft.WSMan.Management.dll | |
2335 | + | |
2336 | + | |
2337 | +ScriptBlock : Set-Location E: | |
2338 | +CmdletBinding : False | |
2339 | +DefaultParameterSet : | |
2340 | +Definition : Set-Location E: | |
2341 | +Options : None | |
2342 | +Description : | |
2343 | +OutputType : {} | |
2344 | +Name : E: | |
2345 | +CommandType : Function | |
2346 | +Visibility : Public | |
2347 | +ModuleName : | |
2348 | +Module : | |
2349 | +Parameters : {} | |
2350 | +ParameterSets : {} | |
2351 | +HelpUri : | |
2352 | + | |
2353 | +Name : ebp | |
2354 | +CommandType : Alias | |
2355 | +Definition : Enable-PSBreakpoint | |
2356 | +ReferencedCommand : Enable-PSBreakpoint | |
2357 | +ResolvedCommand : Enable-PSBreakpoint | |
2358 | + | |
2359 | +Name : echo | |
2360 | +CommandType : Alias | |
2361 | +Definition : Write-Output | |
2362 | +ReferencedCommand : Write-Output | |
2363 | +ResolvedCommand : Write-Output | |
2364 | + | |
2365 | + | |
2366 | +Verb : Enable | |
2367 | +Noun : ComputerRestore | |
2368 | +HelpFile : Microsoft.PowerShell.Commands.Management.dll-Help.xml | |
2369 | +PSSnapIn : Microsoft.PowerShell.Management | |
2370 | +ImplementingType : Microsoft.PowerShell.Commands.EnableComputerRestoreComman | |
2371 | + d | |
2372 | +Definition : Enable-ComputerRestore [-Drive] <String[]> [-Verbose] [-D | |
2373 | + ebug] [-ErrorAction <ActionPreference>] [-WarningAction < | |
2374 | + ActionPreference>] [-ErrorVariable <String>] [-WarningVar | |
2375 | + iable <String>] [-OutVariable <String>] [-OutBuffer <Int3 | |
2376 | + 2>] [-WhatIf] [-Confirm] | |
2377 | + | |
2378 | +DefaultParameterSet : | |
2379 | +OutputType : {} | |
2380 | +Name : Enable-ComputerRestore | |
2381 | +CommandType : Cmdlet | |
2382 | +Visibility : Public | |
2383 | +ModuleName : Microsoft.PowerShell.Management | |
2384 | +Module : | |
2385 | +Parameters : {[Drive, System.Management.Automation.ParameterMetadata], | |
2386 | + [Verbose, System.Management.Automation.ParameterMetadata | |
2387 | + ], [Debug, System.Management.Automation.ParameterMetadata | |
2388 | + ], [ErrorAction, System.Management.Automation.ParameterMe | |
2389 | + tadata]...} | |
2390 | +ParameterSets : {[-Drive] <String[]> [-Verbose] [-Debug] [-ErrorAction <A | |
2391 | + ctionPreference>] [-WarningAction <ActionPreference>] [-E | |
2392 | + rrorVariable <String>] [-WarningVariable <String>] [-OutV | |
2393 | + ariable <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confir | |
2394 | + m]} | |
2395 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=135209 | |
2396 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
2397 | + s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe | |
2398 | + ll.Commands.Management.dll | |
2399 | + | |
2400 | + | |
2401 | +Verb : Enable | |
2402 | +Noun : PSBreakpoint | |
2403 | +HelpFile : Microsoft.PowerShell.Commands.Utility.dll-Help.xml | |
2404 | +PSSnapIn : Microsoft.PowerShell.Utility | |
2405 | +ImplementingType : Microsoft.PowerShell.Commands.EnablePSBreakpointCommand | |
2406 | +Definition : Enable-PSBreakpoint [-Id] <Int32[]> [-PassThru] [-Verbose | |
2407 | + ] [-Debug] [-ErrorAction <ActionPreference>] [-WarningAct | |
2408 | + ion <ActionPreference>] [-ErrorVariable <String>] [-Warni | |
2409 | + ngVariable <String>] [-OutVariable <String>] [-OutBuffer | |
2410 | + <Int32>] [-WhatIf] [-Confirm] | |
2411 | + Enable-PSBreakpoint [-Breakpoint] <Breakpoint[]> [-PassTh | |
2412 | + ru] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] | |
2413 | + [-WarningAction <ActionPreference>] [-ErrorVariable <Str | |
2414 | + ing>] [-WarningVariable <String>] [-OutVariable <String>] | |
2415 | + [-OutBuffer <Int32>] [-WhatIf] [-Confirm] | |
2416 | + | |
2417 | +DefaultParameterSet : Id | |
2418 | +OutputType : {System.Management.Automation.Breakpoint} | |
2419 | +Name : Enable-PSBreakpoint | |
2420 | +CommandType : Cmdlet | |
2421 | +Visibility : Public | |
2422 | +ModuleName : Microsoft.PowerShell.Utility | |
2423 | +Module : | |
2424 | +Parameters : {[PassThru, System.Management.Automation.ParameterMetadat | |
2425 | + a], [Breakpoint, System.Management.Automation.ParameterMe | |
2426 | + tadata], [Id, System.Management.Automation.ParameterMetad | |
2427 | + ata], [Verbose, System.Management.Automation.ParameterMet | |
2428 | + adata]...} | |
2429 | +ParameterSets : {[-Id] <Int32[]> [-PassThru] [-Verbose] [-Debug] [-ErrorA | |
2430 | + ction <ActionPreference>] [-WarningAction <ActionPreferen | |
2431 | + ce>] [-ErrorVariable <String>] [-WarningVariable <String> | |
2432 | + ] [-OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf] | |
2433 | + [-Confirm], [-Breakpoint] <Breakpoint[]> [-PassThru] [-Ve | |
2434 | + rbose] [-Debug] [-ErrorAction <ActionPreference>] [-Warni | |
2435 | + ngAction <ActionPreference>] [-ErrorVariable <String>] [- | |
2436 | + WarningVariable <String>] [-OutVariable <String>] [-OutBu | |
2437 | + ffer <Int32>] [-WhatIf] [-Confirm]} | |
2438 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113295 | |
2439 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
2440 | + s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell. | |
2441 | + Commands.Utility.dll | |
2442 | + | |
2443 | + | |
2444 | +Verb : Enable | |
2445 | +Noun : PSRemoting | |
2446 | +HelpFile : System.Management.Automation.dll-Help.xml | |
2447 | +PSSnapIn : Microsoft.PowerShell.Core | |
2448 | +ImplementingType : Microsoft.PowerShell.Commands.EnablePSRemotingCommand | |
2449 | +Definition : Enable-PSRemoting [-Force] [-Verbose] [-Debug] [-ErrorAct | |
2450 | + ion <ActionPreference>] [-WarningAction <ActionPreference | |
2451 | + >] [-ErrorVariable <String>] [-WarningVariable <String>] | |
2452 | + [-OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf] [- | |
2453 | + Confirm] | |
2454 | + | |
2455 | +DefaultParameterSet : | |
2456 | +OutputType : {} | |
2457 | +Name : Enable-PSRemoting | |
2458 | +CommandType : Cmdlet | |
2459 | +Visibility : Public | |
2460 | +ModuleName : Microsoft.PowerShell.Core | |
2461 | +Module : | |
2462 | +Parameters : {[Force, System.Management.Automation.ParameterMetadata], | |
2463 | + [Verbose, System.Management.Automation.ParameterMetadata | |
2464 | + ], [Debug, System.Management.Automation.ParameterMetadata | |
2465 | + ], [ErrorAction, System.Management.Automation.ParameterMe | |
2466 | + tadata]...} | |
2467 | +ParameterSets : {[-Force] [-Verbose] [-Debug] [-ErrorAction <ActionPrefer | |
2468 | + ence>] [-WarningAction <ActionPreference>] [-ErrorVariabl | |
2469 | + e <String>] [-WarningVariable <String>] [-OutVariable <St | |
2470 | + ring>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm]} | |
2471 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=144300 | |
2472 | +DLL : C:\Windows\assembly\GAC_MSIL\System.Management.Automation | |
2473 | + \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d | |
2474 | + ll | |
2475 | + | |
2476 | + | |
2477 | +Verb : Enable | |
2478 | +Noun : PSSessionConfiguration | |
2479 | +HelpFile : System.Management.Automation.dll-Help.xml | |
2480 | +PSSnapIn : Microsoft.PowerShell.Core | |
2481 | +ImplementingType : Microsoft.PowerShell.Commands.EnablePSSessionConfiguratio | |
2482 | + nCommand | |
2483 | +Definition : Enable-PSSessionConfiguration [[-Name] <String[]>] [-Forc | |
2484 | + e] [-SecurityDescriptorSddl <String>] [-Verbose] [-Debug] | |
2485 | + [-ErrorAction <ActionPreference>] [-WarningAction <Actio | |
2486 | + nPreference>] [-ErrorVariable <String>] [-WarningVariable | |
2487 | + <String>] [-OutVariable <String>] [-OutBuffer <Int32>] [ | |
2488 | + -WhatIf] [-Confirm] | |
2489 | + | |
2490 | +DefaultParameterSet : | |
2491 | +OutputType : {} | |
2492 | +Name : Enable-PSSessionConfiguration | |
2493 | +CommandType : Cmdlet | |
2494 | +Visibility : Public | |
2495 | +ModuleName : Microsoft.PowerShell.Core | |
2496 | +Module : | |
2497 | +Parameters : {[Name, System.Management.Automation.ParameterMetadata], | |
2498 | + [Force, System.Management.Automation.ParameterMetadata], | |
2499 | + [SecurityDescriptorSddl, System.Management.Automation.Par | |
2500 | + ameterMetadata], [Verbose, System.Management.Automation.P | |
2501 | + arameterMetadata]...} | |
2502 | +ParameterSets : {[[-Name] <String[]>] [-Force] [-SecurityDescriptorSddl < | |
2503 | + String>] [-Verbose] [-Debug] [-ErrorAction <ActionPrefere | |
2504 | + nce>] [-WarningAction <ActionPreference>] [-ErrorVariable | |
2505 | + <String>] [-WarningVariable <String>] [-OutVariable <Str | |
2506 | + ing>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm]} | |
2507 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=144301 | |
2508 | +DLL : C:\Windows\assembly\GAC_MSIL\System.Management.Automation | |
2509 | + \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d | |
2510 | + ll | |
2511 | + | |
2512 | + | |
2513 | +Verb : Enable | |
2514 | +Noun : WSManCredSSP | |
2515 | +HelpFile : Microsoft.WSMan.Management.dll-Help.xml | |
2516 | +PSSnapIn : Microsoft.WSMan.Management | |
2517 | +ImplementingType : Microsoft.WSMan.Management.EnableWSManCredSSPCommand | |
2518 | +Definition : Enable-WSManCredSSP [-Role] <String> [[-DelegateComputer] | |
2519 | + <String[]>] [-Force] [-Verbose] [-Debug] [-ErrorAction < | |
2520 | + ActionPreference>] [-WarningAction <ActionPreference>] [- | |
2521 | + ErrorVariable <String>] [-WarningVariable <String>] [-Out | |
2522 | + Variable <String>] [-OutBuffer <Int32>] | |
2523 | + | |
2524 | +DefaultParameterSet : | |
2525 | +OutputType : {} | |
2526 | +Name : Enable-WSManCredSSP | |
2527 | +CommandType : Cmdlet | |
2528 | +Visibility : Public | |
2529 | +ModuleName : Microsoft.WSMan.Management | |
2530 | +Module : | |
2531 | +Parameters : {[DelegateComputer, System.Management.Automation.Paramete | |
2532 | + rMetadata], [Force, System.Management.Automation.Paramete | |
2533 | + rMetadata], [Role, System.Management.Automation.Parameter | |
2534 | + Metadata], [Verbose, System.Management.Automation.Paramet | |
2535 | + erMetadata]...} | |
2536 | +ParameterSets : {[-Role] <String> [[-DelegateComputer] <String[]>] [-Forc | |
2537 | + e] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] | |
2538 | + [-WarningAction <ActionPreference>] [-ErrorVariable <Stri | |
2539 | + ng>] [-WarningVariable <String>] [-OutVariable <String>] | |
2540 | + [-OutBuffer <Int32>]} | |
2541 | +HelpUri : http://go.microsoft.com/fwlink/?LinkId=141442 | |
2542 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.WSMan.Management\1 | |
2543 | + .0.0.0__31bf3856ad364e35\Microsoft.WSMan.Management.dll | |
2544 | + | |
2545 | + | |
2546 | +Verb : Enter | |
2547 | +Noun : PSSession | |
2548 | +HelpFile : System.Management.Automation.dll-Help.xml | |
2549 | +PSSnapIn : Microsoft.PowerShell.Core | |
2550 | +ImplementingType : Microsoft.PowerShell.Commands.EnterPSSessionCommand | |
2551 | +Definition : Enter-PSSession [-ComputerName] <String> [-Credential <PS | |
2552 | + Credential>] [-Port <Int32>] [-UseSSL] [-ConfigurationNam | |
2553 | + e <String>] [-ApplicationName <String>] [-SessionOption < | |
2554 | + PSSessionOption>] [-Authentication <AuthenticationMechani | |
2555 | + sm>] [-CertificateThumbprint <String>] [-Verbose] [-Debug | |
2556 | + ] [-ErrorAction <ActionPreference>] [-WarningAction <Acti | |
2557 | + onPreference>] [-ErrorVariable <String>] [-WarningVariabl | |
2558 | + e <String>] [-OutVariable <String>] [-OutBuffer <Int32>] | |
2559 | + Enter-PSSession [[-Session] <PSSession>] [-Verbose] [-Deb | |
2560 | + ug] [-ErrorAction <ActionPreference>] [-WarningAction <Ac | |
2561 | + tionPreference>] [-ErrorVariable <String>] [-WarningVaria | |
2562 | + ble <String>] [-OutVariable <String>] [-OutBuffer <Int32> | |
2563 | + ] | |
2564 | + Enter-PSSession [[-ConnectionUri] <Uri>] [-Credential <PS | |
2565 | + Credential>] [-ConfigurationName <String>] [-AllowRedirec | |
2566 | + tion] [-SessionOption <PSSessionOption>] [-Authentication | |
2567 | + <AuthenticationMechanism>] [-CertificateThumbprint <Stri | |
2568 | + ng>] [-Verbose] [-Debug] [-ErrorAction <ActionPreference> | |
2569 | + ] [-WarningAction <ActionPreference>] [-ErrorVariable <St | |
2570 | + ring>] [-WarningVariable <String>] [-OutVariable <String> | |
2571 | + ] [-OutBuffer <Int32>] | |
2572 | + Enter-PSSession [-InstanceId <Guid>] [-Verbose] [-Debug] | |
2573 | + [-ErrorAction <ActionPreference>] [-WarningAction <Action | |
2574 | + Preference>] [-ErrorVariable <String>] [-WarningVariable | |
2575 | + <String>] [-OutVariable <String>] [-OutBuffer <Int32>] | |
2576 | + Enter-PSSession [[-Id] <Int32>] [-Verbose] [-Debug] [-Err | |
2577 | + orAction <ActionPreference>] [-WarningAction <ActionPrefe | |
2578 | + rence>] [-ErrorVariable <String>] [-WarningVariable <Stri | |
2579 | + ng>] [-OutVariable <String>] [-OutBuffer <Int32>] | |
2580 | + Enter-PSSession [-Name <String>] [-Verbose] [-Debug] [-Er | |
2581 | + rorAction <ActionPreference>] [-WarningAction <ActionPref | |
2582 | + erence>] [-ErrorVariable <String>] [-WarningVariable <Str | |
2583 | + ing>] [-OutVariable <String>] [-OutBuffer <Int32>] | |
2584 | + | |
2585 | +DefaultParameterSet : ComputerName | |
2586 | +OutputType : {} | |
2587 | +Name : Enter-PSSession | |
2588 | +CommandType : Cmdlet | |
2589 | +Visibility : Public | |
2590 | +ModuleName : Microsoft.PowerShell.Core | |
2591 | +Module : | |
2592 | +Parameters : {[ComputerName, System.Management.Automation.ParameterMet | |
2593 | + adata], [Session, System.Management.Automation.ParameterM | |
2594 | + etadata], [ConnectionUri, System.Management.Automation.Pa | |
2595 | + rameterMetadata], [InstanceId, System.Management.Automati | |
2596 | + on.ParameterMetadata]...} | |
2597 | +ParameterSets : {[-ComputerName] <String> [-Credential <PSCredential>] [- | |
2598 | + Port <Int32>] [-UseSSL] [-ConfigurationName <String>] [-A | |
2599 | + pplicationName <String>] [-SessionOption <PSSessionOption | |
2600 | + >] [-Authentication <AuthenticationMechanism>] [-Certific | |
2601 | + ateThumbprint <String>] [-Verbose] [-Debug] [-ErrorAction | |
2602 | + <ActionPreference>] [-WarningAction <ActionPreference>] | |
2603 | + [-ErrorVariable <String>] [-WarningVariable <String>] [-O | |
2604 | + utVariable <String>] [-OutBuffer <Int32>], [[-Session] <P | |
2605 | + SSession>] [-Verbose] [-Debug] [-ErrorAction <ActionPrefe | |
2606 | + rence>] [-WarningAction <ActionPreference>] [-ErrorVariab | |
2607 | + le <String>] [-WarningVariable <String>] [-OutVariable <S | |
2608 | + tring>] [-OutBuffer <Int32>], [[-ConnectionUri] <Uri>] [- | |
2609 | + Credential <PSCredential>] [-ConfigurationName <String>] | |
2610 | + [-AllowRedirection] [-SessionOption <PSSessionOption>] [- | |
2611 | + Authentication <AuthenticationMechanism>] [-CertificateTh | |
2612 | + umbprint <String>] [-Verbose] [-Debug] [-ErrorAction <Act | |
2613 | + ionPreference>] [-WarningAction <ActionPreference>] [-Err | |
2614 | + orVariable <String>] [-WarningVariable <String>] [-OutVar | |
2615 | + iable <String>] [-OutBuffer <Int32>], [-InstanceId <Guid> | |
2616 | + ] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [ | |
2617 | + -WarningAction <ActionPreference>] [-ErrorVariable <Strin | |
2618 | + g>] [-WarningVariable <String>] [-OutVariable <String>] [ | |
2619 | + -OutBuffer <Int32>]...} | |
2620 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=135210 | |
2621 | +DLL : C:\Windows\assembly\GAC_MSIL\System.Management.Automation | |
2622 | + \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d | |
2623 | + ll | |
2624 | + | |
2625 | +Name : epal | |
2626 | +CommandType : Alias | |
2627 | +Definition : Export-Alias | |
2628 | +ReferencedCommand : Export-Alias | |
2629 | +ResolvedCommand : Export-Alias | |
2630 | + | |
2631 | +Name : epcsv | |
2632 | +CommandType : Alias | |
2633 | +Definition : Export-Csv | |
2634 | +ReferencedCommand : Export-Csv | |
2635 | +ResolvedCommand : Export-Csv | |
2636 | + | |
2637 | +Name : epsn | |
2638 | +CommandType : Alias | |
2639 | +Definition : Export-PSSession | |
2640 | +ReferencedCommand : Export-PSSession | |
2641 | +ResolvedCommand : Export-PSSession | |
2642 | + | |
2643 | +Name : erase | |
2644 | +CommandType : Alias | |
2645 | +Definition : Remove-Item | |
2646 | +ReferencedCommand : Remove-Item | |
2647 | +ResolvedCommand : Remove-Item | |
2648 | + | |
2649 | +Name : etsn | |
2650 | +CommandType : Alias | |
2651 | +Definition : Enter-PSSession | |
2652 | +ReferencedCommand : Enter-PSSession | |
2653 | +ResolvedCommand : Enter-PSSession | |
2654 | + | |
2655 | + | |
2656 | +Verb : Exit | |
2657 | +Noun : PSSession | |
2658 | +HelpFile : System.Management.Automation.dll-Help.xml | |
2659 | +PSSnapIn : Microsoft.PowerShell.Core | |
2660 | +ImplementingType : Microsoft.PowerShell.Commands.ExitPSSessionCommand | |
2661 | +Definition : Exit-PSSession [-Verbose] [-Debug] [-ErrorAction <ActionP | |
2662 | + reference>] [-WarningAction <ActionPreference>] [-ErrorVa | |
2663 | + riable <String>] [-WarningVariable <String>] [-OutVariabl | |
2664 | + e <String>] [-OutBuffer <Int32>] | |
2665 | + | |
2666 | +DefaultParameterSet : | |
2667 | +OutputType : {} | |
2668 | +Name : Exit-PSSession | |
2669 | +CommandType : Cmdlet | |
2670 | +Visibility : Public | |
2671 | +ModuleName : Microsoft.PowerShell.Core | |
2672 | +Module : | |
2673 | +Parameters : {[Verbose, System.Management.Automation.ParameterMetadata | |
2674 | + ], [Debug, System.Management.Automation.ParameterMetadata | |
2675 | + ], [ErrorAction, System.Management.Automation.ParameterMe | |
2676 | + tadata], [WarningAction, System.Management.Automation.Par | |
2677 | + ameterMetadata]...} | |
2678 | +ParameterSets : {[-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [- | |
2679 | + WarningAction <ActionPreference>] [-ErrorVariable <String | |
2680 | + >] [-WarningVariable <String>] [-OutVariable <String>] [- | |
2681 | + OutBuffer <Int32>]} | |
2682 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=135212 | |
2683 | +DLL : C:\Windows\assembly\GAC_MSIL\System.Management.Automation | |
2684 | + \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d | |
2685 | + ll | |
2686 | + | |
2687 | + | |
2688 | +Verb : Export | |
2689 | +Noun : Alias | |
2690 | +HelpFile : Microsoft.PowerShell.Commands.Utility.dll-Help.xml | |
2691 | +PSSnapIn : Microsoft.PowerShell.Utility | |
2692 | +ImplementingType : Microsoft.PowerShell.Commands.ExportAliasCommand | |
2693 | +Definition : Export-Alias [-Path] <String> [[-Name] <String[]>] [-Pass | |
2694 | + Thru] [-As <ExportAliasFormat>] [-Append] [-Force] [-NoCl | |
2695 | + obber] [-Description <String>] [-Scope <String>] [-Verbos | |
2696 | + e] [-Debug] [-ErrorAction <ActionPreference>] [-WarningAc | |
2697 | + tion <ActionPreference>] [-ErrorVariable <String>] [-Warn | |
2698 | + ingVariable <String>] [-OutVariable <String>] [-OutBuffer | |
2699 | + <Int32>] [-WhatIf] [-Confirm] | |
2700 | + | |
2701 | +DefaultParameterSet : | |
2702 | +OutputType : {System.Management.Automation.AliasInfo} | |
2703 | +Name : Export-Alias | |
2704 | +CommandType : Cmdlet | |
2705 | +Visibility : Public | |
2706 | +ModuleName : Microsoft.PowerShell.Utility | |
2707 | +Module : | |
2708 | +Parameters : {[Path, System.Management.Automation.ParameterMetadata], | |
2709 | + [Name, System.Management.Automation.ParameterMetadata], [ | |
2710 | + PassThru, System.Management.Automation.ParameterMetadata] | |
2711 | + , [As, System.Management.Automation.ParameterMetadata]... | |
2712 | + } | |
2713 | +ParameterSets : {[-Path] <String> [[-Name] <String[]>] [-PassThru] [-As < | |
2714 | + ExportAliasFormat>] [-Append] [-Force] [-NoClobber] [-Des | |
2715 | + cription <String>] [-Scope <String>] [-Verbose] [-Debug] | |
2716 | + [-ErrorAction <ActionPreference>] [-WarningAction <Action | |
2717 | + Preference>] [-ErrorVariable <String>] [-WarningVariable | |
2718 | + <String>] [-OutVariable <String>] [-OutBuffer <Int32>] [- | |
2719 | + WhatIf] [-Confirm]} | |
2720 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113296 | |
2721 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
2722 | + s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell. | |
2723 | + Commands.Utility.dll | |
2724 | + | |
2725 | + | |
2726 | +Verb : Export | |
2727 | +Noun : Clixml | |
2728 | +HelpFile : Microsoft.PowerShell.Commands.Utility.dll-Help.xml | |
2729 | +PSSnapIn : Microsoft.PowerShell.Utility | |
2730 | +ImplementingType : Microsoft.PowerShell.Commands.ExportClixmlCommand | |
2731 | +Definition : Export-Clixml [-Path] <String> [-Depth <Int32>] -InputObj | |
2732 | + ect <PSObject> [-Force] [-NoClobber] [-Encoding <String>] | |
2733 | + [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [- | |
2734 | + WarningAction <ActionPreference>] [-ErrorVariable <String | |
2735 | + >] [-WarningVariable <String>] [-OutVariable <String>] [- | |
2736 | + OutBuffer <Int32>] [-WhatIf] [-Confirm] | |
2737 | + | |
2738 | +DefaultParameterSet : | |
2739 | +OutputType : {} | |
2740 | +Name : Export-Clixml | |
2741 | +CommandType : Cmdlet | |
2742 | +Visibility : Public | |
2743 | +ModuleName : Microsoft.PowerShell.Utility | |
2744 | +Module : | |
2745 | +Parameters : {[Depth, System.Management.Automation.ParameterMetadata], | |
2746 | + [Path, System.Management.Automation.ParameterMetadata], | |
2747 | + [InputObject, System.Management.Automation.ParameterMetad | |
2748 | + ata], [Force, System.Management.Automation.ParameterMetad | |
2749 | + ata]...} | |
2750 | +ParameterSets : {[-Path] <String> [-Depth <Int32>] -InputObject <PSObject | |
2751 | + > [-Force] [-NoClobber] [-Encoding <String>] [-Verbose] [ | |
2752 | + -Debug] [-ErrorAction <ActionPreference>] [-WarningAction | |
2753 | + <ActionPreference>] [-ErrorVariable <String>] [-WarningV | |
2754 | + ariable <String>] [-OutVariable <String>] [-OutBuffer <In | |
2755 | + t32>] [-WhatIf] [-Confirm]} | |
2756 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113297 | |
2757 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
2758 | + s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell. | |
2759 | + Commands.Utility.dll | |
2760 | + | |
2761 | + | |
2762 | +Verb : Export | |
2763 | +Noun : Console | |
2764 | +HelpFile : System.Management.Automation.dll-Help.xml | |
2765 | +PSSnapIn : Microsoft.PowerShell.Core | |
2766 | +ImplementingType : Microsoft.PowerShell.Commands.ExportConsoleCommand | |
2767 | +Definition : Export-Console [[-Path] <String>] [-Force] [-NoClobber] [ | |
2768 | + -Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-Wa | |
2769 | + rningAction <ActionPreference>] [-ErrorVariable <String>] | |
2770 | + [-WarningVariable <String>] [-OutVariable <String>] [-Ou | |
2771 | + tBuffer <Int32>] [-WhatIf] [-Confirm] | |
2772 | + | |
2773 | +DefaultParameterSet : | |
2774 | +OutputType : {} | |
2775 | +Name : Export-Console | |
2776 | +CommandType : Cmdlet | |
2777 | +Visibility : Public | |
2778 | +ModuleName : Microsoft.PowerShell.Core | |
2779 | +Module : | |
2780 | +Parameters : {[Path, System.Management.Automation.ParameterMetadata], | |
2781 | + [Force, System.Management.Automation.ParameterMetadata], | |
2782 | + [NoClobber, System.Management.Automation.ParameterMetadat | |
2783 | + a], [Verbose, System.Management.Automation.ParameterMetad | |
2784 | + ata]...} | |
2785 | +ParameterSets : {[[-Path] <String>] [-Force] [-NoClobber] [-Verbose] [-De | |
2786 | + bug] [-ErrorAction <ActionPreference>] [-WarningAction <A | |
2787 | + ctionPreference>] [-ErrorVariable <String>] [-WarningVari | |
2788 | + able <String>] [-OutVariable <String>] [-OutBuffer <Int32 | |
2789 | + >] [-WhatIf] [-Confirm]} | |
2790 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113298 | |
2791 | +DLL : C:\Windows\assembly\GAC_MSIL\System.Management.Automation | |
2792 | + \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d | |
2793 | + ll | |
2794 | + | |
2795 | + | |
2796 | +Verb : Export | |
2797 | +Noun : Counter | |
2798 | +HelpFile : Microsoft.PowerShell.Commands.Diagnostics.dll-Help.xml | |
2799 | +PSSnapIn : Microsoft.PowerShell.Diagnostics | |
2800 | +ImplementingType : Microsoft.PowerShell.Commands.ExportCounterCommand | |
2801 | +Definition : Export-Counter [-Path] <String> [-FileFormat <String>] [- | |
2802 | + MaxSize <UInt32>] -InputObject <PerformanceCounterSampleS | |
2803 | + et[]> [-Force] [-Circular] [-Verbose] [-Debug] [-ErrorAct | |
2804 | + ion <ActionPreference>] [-WarningAction <ActionPreference | |
2805 | + >] [-ErrorVariable <String>] [-WarningVariable <String>] | |
2806 | + [-OutVariable <String>] [-OutBuffer <Int32>] | |
2807 | + | |
2808 | +DefaultParameterSet : ExportCounterSet | |
2809 | +OutputType : {} | |
2810 | +Name : Export-Counter | |
2811 | +CommandType : Cmdlet | |
2812 | +Visibility : Public | |
2813 | +ModuleName : Microsoft.PowerShell.Diagnostics | |
2814 | +Module : | |
2815 | +Parameters : {[Path, System.Management.Automation.ParameterMetadata], | |
2816 | + [FileFormat, System.Management.Automation.ParameterMetada | |
2817 | + ta], [MaxSize, System.Management.Automation.ParameterMeta | |
2818 | + data], [InputObject, System.Management.Automation.Paramet | |
2819 | + erMetadata]...} | |
2820 | +ParameterSets : {[-Path] <String> [-FileFormat <String>] [-MaxSize <UInt3 | |
2821 | + 2>] -InputObject <PerformanceCounterSampleSet[]> [-Force] | |
2822 | + [-Circular] [-Verbose] [-Debug] [-ErrorAction <ActionPre | |
2823 | + ference>] [-WarningAction <ActionPreference>] [-ErrorVari | |
2824 | + able <String>] [-WarningVariable <String>] [-OutVariable | |
2825 | + <String>] [-OutBuffer <Int32>]} | |
2826 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=138337 | |
2827 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
2828 | + s.Diagnostics\1.0.0.0__31bf3856ad364e35\Microsoft.PowerSh | |
2829 | + ell.Commands.Diagnostics.dll | |
2830 | + | |
2831 | + | |
2832 | +Verb : Export | |
2833 | +Noun : Csv | |
2834 | +HelpFile : Microsoft.PowerShell.Commands.Utility.dll-Help.xml | |
2835 | +PSSnapIn : Microsoft.PowerShell.Utility | |
2836 | +ImplementingType : Microsoft.PowerShell.Commands.ExportCsvCommand | |
2837 | +Definition : Export-Csv [-Path] <String> [[-Delimiter] <Char>] -InputO | |
2838 | + bject <PSObject> [-Force] [-NoClobber] [-Encoding <String | |
2839 | + >] [-NoTypeInformation] [-Verbose] [-Debug] [-ErrorAction | |
2840 | + <ActionPreference>] [-WarningAction <ActionPreference>] | |
2841 | + [-ErrorVariable <String>] [-WarningVariable <String>] [-O | |
2842 | + utVariable <String>] [-OutBuffer <Int32>] [-WhatIf] [-Con | |
2843 | + firm] | |
2844 | + Export-Csv [-Path] <String> -InputObject <PSObject> [-For | |
2845 | + ce] [-NoClobber] [-Encoding <String>] [-UseCulture] [-NoT | |
2846 | + ypeInformation] [-Verbose] [-Debug] [-ErrorAction <Action | |
2847 | + Preference>] [-WarningAction <ActionPreference>] [-ErrorV | |
2848 | + ariable <String>] [-WarningVariable <String>] [-OutVariab | |
2849 | + le <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm] | |
2850 | + | |
2851 | +DefaultParameterSet : Delimiter | |
2852 | +OutputType : {} | |
2853 | +Name : Export-Csv | |
2854 | +CommandType : Cmdlet | |
2855 | +Visibility : Public | |
2856 | +ModuleName : Microsoft.PowerShell.Utility | |
2857 | +Module : | |
2858 | +Parameters : {[InputObject, System.Management.Automation.ParameterMeta | |
2859 | + data], [Path, System.Management.Automation.ParameterMetad | |
2860 | + ata], [Force, System.Management.Automation.ParameterMetad | |
2861 | + ata], [NoClobber, System.Management.Automation.ParameterM | |
2862 | + etadata]...} | |
2863 | +ParameterSets : {[-Path] <String> [[-Delimiter] <Char>] -InputObject <PSO | |
2864 | + bject> [-Force] [-NoClobber] [-Encoding <String>] [-NoTyp | |
2865 | + eInformation] [-Verbose] [-Debug] [-ErrorAction <ActionPr | |
2866 | + eference>] [-WarningAction <ActionPreference>] [-ErrorVar | |
2867 | + iable <String>] [-WarningVariable <String>] [-OutVariable | |
2868 | + <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm], [-P | |
2869 | + ath] <String> -InputObject <PSObject> [-Force] [-NoClobbe | |
2870 | + r] [-Encoding <String>] [-UseCulture] [-NoTypeInformation | |
2871 | + ] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [ | |
2872 | + -WarningAction <ActionPreference>] [-ErrorVariable <Strin | |
2873 | + g>] [-WarningVariable <String>] [-OutVariable <String>] [ | |
2874 | + -OutBuffer <Int32>] [-WhatIf] [-Confirm]} | |
2875 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113299 | |
2876 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
2877 | + s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell. | |
2878 | + Commands.Utility.dll | |
2879 | + | |
2880 | + | |
2881 | +Verb : Export | |
2882 | +Noun : FormatData | |
2883 | +HelpFile : Microsoft.PowerShell.Commands.Utility.dll-Help.xml | |
2884 | +PSSnapIn : Microsoft.PowerShell.Utility | |
2885 | +ImplementingType : Microsoft.PowerShell.Commands.ExportFormatDataCommand | |
2886 | +Definition : Export-FormatData [-InputObject <ExtendedTypeDefinition[] | |
2887 | + >] [-Path <String>] [-Force] [-NoClobber] [-IncludeScript | |
2888 | + Block] [-Verbose] [-Debug] [-ErrorAction <ActionPreferenc | |
2889 | + e>] [-WarningAction <ActionPreference>] [-ErrorVariable < | |
2890 | + String>] [-WarningVariable <String>] [-OutVariable <Strin | |
2891 | + g>] [-OutBuffer <Int32>] | |
2892 | + | |
2893 | +DefaultParameterSet : | |
2894 | +OutputType : {} | |
2895 | +Name : Export-FormatData | |
2896 | +CommandType : Cmdlet | |
2897 | +Visibility : Public | |
2898 | +ModuleName : Microsoft.PowerShell.Utility | |
2899 | +Module : | |
2900 | +Parameters : {[InputObject, System.Management.Automation.ParameterMeta | |
2901 | + data], [Path, System.Management.Automation.ParameterMetad | |
2902 | + ata], [Force, System.Management.Automation.ParameterMetad | |
2903 | + ata], [NoClobber, System.Management.Automation.ParameterM | |
2904 | + etadata]...} | |
2905 | +ParameterSets : {[-InputObject <ExtendedTypeDefinition[]>] [-Path <String | |
2906 | + >] [-Force] [-NoClobber] [-IncludeScriptBlock] [-Verbose] | |
2907 | + [-Debug] [-ErrorAction <ActionPreference>] [-WarningActi | |
2908 | + on <ActionPreference>] [-ErrorVariable <String>] [-Warnin | |
2909 | + gVariable <String>] [-OutVariable <String>] [-OutBuffer < | |
2910 | + Int32>]} | |
2911 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=144302 | |
2912 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
2913 | + s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell. | |
2914 | + Commands.Utility.dll | |
2915 | + | |
2916 | + | |
2917 | +Verb : Export | |
2918 | +Noun : ModuleMember | |
2919 | +HelpFile : System.Management.Automation.dll-Help.xml | |
2920 | +PSSnapIn : Microsoft.PowerShell.Core | |
2921 | +ImplementingType : Microsoft.PowerShell.Commands.ExportModuleMemberCommand | |
2922 | +Definition : Export-ModuleMember [[-Function] <String[]>] [-Cmdlet <St | |
2923 | + ring[]>] [-Variable <String[]>] [-Alias <String[]>] [-Ver | |
2924 | + bose] [-Debug] [-ErrorAction <ActionPreference>] [-Warnin | |
2925 | + gAction <ActionPreference>] [-ErrorVariable <String>] [-W | |
2926 | + arningVariable <String>] [-OutVariable <String>] [-OutBuf | |
2927 | + fer <Int32>] | |
2928 | + | |
2929 | +DefaultParameterSet : | |
2930 | +OutputType : {} | |
2931 | +Name : Export-ModuleMember | |
2932 | +CommandType : Cmdlet | |
2933 | +Visibility : Public | |
2934 | +ModuleName : Microsoft.PowerShell.Core | |
2935 | +Module : | |
2936 | +Parameters : {[Function, System.Management.Automation.ParameterMetadat | |
2937 | + a], [Cmdlet, System.Management.Automation.ParameterMetada | |
2938 | + ta], [Variable, System.Management.Automation.ParameterMet | |
2939 | + adata], [Alias, System.Management.Automation.ParameterMet | |
2940 | + adata]...} | |
2941 | +ParameterSets : {[[-Function] <String[]>] [-Cmdlet <String[]>] [-Variable | |
2942 | + <String[]>] [-Alias <String[]>] [-Verbose] [-Debug] [-Er | |
2943 | + rorAction <ActionPreference>] [-WarningAction <ActionPref | |
2944 | + erence>] [-ErrorVariable <String>] [-WarningVariable <Str | |
2945 | + ing>] [-OutVariable <String>] [-OutBuffer <Int32>]} | |
2946 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=141551 | |
2947 | +DLL : C:\Windows\assembly\GAC_MSIL\System.Management.Automation | |
2948 | + \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d | |
2949 | + ll | |
2950 | + | |
2951 | + | |
2952 | +Verb : Export | |
2953 | +Noun : PSSession | |
2954 | +HelpFile : Microsoft.PowerShell.Commands.Utility.dll-Help.xml | |
2955 | +PSSnapIn : Microsoft.PowerShell.Utility | |
2956 | +ImplementingType : Microsoft.PowerShell.Commands.ExportPSSessionCommand | |
2957 | +Definition : Export-PSSession [-Session] <PSSession> [-OutputModule] < | |
2958 | + String> [[-CommandName] <String[]>] [[-FormatTypeName] <S | |
2959 | + tring[]>] [-Force] [-Encoding <String>] [-AllowClobber] [ | |
2960 | + -ArgumentList <Object[]>] [-CommandType <CommandTypes>] [ | |
2961 | + -Module <String[]>] [-Verbose] [-Debug] [-ErrorAction <Ac | |
2962 | + tionPreference>] [-WarningAction <ActionPreference>] [-Er | |
2963 | + rorVariable <String>] [-WarningVariable <String>] [-OutVa | |
2964 | + riable <String>] [-OutBuffer <Int32>] | |
2965 | + | |
2966 | +DefaultParameterSet : | |
2967 | +OutputType : {} | |
2968 | +Name : Export-PSSession | |
2969 | +CommandType : Cmdlet | |
2970 | +Visibility : Public | |
2971 | +ModuleName : Microsoft.PowerShell.Utility | |
2972 | +Module : | |
2973 | +Parameters : {[OutputModule, System.Management.Automation.ParameterMet | |
2974 | + adata], [Force, System.Management.Automation.ParameterMet | |
2975 | + adata], [Encoding, System.Management.Automation.Parameter | |
2976 | + Metadata], [CommandName, System.Management.Automation.Par | |
2977 | + ameterMetadata]...} | |
2978 | +ParameterSets : {[-Session] <PSSession> [-OutputModule] <String> [[-Comma | |
2979 | + ndName] <String[]>] [[-FormatTypeName] <String[]>] [-Forc | |
2980 | + e] [-Encoding <String>] [-AllowClobber] [-ArgumentList <O | |
2981 | + bject[]>] [-CommandType <CommandTypes>] [-Module <String[ | |
2982 | + ]>] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] | |
2983 | + [-WarningAction <ActionPreference>] [-ErrorVariable <Str | |
2984 | + ing>] [-WarningVariable <String>] [-OutVariable <String>] | |
2985 | + [-OutBuffer <Int32>]} | |
2986 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=135213 | |
2987 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
2988 | + s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell. | |
2989 | + Commands.Utility.dll | |
2990 | + | |
2991 | +Name : exsn | |
2992 | +CommandType : Alias | |
2993 | +Definition : Exit-PSSession | |
2994 | +ReferencedCommand : Exit-PSSession | |
2995 | +ResolvedCommand : Exit-PSSession | |
2996 | + | |
2997 | + | |
2998 | +ScriptBlock : Set-Location F: | |
2999 | +CmdletBinding : False | |
3000 | +DefaultParameterSet : | |
3001 | +Definition : Set-Location F: | |
3002 | +Options : None | |
3003 | +Description : | |
3004 | +OutputType : {} | |
3005 | +Name : F: | |
3006 | +CommandType : Function | |
3007 | +Visibility : Public | |
3008 | +ModuleName : | |
3009 | +Module : | |
3010 | +Parameters : {} | |
3011 | +ParameterSets : {} | |
3012 | +HelpUri : | |
3013 | + | |
3014 | +Name : fc | |
3015 | +CommandType : Alias | |
3016 | +Definition : Format-Custom | |
3017 | +ReferencedCommand : Format-Custom | |
3018 | +ResolvedCommand : Format-Custom | |
3019 | + | |
3020 | +Name : fl | |
3021 | +CommandType : Alias | |
3022 | +Definition : Format-List | |
3023 | +ReferencedCommand : Format-List | |
3024 | +ResolvedCommand : Format-List | |
3025 | + | |
3026 | +Name : foreach | |
3027 | +CommandType : Alias | |
3028 | +Definition : ForEach-Object | |
3029 | +ReferencedCommand : ForEach-Object | |
3030 | +ResolvedCommand : ForEach-Object | |
3031 | + | |
3032 | + | |
3033 | +Verb : ForEach | |
3034 | +Noun : Object | |
3035 | +HelpFile : System.Management.Automation.dll-Help.xml | |
3036 | +PSSnapIn : Microsoft.PowerShell.Core | |
3037 | +ImplementingType : Microsoft.PowerShell.Commands.ForEachObjectCommand | |
3038 | +Definition : ForEach-Object [-Process] <ScriptBlock[]> [-InputObject < | |
3039 | + PSObject>] [-Begin <ScriptBlock>] [-End <ScriptBlock>] [- | |
3040 | + Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-War | |
3041 | + ningAction <ActionPreference>] [-ErrorVariable <String>] | |
3042 | + [-WarningVariable <String>] [-OutVariable <String>] [-Out | |
3043 | + Buffer <Int32>] | |
3044 | + | |
3045 | +DefaultParameterSet : | |
3046 | +OutputType : {} | |
3047 | +Name : ForEach-Object | |
3048 | +CommandType : Cmdlet | |
3049 | +Visibility : Public | |
3050 | +ModuleName : Microsoft.PowerShell.Core | |
3051 | +Module : | |
3052 | +Parameters : {[InputObject, System.Management.Automation.ParameterMeta | |
3053 | + data], [Begin, System.Management.Automation.ParameterMeta | |
3054 | + data], [Process, System.Management.Automation.ParameterMe | |
3055 | + tadata], [End, System.Management.Automation.ParameterMeta | |
3056 | + data]...} | |
3057 | +ParameterSets : {[-Process] <ScriptBlock[]> [-InputObject <PSObject>] [-B | |
3058 | + egin <ScriptBlock>] [-End <ScriptBlock>] [-Verbose] [-Deb | |
3059 | + ug] [-ErrorAction <ActionPreference>] [-WarningAction <Ac | |
3060 | + tionPreference>] [-ErrorVariable <String>] [-WarningVaria | |
3061 | + ble <String>] [-OutVariable <String>] [-OutBuffer <Int32> | |
3062 | + ]} | |
3063 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113300 | |
3064 | +DLL : C:\Windows\assembly\GAC_MSIL\System.Management.Automation | |
3065 | + \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d | |
3066 | + ll | |
3067 | + | |
3068 | + | |
3069 | +Verb : Format | |
3070 | +Noun : Custom | |
3071 | +HelpFile : Microsoft.PowerShell.Commands.Utility.dll-Help.xml | |
3072 | +PSSnapIn : Microsoft.PowerShell.Utility | |
3073 | +ImplementingType : Microsoft.PowerShell.Commands.FormatCustomCommand | |
3074 | +Definition : Format-Custom [[-Property] <Object[]>] [-Depth <Int32>] [ | |
3075 | + -GroupBy <Object>] [-View <String>] [-ShowError] [-Displa | |
3076 | + yError] [-Force] [-Expand <String>] [-InputObject <PSObje | |
3077 | + ct>] [-Verbose] [-Debug] [-ErrorAction <ActionPreference> | |
3078 | + ] [-WarningAction <ActionPreference>] [-ErrorVariable <St | |
3079 | + ring>] [-WarningVariable <String>] [-OutVariable <String> | |
3080 | + ] [-OutBuffer <Int32>] | |
3081 | + | |
3082 | +DefaultParameterSet : | |
3083 | +OutputType : {} | |
3084 | +Name : Format-Custom | |
3085 | +CommandType : Cmdlet | |
3086 | +Visibility : Public | |
3087 | +ModuleName : Microsoft.PowerShell.Utility | |
3088 | +Module : | |
3089 | +Parameters : {[Property, System.Management.Automation.ParameterMetadat | |
3090 | + a], [Depth, System.Management.Automation.ParameterMetadat | |
3091 | + a], [GroupBy, System.Management.Automation.ParameterMetad | |
3092 | + ata], [View, System.Management.Automation.ParameterMetada | |
3093 | + ta]...} | |
3094 | +ParameterSets : {[[-Property] <Object[]>] [-Depth <Int32>] [-GroupBy <Obj | |
3095 | + ect>] [-View <String>] [-ShowError] [-DisplayError] [-For | |
3096 | + ce] [-Expand <String>] [-InputObject <PSObject>] [-Verbos | |
3097 | + e] [-Debug] [-ErrorAction <ActionPreference>] [-WarningAc | |
3098 | + tion <ActionPreference>] [-ErrorVariable <String>] [-Warn | |
3099 | + ingVariable <String>] [-OutVariable <String>] [-OutBuffer | |
3100 | + <Int32>]} | |
3101 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113301 | |
3102 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
3103 | + s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell. | |
3104 | + Commands.Utility.dll | |
3105 | + | |
3106 | + | |
3107 | +Verb : Format | |
3108 | +Noun : List | |
3109 | +HelpFile : Microsoft.PowerShell.Commands.Utility.dll-Help.xml | |
3110 | +PSSnapIn : Microsoft.PowerShell.Utility | |
3111 | +ImplementingType : Microsoft.PowerShell.Commands.FormatListCommand | |
3112 | +Definition : Format-List [[-Property] <Object[]>] [-GroupBy <Object>] | |
3113 | + [-View <String>] [-ShowError] [-DisplayError] [-Force] [- | |
3114 | + Expand <String>] [-InputObject <PSObject>] [-Verbose] [-D | |
3115 | + ebug] [-ErrorAction <ActionPreference>] [-WarningAction < | |
3116 | + ActionPreference>] [-ErrorVariable <String>] [-WarningVar | |
3117 | + iable <String>] [-OutVariable <String>] [-OutBuffer <Int3 | |
3118 | + 2>] | |
3119 | + | |
3120 | +DefaultParameterSet : | |
3121 | +OutputType : {} | |
3122 | +Name : Format-List | |
3123 | +CommandType : Cmdlet | |
3124 | +Visibility : Public | |
3125 | +ModuleName : Microsoft.PowerShell.Utility | |
3126 | +Module : | |
3127 | +Parameters : {[Property, System.Management.Automation.ParameterMetadat | |
3128 | + a], [GroupBy, System.Management.Automation.ParameterMetad | |
3129 | + ata], [View, System.Management.Automation.ParameterMetada | |
3130 | + ta], [ShowError, System.Management.Automation.ParameterMe | |
3131 | + tadata]...} | |
3132 | +ParameterSets : {[[-Property] <Object[]>] [-GroupBy <Object>] [-View <Str | |
3133 | + ing>] [-ShowError] [-DisplayError] [-Force] [-Expand <Str | |
3134 | + ing>] [-InputObject <PSObject>] [-Verbose] [-Debug] [-Err | |
3135 | + orAction <ActionPreference>] [-WarningAction <ActionPrefe | |
3136 | + rence>] [-ErrorVariable <String>] [-WarningVariable <Stri | |
3137 | + ng>] [-OutVariable <String>] [-OutBuffer <Int32>]} | |
3138 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113302 | |
3139 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
3140 | + s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell. | |
3141 | + Commands.Utility.dll | |
3142 | + | |
3143 | + | |
3144 | +Verb : Format | |
3145 | +Noun : Table | |
3146 | +HelpFile : Microsoft.PowerShell.Commands.Utility.dll-Help.xml | |
3147 | +PSSnapIn : Microsoft.PowerShell.Utility | |
3148 | +ImplementingType : Microsoft.PowerShell.Commands.FormatTableCommand | |
3149 | +Definition : Format-Table [[-Property] <Object[]>] [-AutoSize] [-HideT | |
3150 | + ableHeaders] [-Wrap] [-GroupBy <Object>] [-View <String>] | |
3151 | + [-ShowError] [-DisplayError] [-Force] [-Expand <String>] | |
3152 | + [-InputObject <PSObject>] [-Verbose] [-Debug] [-ErrorAct | |
3153 | + ion <ActionPreference>] [-WarningAction <ActionPreference | |
3154 | + >] [-ErrorVariable <String>] [-WarningVariable <String>] | |
3155 | + [-OutVariable <String>] [-OutBuffer <Int32>] | |
3156 | + | |
3157 | +DefaultParameterSet : | |
3158 | +OutputType : {} | |
3159 | +Name : Format-Table | |
3160 | +CommandType : Cmdlet | |
3161 | +Visibility : Public | |
3162 | +ModuleName : Microsoft.PowerShell.Utility | |
3163 | +Module : | |
3164 | +Parameters : {[AutoSize, System.Management.Automation.ParameterMetadat | |
3165 | + a], [HideTableHeaders, System.Management.Automation.Param | |
3166 | + eterMetadata], [Wrap, System.Management.Automation.Parame | |
3167 | + terMetadata], [Property, System.Management.Automation.Par | |
3168 | + ameterMetadata]...} | |
3169 | +ParameterSets : {[[-Property] <Object[]>] [-AutoSize] [-HideTableHeaders] | |
3170 | + [-Wrap] [-GroupBy <Object>] [-View <String>] [-ShowError | |
3171 | + ] [-DisplayError] [-Force] [-Expand <String>] [-InputObje | |
3172 | + ct <PSObject>] [-Verbose] [-Debug] [-ErrorAction <ActionP | |
3173 | + reference>] [-WarningAction <ActionPreference>] [-ErrorVa | |
3174 | + riable <String>] [-WarningVariable <String>] [-OutVariabl | |
3175 | + e <String>] [-OutBuffer <Int32>]} | |
3176 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113303 | |
3177 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
3178 | + s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell. | |
3179 | + Commands.Utility.dll | |
3180 | + | |
3181 | + | |
3182 | +Verb : Format | |
3183 | +Noun : Wide | |
3184 | +HelpFile : Microsoft.PowerShell.Commands.Utility.dll-Help.xml | |
3185 | +PSSnapIn : Microsoft.PowerShell.Utility | |
3186 | +ImplementingType : Microsoft.PowerShell.Commands.FormatWideCommand | |
3187 | +Definition : Format-Wide [[-Property] <Object>] [-AutoSize] [-Column < | |
3188 | + Int32>] [-GroupBy <Object>] [-View <String>] [-ShowError] | |
3189 | + [-DisplayError] [-Force] [-Expand <String>] [-InputObjec | |
3190 | + t <PSObject>] [-Verbose] [-Debug] [-ErrorAction <ActionPr | |
3191 | + eference>] [-WarningAction <ActionPreference>] [-ErrorVar | |
3192 | + iable <String>] [-WarningVariable <String>] [-OutVariable | |
3193 | + <String>] [-OutBuffer <Int32>] | |
3194 | + | |
3195 | +DefaultParameterSet : | |
3196 | +OutputType : {} | |
3197 | +Name : Format-Wide | |
3198 | +CommandType : Cmdlet | |
3199 | +Visibility : Public | |
3200 | +ModuleName : Microsoft.PowerShell.Utility | |
3201 | +Module : | |
3202 | +Parameters : {[Property, System.Management.Automation.ParameterMetadat | |
3203 | + a], [AutoSize, System.Management.Automation.ParameterMeta | |
3204 | + data], [Column, System.Management.Automation.ParameterMet | |
3205 | + adata], [GroupBy, System.Management.Automation.ParameterM | |
3206 | + etadata]...} | |
3207 | +ParameterSets : {[[-Property] <Object>] [-AutoSize] [-Column <Int32>] [-G | |
3208 | + roupBy <Object>] [-View <String>] [-ShowError] [-DisplayE | |
3209 | + rror] [-Force] [-Expand <String>] [-InputObject <PSObject | |
3210 | + >] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] | |
3211 | + [-WarningAction <ActionPreference>] [-ErrorVariable <Stri | |
3212 | + ng>] [-WarningVariable <String>] [-OutVariable <String>] | |
3213 | + [-OutBuffer <Int32>]} | |
3214 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113304 | |
3215 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
3216 | + s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell. | |
3217 | + Commands.Utility.dll | |
3218 | + | |
3219 | +Name : ft | |
3220 | +CommandType : Alias | |
3221 | +Definition : Format-Table | |
3222 | +ReferencedCommand : Format-Table | |
3223 | +ResolvedCommand : Format-Table | |
3224 | + | |
3225 | +Name : fw | |
3226 | +CommandType : Alias | |
3227 | +Definition : Format-Wide | |
3228 | +ReferencedCommand : Format-Wide | |
3229 | +ResolvedCommand : Format-Wide | |
3230 | + | |
3231 | + | |
3232 | +ScriptBlock : Set-Location G: | |
3233 | +CmdletBinding : False | |
3234 | +DefaultParameterSet : | |
3235 | +Definition : Set-Location G: | |
3236 | +Options : None | |
3237 | +Description : | |
3238 | +OutputType : {} | |
3239 | +Name : G: | |
3240 | +CommandType : Function | |
3241 | +Visibility : Public | |
3242 | +ModuleName : | |
3243 | +Module : | |
3244 | +Parameters : {} | |
3245 | +ParameterSets : {} | |
3246 | +HelpUri : | |
3247 | + | |
3248 | +Name : gal | |
3249 | +CommandType : Alias | |
3250 | +Definition : Get-Alias | |
3251 | +ReferencedCommand : Get-Alias | |
3252 | +ResolvedCommand : Get-Alias | |
3253 | + | |
3254 | +Name : gbp | |
3255 | +CommandType : Alias | |
3256 | +Definition : Get-PSBreakpoint | |
3257 | +ReferencedCommand : Get-PSBreakpoint | |
3258 | +ResolvedCommand : Get-PSBreakpoint | |
3259 | + | |
3260 | +Name : gc | |
3261 | +CommandType : Alias | |
3262 | +Definition : Get-Content | |
3263 | +ReferencedCommand : Get-Content | |
3264 | +ResolvedCommand : Get-Content | |
3265 | + | |
3266 | +Name : gci | |
3267 | +CommandType : Alias | |
3268 | +Definition : Get-ChildItem | |
3269 | +ReferencedCommand : Get-ChildItem | |
3270 | +ResolvedCommand : Get-ChildItem | |
3271 | + | |
3272 | +Name : gcm | |
3273 | +CommandType : Alias | |
3274 | +Definition : Get-Command | |
3275 | +ReferencedCommand : Get-Command | |
3276 | +ResolvedCommand : Get-Command | |
3277 | + | |
3278 | +Name : gcs | |
3279 | +CommandType : Alias | |
3280 | +Definition : Get-PSCallStack | |
3281 | +ReferencedCommand : Get-PSCallStack | |
3282 | +ResolvedCommand : Get-PSCallStack | |
3283 | + | |
3284 | +Name : gdr | |
3285 | +CommandType : Alias | |
3286 | +Definition : Get-PSDrive | |
3287 | +ReferencedCommand : Get-PSDrive | |
3288 | +ResolvedCommand : Get-PSDrive | |
3289 | + | |
3290 | + | |
3291 | +Verb : Get | |
3292 | +Noun : Acl | |
3293 | +HelpFile : Microsoft.PowerShell.Security.dll-Help.xml | |
3294 | +PSSnapIn : Microsoft.PowerShell.Security | |
3295 | +ImplementingType : Microsoft.PowerShell.Commands.GetAclCommand | |
3296 | +Definition : Get-Acl [[-Path] <String[]>] [-Audit] [-Filter <String>] | |
3297 | + [-Include <String[]>] [-Exclude <String[]>] [-Verbose] [- | |
3298 | + Debug] [-ErrorAction <ActionPreference>] [-WarningAction | |
3299 | + <ActionPreference>] [-ErrorVariable <String>] [-WarningVa | |
3300 | + riable <String>] [-OutVariable <String>] [-OutBuffer <Int | |
3301 | + 32>] [-UseTransaction] | |
3302 | + | |
3303 | +DefaultParameterSet : | |
3304 | +OutputType : {System.Security.AccessControl.FileSecurity, System.Secur | |
3305 | + ity.AccessControl.DirectorySecurity} | |
3306 | +Name : Get-Acl | |
3307 | +CommandType : Cmdlet | |
3308 | +Visibility : Public | |
3309 | +ModuleName : Microsoft.PowerShell.Security | |
3310 | +Module : | |
3311 | +Parameters : {[Path, System.Management.Automation.ParameterMetadata], | |
3312 | + [Audit, System.Management.Automation.ParameterMetadata], | |
3313 | + [Filter, System.Management.Automation.ParameterMetadata], | |
3314 | + [Include, System.Management.Automation.ParameterMetadata | |
3315 | + ]...} | |
3316 | +ParameterSets : {[[-Path] <String[]>] [-Audit] [-Filter <String>] [-Inclu | |
3317 | + de <String[]>] [-Exclude <String[]>] [-Verbose] [-Debug] | |
3318 | + [-ErrorAction <ActionPreference>] [-WarningAction <Action | |
3319 | + Preference>] [-ErrorVariable <String>] [-WarningVariable | |
3320 | + <String>] [-OutVariable <String>] [-OutBuffer <Int32>] [- | |
3321 | + UseTransaction]} | |
3322 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113305 | |
3323 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Securit | |
3324 | + y\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.Security | |
3325 | + .dll | |
3326 | + | |
3327 | + | |
3328 | +Verb : Get | |
3329 | +Noun : Alias | |
3330 | +HelpFile : Microsoft.PowerShell.Commands.Utility.dll-Help.xml | |
3331 | +PSSnapIn : Microsoft.PowerShell.Utility | |
3332 | +ImplementingType : Microsoft.PowerShell.Commands.GetAliasCommand | |
3333 | +Definition : Get-Alias [[-Name] <String[]>] [-Exclude <String[]>] [-Sc | |
3334 | + ope <String>] [-Verbose] [-Debug] [-ErrorAction <ActionPr | |
3335 | + eference>] [-WarningAction <ActionPreference>] [-ErrorVar | |
3336 | + iable <String>] [-WarningVariable <String>] [-OutVariable | |
3337 | + <String>] [-OutBuffer <Int32>] | |
3338 | + Get-Alias [-Exclude <String[]>] [-Scope <String>] [-Defin | |
3339 | + ition <String[]>] [-Verbose] [-Debug] [-ErrorAction <Acti | |
3340 | + onPreference>] [-WarningAction <ActionPreference>] [-Erro | |
3341 | + rVariable <String>] [-WarningVariable <String>] [-OutVari | |
3342 | + able <String>] [-OutBuffer <Int32>] | |
3343 | + | |
3344 | +DefaultParameterSet : Default | |
3345 | +OutputType : {System.Management.Automation.AliasInfo} | |
3346 | +Name : Get-Alias | |
3347 | +CommandType : Cmdlet | |
3348 | +Visibility : Public | |
3349 | +ModuleName : Microsoft.PowerShell.Utility | |
3350 | +Module : | |
3351 | +Parameters : {[Name, System.Management.Automation.ParameterMetadata], | |
3352 | + [Exclude, System.Management.Automation.ParameterMetadata] | |
3353 | + , [Scope, System.Management.Automation.ParameterMetadata] | |
3354 | + , [Definition, System.Management.Automation.ParameterMeta | |
3355 | + data]...} | |
3356 | +ParameterSets : {[[-Name] <String[]>] [-Exclude <String[]>] [-Scope <Stri | |
3357 | + ng>] [-Verbose] [-Debug] [-ErrorAction <ActionPreference> | |
3358 | + ] [-WarningAction <ActionPreference>] [-ErrorVariable <St | |
3359 | + ring>] [-WarningVariable <String>] [-OutVariable <String> | |
3360 | + ] [-OutBuffer <Int32>], [-Exclude <String[]>] [-Scope <St | |
3361 | + ring>] [-Definition <String[]>] [-Verbose] [-Debug] [-Err | |
3362 | + orAction <ActionPreference>] [-WarningAction <ActionPrefe | |
3363 | + rence>] [-ErrorVariable <String>] [-WarningVariable <Stri | |
3364 | + ng>] [-OutVariable <String>] [-OutBuffer <Int32>]} | |
3365 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113306 | |
3366 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
3367 | + s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell. | |
3368 | + Commands.Utility.dll | |
3369 | + | |
3370 | + | |
3371 | +Verb : Get | |
3372 | +Noun : AuthenticodeSignature | |
3373 | +HelpFile : Microsoft.PowerShell.Security.dll-Help.xml | |
3374 | +PSSnapIn : Microsoft.PowerShell.Security | |
3375 | +ImplementingType : Microsoft.PowerShell.Commands.GetAuthenticodeSignatureCom | |
3376 | + mand | |
3377 | +Definition : Get-AuthenticodeSignature [-FilePath] <String[]> [-Verbos | |
3378 | + e] [-Debug] [-ErrorAction <ActionPreference>] [-WarningAc | |
3379 | + tion <ActionPreference>] [-ErrorVariable <String>] [-Warn | |
3380 | + ingVariable <String>] [-OutVariable <String>] [-OutBuffer | |
3381 | + <Int32>] | |
3382 | + | |
3383 | +DefaultParameterSet : | |
3384 | +OutputType : {System.Management.Automation.Signature} | |
3385 | +Name : Get-AuthenticodeSignature | |
3386 | +CommandType : Cmdlet | |
3387 | +Visibility : Public | |
3388 | +ModuleName : Microsoft.PowerShell.Security | |
3389 | +Module : | |
3390 | +Parameters : {[FilePath, System.Management.Automation.ParameterMetadat | |
3391 | + a], [Verbose, System.Management.Automation.ParameterMetad | |
3392 | + ata], [Debug, System.Management.Automation.ParameterMetad | |
3393 | + ata], [ErrorAction, System.Management.Automation.Paramete | |
3394 | + rMetadata]...} | |
3395 | +ParameterSets : {[-FilePath] <String[]> [-Verbose] [-Debug] [-ErrorAction | |
3396 | + <ActionPreference>] [-WarningAction <ActionPreference>] | |
3397 | + [-ErrorVariable <String>] [-WarningVariable <String>] [-O | |
3398 | + utVariable <String>] [-OutBuffer <Int32>]} | |
3399 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113307 | |
3400 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Securit | |
3401 | + y\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.Security | |
3402 | + .dll | |
3403 | + | |
3404 | + | |
3405 | +Verb : Get | |
3406 | +Noun : ChildItem | |
3407 | +HelpFile : Microsoft.PowerShell.Commands.Management.dll-Help.xml | |
3408 | +PSSnapIn : Microsoft.PowerShell.Management | |
3409 | +ImplementingType : Microsoft.PowerShell.Commands.GetChildItemCommand | |
3410 | +Definition : Get-ChildItem [[-Path] <String[]>] [[-Filter] <String>] [ | |
3411 | + -Include <String[]>] [-Exclude <String[]>] [-Recurse] [-F | |
3412 | + orce] [-Name] [-Verbose] [-Debug] [-ErrorAction <ActionPr | |
3413 | + eference>] [-WarningAction <ActionPreference>] [-ErrorVar | |
3414 | + iable <String>] [-WarningVariable <String>] [-OutVariable | |
3415 | + <String>] [-OutBuffer <Int32>] [-UseTransaction] | |
3416 | + Get-ChildItem [-LiteralPath] <String[]> [[-Filter] <Strin | |
3417 | + g>] [-Include <String[]>] [-Exclude <String[]>] [-Recurse | |
3418 | + ] [-Force] [-Name] [-Verbose] [-Debug] [-ErrorAction <Act | |
3419 | + ionPreference>] [-WarningAction <ActionPreference>] [-Err | |
3420 | + orVariable <String>] [-WarningVariable <String>] [-OutVar | |
3421 | + iable <String>] [-OutBuffer <Int32>] [-UseTransaction] | |
3422 | + | |
3423 | +DefaultParameterSet : Items | |
3424 | +OutputType : {System.IO.FileInfo, System.IO.DirectoryInfo, System.Stri | |
3425 | + ng} | |
3426 | +Name : Get-ChildItem | |
3427 | +CommandType : Cmdlet | |
3428 | +Visibility : Public | |
3429 | +ModuleName : Microsoft.PowerShell.Management | |
3430 | +Module : | |
3431 | +Parameters : {[Path, System.Management.Automation.ParameterMetadata], | |
3432 | + [LiteralPath, System.Management.Automation.ParameterMetad | |
3433 | + ata], [Filter, System.Management.Automation.ParameterMeta | |
3434 | + data], [Include, System.Management.Automation.ParameterMe | |
3435 | + tadata]...} | |
3436 | +ParameterSets : {[[-Path] <String[]>] [[-Filter] <String>] [-Include <Str | |
3437 | + ing[]>] [-Exclude <String[]>] [-Recurse] [-Force] [-Name] | |
3438 | + [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [- | |
3439 | + WarningAction <ActionPreference>] [-ErrorVariable <String | |
3440 | + >] [-WarningVariable <String>] [-OutVariable <String>] [- | |
3441 | + OutBuffer <Int32>] [-UseTransaction], [-LiteralPath] <Str | |
3442 | + ing[]> [[-Filter] <String>] [-Include <String[]>] [-Exclu | |
3443 | + de <String[]>] [-Recurse] [-Force] [-Name] [-Verbose] [-D | |
3444 | + ebug] [-ErrorAction <ActionPreference>] [-WarningAction < | |
3445 | + ActionPreference>] [-ErrorVariable <String>] [-WarningVar | |
3446 | + iable <String>] [-OutVariable <String>] [-OutBuffer <Int3 | |
3447 | + 2>] [-UseTransaction]} | |
3448 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113308 | |
3449 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
3450 | + s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe | |
3451 | + ll.Commands.Management.dll | |
3452 | + | |
3453 | + | |
3454 | +Verb : Get | |
3455 | +Noun : Command | |
3456 | +HelpFile : System.Management.Automation.dll-Help.xml | |
3457 | +PSSnapIn : Microsoft.PowerShell.Core | |
3458 | +ImplementingType : Microsoft.PowerShell.Commands.GetCommandCommand | |
3459 | +Definition : Get-Command [[-ArgumentList] <Object[]>] [-Verb <String[] | |
3460 | + >] [-Noun <String[]>] [-Module <String[]>] [-TotalCount < | |
3461 | + Int32>] [-Syntax] [-Verbose] [-Debug] [-ErrorAction <Acti | |
3462 | + onPreference>] [-WarningAction <ActionPreference>] [-Erro | |
3463 | + rVariable <String>] [-WarningVariable <String>] [-OutVari | |
3464 | + able <String>] [-OutBuffer <Int32>] | |
3465 | + Get-Command [[-Name] <String[]>] [[-ArgumentList] <Object | |
3466 | + []>] [-Module <String[]>] [-CommandType <CommandTypes>] [ | |
3467 | + -TotalCount <Int32>] [-Syntax] [-Verbose] [-Debug] [-Erro | |
3468 | + rAction <ActionPreference>] [-WarningAction <ActionPrefer | |
3469 | + ence>] [-ErrorVariable <String>] [-WarningVariable <Strin | |
3470 | + g>] [-OutVariable <String>] [-OutBuffer <Int32>] | |
3471 | + | |
3472 | +DefaultParameterSet : CmdletSet | |
3473 | +OutputType : {System.Management.Automation.AliasInfo, System.Managemen | |
3474 | + t.Automation.ApplicationInfo, System.Management.Automatio | |
3475 | + n.FunctionInfo, System.Management.Automation.CmdletInfo.. | |
3476 | + .} | |
3477 | +Name : Get-Command | |
3478 | +CommandType : Cmdlet | |
3479 | +Visibility : Public | |
3480 | +ModuleName : Microsoft.PowerShell.Core | |
3481 | +Module : | |
3482 | +Parameters : {[Name, System.Management.Automation.ParameterMetadata], | |
3483 | + [Verb, System.Management.Automation.ParameterMetadata], [ | |
3484 | + Noun, System.Management.Automation.ParameterMetadata], [M | |
3485 | + odule, System.Management.Automation.ParameterMetadata]... | |
3486 | + } | |
3487 | +ParameterSets : {[[-ArgumentList] <Object[]>] [-Verb <String[]>] [-Noun < | |
3488 | + String[]>] [-Module <String[]>] [-TotalCount <Int32>] [-S | |
3489 | + yntax] [-Verbose] [-Debug] [-ErrorAction <ActionPreferenc | |
3490 | + e>] [-WarningAction <ActionPreference>] [-ErrorVariable < | |
3491 | + String>] [-WarningVariable <String>] [-OutVariable <Strin | |
3492 | + g>] [-OutBuffer <Int32>], [[-Name] <String[]>] [[-Argumen | |
3493 | + tList] <Object[]>] [-Module <String[]>] [-CommandType <Co | |
3494 | + mmandTypes>] [-TotalCount <Int32>] [-Syntax] [-Verbose] [ | |
3495 | + -Debug] [-ErrorAction <ActionPreference>] [-WarningAction | |
3496 | + <ActionPreference>] [-ErrorVariable <String>] [-WarningV | |
3497 | + ariable <String>] [-OutVariable <String>] [-OutBuffer <In | |
3498 | + t32>]} | |
3499 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113309 | |
3500 | +DLL : C:\Windows\assembly\GAC_MSIL\System.Management.Automation | |
3501 | + \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d | |
3502 | + ll | |
3503 | + | |
3504 | + | |
3505 | +Verb : Get | |
3506 | +Noun : ComputerRestorePoint | |
3507 | +HelpFile : Microsoft.PowerShell.Commands.Management.dll-Help.xml | |
3508 | +PSSnapIn : Microsoft.PowerShell.Management | |
3509 | +ImplementingType : Microsoft.PowerShell.Commands.GetComputerRestorePointComm | |
3510 | + and | |
3511 | +Definition : Get-ComputerRestorePoint [[-RestorePoint] <Int32[]>] [-Ve | |
3512 | + rbose] [-Debug] [-ErrorAction <ActionPreference>] [-Warni | |
3513 | + ngAction <ActionPreference>] [-ErrorVariable <String>] [- | |
3514 | + WarningVariable <String>] [-OutVariable <String>] [-OutBu | |
3515 | + ffer <Int32>] | |
3516 | + Get-ComputerRestorePoint -LastStatus [-Verbose] [-Debug] | |
3517 | + [-ErrorAction <ActionPreference>] [-WarningAction <Action | |
3518 | + Preference>] [-ErrorVariable <String>] [-WarningVariable | |
3519 | + <String>] [-OutVariable <String>] [-OutBuffer <Int32>] | |
3520 | + | |
3521 | +DefaultParameterSet : ID | |
3522 | +OutputType : {} | |
3523 | +Name : Get-ComputerRestorePoint | |
3524 | +CommandType : Cmdlet | |
3525 | +Visibility : Public | |
3526 | +ModuleName : Microsoft.PowerShell.Management | |
3527 | +Module : | |
3528 | +Parameters : {[RestorePoint, System.Management.Automation.ParameterMet | |
3529 | + adata], [LastStatus, System.Management.Automation.Paramet | |
3530 | + erMetadata], [Verbose, System.Management.Automation.Param | |
3531 | + eterMetadata], [Debug, System.Management.Automation.Param | |
3532 | + eterMetadata]...} | |
3533 | +ParameterSets : {[[-RestorePoint] <Int32[]>] [-Verbose] [-Debug] [-ErrorA | |
3534 | + ction <ActionPreference>] [-WarningAction <ActionPreferen | |
3535 | + ce>] [-ErrorVariable <String>] [-WarningVariable <String> | |
3536 | + ] [-OutVariable <String>] [-OutBuffer <Int32>], -LastStat | |
3537 | + us [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] | |
3538 | + [-WarningAction <ActionPreference>] [-ErrorVariable <Stri | |
3539 | + ng>] [-WarningVariable <String>] [-OutVariable <String>] | |
3540 | + [-OutBuffer <Int32>]} | |
3541 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=135215 | |
3542 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
3543 | + s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe | |
3544 | + ll.Commands.Management.dll | |
3545 | + | |
3546 | + | |
3547 | +Verb : Get | |
3548 | +Noun : Content | |
3549 | +HelpFile : Microsoft.PowerShell.Commands.Management.dll-Help.xml | |
3550 | +PSSnapIn : Microsoft.PowerShell.Management | |
3551 | +ImplementingType : Microsoft.PowerShell.Commands.GetContentCommand | |
3552 | +Definition : Get-Content [-Path] <String[]> [-ReadCount <Int64>] [-Tot | |
3553 | + alCount <Int64>] [-Filter <String>] [-Include <String[]>] | |
3554 | + [-Exclude <String[]>] [-Force] [-Credential <PSCredentia | |
3555 | + l>] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] | |
3556 | + [-WarningAction <ActionPreference>] [-ErrorVariable <Str | |
3557 | + ing>] [-WarningVariable <String>] [-OutVariable <String>] | |
3558 | + [-OutBuffer <Int32>] [-UseTransaction] [-Delimiter <Stri | |
3559 | + ng>] [-Wait] [-Encoding <FileSystemCmdletProviderEncoding | |
3560 | + >] | |
3561 | + Get-Content [-LiteralPath] <String[]> [-ReadCount <Int64> | |
3562 | + ] [-TotalCount <Int64>] [-Filter <String>] [-Include <Str | |
3563 | + ing[]>] [-Exclude <String[]>] [-Force] [-Credential <PSCr | |
3564 | + edential>] [-Verbose] [-Debug] [-ErrorAction <ActionPrefe | |
3565 | + rence>] [-WarningAction <ActionPreference>] [-ErrorVariab | |
3566 | + le <String>] [-WarningVariable <String>] [-OutVariable <S | |
3567 | + tring>] [-OutBuffer <Int32>] [-UseTransaction] [-Delimite | |
3568 | + r <String>] [-Wait] [-Encoding <FileSystemCmdletProviderE | |
3569 | + ncoding>] | |
3570 | + | |
3571 | +DefaultParameterSet : Path | |
3572 | +OutputType : {} | |
3573 | +Name : Get-Content | |
3574 | +CommandType : Cmdlet | |
3575 | +Visibility : Public | |
3576 | +ModuleName : Microsoft.PowerShell.Management | |
3577 | +Module : | |
3578 | +Parameters : {[ReadCount, System.Management.Automation.ParameterMetada | |
3579 | + ta], [TotalCount, System.Management.Automation.ParameterM | |
3580 | + etadata], [Path, System.Management.Automation.ParameterMe | |
3581 | + tadata], [LiteralPath, System.Management.Automation.Param | |
3582 | + eterMetadata]...} | |
3583 | +ParameterSets : {[-Path] <String[]> [-ReadCount <Int64>] [-TotalCount <In | |
3584 | + t64>] [-Filter <String>] [-Include <String[]>] [-Exclude | |
3585 | + <String[]>] [-Force] [-Credential <PSCredential>] [-Verbo | |
3586 | + se] [-Debug] [-ErrorAction <ActionPreference>] [-WarningA | |
3587 | + ction <ActionPreference>] [-ErrorVariable <String>] [-War | |
3588 | + ningVariable <String>] [-OutVariable <String>] [-OutBuffe | |
3589 | + r <Int32>] [-UseTransaction] [-Delimiter <String>] [-Wait | |
3590 | + ] [-Encoding <FileSystemCmdletProviderEncoding>], [-Liter | |
3591 | + alPath] <String[]> [-ReadCount <Int64>] [-TotalCount <Int | |
3592 | + 64>] [-Filter <String>] [-Include <String[]>] [-Exclude < | |
3593 | + String[]>] [-Force] [-Credential <PSCredential>] [-Verbos | |
3594 | + e] [-Debug] [-ErrorAction <ActionPreference>] [-WarningAc | |
3595 | + tion <ActionPreference>] [-ErrorVariable <String>] [-Warn | |
3596 | + ingVariable <String>] [-OutVariable <String>] [-OutBuffer | |
3597 | + <Int32>] [-UseTransaction] [-Delimiter <String>] [-Wait] | |
3598 | + [-Encoding <FileSystemCmdletProviderEncoding>]} | |
3599 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113310 | |
3600 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
3601 | + s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe | |
3602 | + ll.Commands.Management.dll | |
3603 | + | |
3604 | + | |
3605 | +Verb : Get | |
3606 | +Noun : Counter | |
3607 | +HelpFile : Microsoft.PowerShell.Commands.Diagnostics.dll-Help.xml | |
3608 | +PSSnapIn : Microsoft.PowerShell.Diagnostics | |
3609 | +ImplementingType : Microsoft.PowerShell.Commands.GetCounterCommand | |
3610 | +Definition : Get-Counter [[-Counter] <String[]>] [-SampleInterval <Int | |
3611 | + 32>] [-MaxSamples <Int64>] [-Continuous] [-ComputerName < | |
3612 | + String[]>] [-Verbose] [-Debug] [-ErrorAction <ActionPrefe | |
3613 | + rence>] [-WarningAction <ActionPreference>] [-ErrorVariab | |
3614 | + le <String>] [-WarningVariable <String>] [-OutVariable <S | |
3615 | + tring>] [-OutBuffer <Int32>] | |
3616 | + Get-Counter [-ListSet] <String[]> [-ComputerName <String[ | |
3617 | + ]>] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] | |
3618 | + [-WarningAction <ActionPreference>] [-ErrorVariable <Str | |
3619 | + ing>] [-WarningVariable <String>] [-OutVariable <String>] | |
3620 | + [-OutBuffer <Int32>] | |
3621 | + | |
3622 | +DefaultParameterSet : GetCounterSet | |
3623 | +OutputType : {} | |
3624 | +Name : Get-Counter | |
3625 | +CommandType : Cmdlet | |
3626 | +Visibility : Public | |
3627 | +ModuleName : Microsoft.PowerShell.Diagnostics | |
3628 | +Module : | |
3629 | +Parameters : {[ListSet, System.Management.Automation.ParameterMetadata | |
3630 | + ], [Counter, System.Management.Automation.ParameterMetada | |
3631 | + ta], [SampleInterval, System.Management.Automation.Parame | |
3632 | + terMetadata], [MaxSamples, System.Management.Automation.P | |
3633 | + arameterMetadata]...} | |
3634 | +ParameterSets : {[[-Counter] <String[]>] [-SampleInterval <Int32>] [-MaxS | |
3635 | + amples <Int64>] [-Continuous] [-ComputerName <String[]>] | |
3636 | + [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-W | |
3637 | + arningAction <ActionPreference>] [-ErrorVariable <String> | |
3638 | + ] [-WarningVariable <String>] [-OutVariable <String>] [-O | |
3639 | + utBuffer <Int32>], [-ListSet] <String[]> [-ComputerName < | |
3640 | + String[]>] [-Verbose] [-Debug] [-ErrorAction <ActionPrefe | |
3641 | + rence>] [-WarningAction <ActionPreference>] [-ErrorVariab | |
3642 | + le <String>] [-WarningVariable <String>] [-OutVariable <S | |
3643 | + tring>] [-OutBuffer <Int32>]} | |
3644 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=138335 | |
3645 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
3646 | + s.Diagnostics\1.0.0.0__31bf3856ad364e35\Microsoft.PowerSh | |
3647 | + ell.Commands.Diagnostics.dll | |
3648 | + | |
3649 | + | |
3650 | +Verb : Get | |
3651 | +Noun : Credential | |
3652 | +HelpFile : Microsoft.PowerShell.Security.dll-Help.xml | |
3653 | +PSSnapIn : Microsoft.PowerShell.Security | |
3654 | +ImplementingType : Microsoft.PowerShell.Commands.GetCredentialCommand | |
3655 | +Definition : Get-Credential [-Credential] <PSCredential> [-Verbose] [- | |
3656 | + Debug] [-ErrorAction <ActionPreference>] [-WarningAction | |
3657 | + <ActionPreference>] [-ErrorVariable <String>] [-WarningVa | |
3658 | + riable <String>] [-OutVariable <String>] [-OutBuffer <Int | |
3659 | + 32>] | |
3660 | + | |
3661 | +DefaultParameterSet : | |
3662 | +OutputType : {System.Management.Automation.PSCredential} | |
3663 | +Name : Get-Credential | |
3664 | +CommandType : Cmdlet | |
3665 | +Visibility : Public | |
3666 | +ModuleName : Microsoft.PowerShell.Security | |
3667 | +Module : | |
3668 | +Parameters : {[Credential, System.Management.Automation.ParameterMetad | |
3669 | + ata], [Verbose, System.Management.Automation.ParameterMet | |
3670 | + adata], [Debug, System.Management.Automation.ParameterMet | |
3671 | + adata], [ErrorAction, System.Management.Automation.Parame | |
3672 | + terMetadata]...} | |
3673 | +ParameterSets : {[-Credential] <PSCredential> [-Verbose] [-Debug] [-Error | |
3674 | + Action <ActionPreference>] [-WarningAction <ActionPrefere | |
3675 | + nce>] [-ErrorVariable <String>] [-WarningVariable <String | |
3676 | + >] [-OutVariable <String>] [-OutBuffer <Int32>]} | |
3677 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113311 | |
3678 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Securit | |
3679 | + y\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.Security | |
3680 | + .dll | |
3681 | + | |
3682 | + | |
3683 | +Verb : Get | |
3684 | +Noun : Culture | |
3685 | +HelpFile : Microsoft.PowerShell.Commands.Utility.dll-Help.xml | |
3686 | +PSSnapIn : Microsoft.PowerShell.Utility | |
3687 | +ImplementingType : Microsoft.PowerShell.Commands.GetCultureCommand | |
3688 | +Definition : Get-Culture [-Verbose] [-Debug] [-ErrorAction <ActionPref | |
3689 | + erence>] [-WarningAction <ActionPreference>] [-ErrorVaria | |
3690 | + ble <String>] [-WarningVariable <String>] [-OutVariable < | |
3691 | + String>] [-OutBuffer <Int32>] | |
3692 | + | |
3693 | +DefaultParameterSet : | |
3694 | +OutputType : {System.Globalization.CultureInfo} | |
3695 | +Name : Get-Culture | |
3696 | +CommandType : Cmdlet | |
3697 | +Visibility : Public | |
3698 | +ModuleName : Microsoft.PowerShell.Utility | |
3699 | +Module : | |
3700 | +Parameters : {[Verbose, System.Management.Automation.ParameterMetadata | |
3701 | + ], [Debug, System.Management.Automation.ParameterMetadata | |
3702 | + ], [ErrorAction, System.Management.Automation.ParameterMe | |
3703 | + tadata], [WarningAction, System.Management.Automation.Par | |
3704 | + ameterMetadata]...} | |
3705 | +ParameterSets : {[-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [- | |
3706 | + WarningAction <ActionPreference>] [-ErrorVariable <String | |
3707 | + >] [-WarningVariable <String>] [-OutVariable <String>] [- | |
3708 | + OutBuffer <Int32>]} | |
3709 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113312 | |
3710 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
3711 | + s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell. | |
3712 | + Commands.Utility.dll | |
3713 | + | |
3714 | + | |
3715 | +Verb : Get | |
3716 | +Noun : Date | |
3717 | +HelpFile : Microsoft.PowerShell.Commands.Utility.dll-Help.xml | |
3718 | +PSSnapIn : Microsoft.PowerShell.Utility | |
3719 | +ImplementingType : Microsoft.PowerShell.Commands.GetDateCommand | |
3720 | +Definition : Get-Date [[-Date] <DateTime>] [-Year <Int32>] [-Month <In | |
3721 | + t32>] [-Day <Int32>] [-Hour <Int32>] [-Minute <Int32>] [- | |
3722 | + Second <Int32>] [-DisplayHint <DisplayHintType>] [-Format | |
3723 | + <String>] [-Verbose] [-Debug] [-ErrorAction <ActionPrefe | |
3724 | + rence>] [-WarningAction <ActionPreference>] [-ErrorVariab | |
3725 | + le <String>] [-WarningVariable <String>] [-OutVariable <S | |
3726 | + tring>] [-OutBuffer <Int32>] | |
3727 | + Get-Date [[-Date] <DateTime>] [-Year <Int32>] [-Month <In | |
3728 | + t32>] [-Day <Int32>] [-Hour <Int32>] [-Minute <Int32>] [- | |
3729 | + Second <Int32>] [-DisplayHint <DisplayHintType>] [-UForma | |
3730 | + t <String>] [-Verbose] [-Debug] [-ErrorAction <ActionPref | |
3731 | + erence>] [-WarningAction <ActionPreference>] [-ErrorVaria | |
3732 | + ble <String>] [-WarningVariable <String>] [-OutVariable < | |
3733 | + String>] [-OutBuffer <Int32>] | |
3734 | + | |
3735 | +DefaultParameterSet : net | |
3736 | +OutputType : {System.String, System.DateTime} | |
3737 | +Name : Get-Date | |
3738 | +CommandType : Cmdlet | |
3739 | +Visibility : Public | |
3740 | +ModuleName : Microsoft.PowerShell.Utility | |
3741 | +Module : | |
3742 | +Parameters : {[Date, System.Management.Automation.ParameterMetadata], | |
3743 | + [Year, System.Management.Automation.ParameterMetadata], [ | |
3744 | + Month, System.Management.Automation.ParameterMetadata], [ | |
3745 | + Day, System.Management.Automation.ParameterMetadata]...} | |
3746 | +ParameterSets : {[[-Date] <DateTime>] [-Year <Int32>] [-Month <Int32>] [- | |
3747 | + Day <Int32>] [-Hour <Int32>] [-Minute <Int32>] [-Second < | |
3748 | + Int32>] [-DisplayHint <DisplayHintType>] [-Format <String | |
3749 | + >] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] | |
3750 | + [-WarningAction <ActionPreference>] [-ErrorVariable <Stri | |
3751 | + ng>] [-WarningVariable <String>] [-OutVariable <String>] | |
3752 | + [-OutBuffer <Int32>], [[-Date] <DateTime>] [-Year <Int32> | |
3753 | + ] [-Month <Int32>] [-Day <Int32>] [-Hour <Int32>] [-Minut | |
3754 | + e <Int32>] [-Second <Int32>] [-DisplayHint <DisplayHintTy | |
3755 | + pe>] [-UFormat <String>] [-Verbose] [-Debug] [-ErrorActio | |
3756 | + n <ActionPreference>] [-WarningAction <ActionPreference>] | |
3757 | + [-ErrorVariable <String>] [-WarningVariable <String>] [- | |
3758 | + OutVariable <String>] [-OutBuffer <Int32>]} | |
3759 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113313 | |
3760 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
3761 | + s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell. | |
3762 | + Commands.Utility.dll | |
3763 | + | |
3764 | + | |
3765 | +Verb : Get | |
3766 | +Noun : Event | |
3767 | +HelpFile : Microsoft.PowerShell.Commands.Utility.dll-Help.xml | |
3768 | +PSSnapIn : Microsoft.PowerShell.Utility | |
3769 | +ImplementingType : Microsoft.PowerShell.Commands.GetEventCommand | |
3770 | +Definition : Get-Event [[-SourceIdentifier] <String>] [-Verbose] [-Deb | |
3771 | + ug] [-ErrorAction <ActionPreference>] [-WarningAction <Ac | |
3772 | + tionPreference>] [-ErrorVariable <String>] [-WarningVaria | |
3773 | + ble <String>] [-OutVariable <String>] [-OutBuffer <Int32> | |
3774 | + ] | |
3775 | + Get-Event [-EventIdentifier] <Int32> [-Verbose] [-Debug] | |
3776 | + [-ErrorAction <ActionPreference>] [-WarningAction <Action | |
3777 | + Preference>] [-ErrorVariable <String>] [-WarningVariable | |
3778 | + <String>] [-OutVariable <String>] [-OutBuffer <Int32>] | |
3779 | + | |
3780 | +DefaultParameterSet : BySource | |
3781 | +OutputType : {System.Management.Automation.PSEventArgs} | |
3782 | +Name : Get-Event | |
3783 | +CommandType : Cmdlet | |
3784 | +Visibility : Public | |
3785 | +ModuleName : Microsoft.PowerShell.Utility | |
3786 | +Module : | |
3787 | +Parameters : {[SourceIdentifier, System.Management.Automation.Paramete | |
3788 | + rMetadata], [EventIdentifier, System.Management.Automatio | |
3789 | + n.ParameterMetadata], [Verbose, System.Management.Automat | |
3790 | + ion.ParameterMetadata], [Debug, System.Management.Automat | |
3791 | + ion.ParameterMetadata]...} | |
3792 | +ParameterSets : {[[-SourceIdentifier] <String>] [-Verbose] [-Debug] [-Err | |
3793 | + orAction <ActionPreference>] [-WarningAction <ActionPrefe | |
3794 | + rence>] [-ErrorVariable <String>] [-WarningVariable <Stri | |
3795 | + ng>] [-OutVariable <String>] [-OutBuffer <Int32>], [-Even | |
3796 | + tIdentifier] <Int32> [-Verbose] [-Debug] [-ErrorAction <A | |
3797 | + ctionPreference>] [-WarningAction <ActionPreference>] [-E | |
3798 | + rrorVariable <String>] [-WarningVariable <String>] [-OutV | |
3799 | + ariable <String>] [-OutBuffer <Int32>]} | |
3800 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113453 | |
3801 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
3802 | + s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell. | |
3803 | + Commands.Utility.dll | |
3804 | + | |
3805 | + | |
3806 | +Verb : Get | |
3807 | +Noun : EventLog | |
3808 | +HelpFile : Microsoft.PowerShell.Commands.Management.dll-Help.xml | |
3809 | +PSSnapIn : Microsoft.PowerShell.Management | |
3810 | +ImplementingType : Microsoft.PowerShell.Commands.GetEventLogCommand | |
3811 | +Definition : Get-EventLog [-LogName] <String> [[-InstanceId] <Int64[]> | |
3812 | + ] [-ComputerName <String[]>] [-Newest <Int32>] [-After <D | |
3813 | + ateTime>] [-Before <DateTime>] [-UserName <String[]>] [-I | |
3814 | + ndex <Int32[]>] [-EntryType <String[]>] [-Source <String[ | |
3815 | + ]>] [-Message <String>] [-AsBaseObject] [-Verbose] [-Debu | |
3816 | + g] [-ErrorAction <ActionPreference>] [-WarningAction <Act | |
3817 | + ionPreference>] [-ErrorVariable <String>] [-WarningVariab | |
3818 | + le <String>] [-OutVariable <String>] [-OutBuffer <Int32>] | |
3819 | + Get-EventLog [-ComputerName <String[]>] [-List] [-AsStrin | |
3820 | + g] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] | |
3821 | + [-WarningAction <ActionPreference>] [-ErrorVariable <Stri | |
3822 | + ng>] [-WarningVariable <String>] [-OutVariable <String>] | |
3823 | + [-OutBuffer <Int32>] | |
3824 | + | |
3825 | +DefaultParameterSet : LogName | |
3826 | +OutputType : {} | |
3827 | +Name : Get-EventLog | |
3828 | +CommandType : Cmdlet | |
3829 | +Visibility : Public | |
3830 | +ModuleName : Microsoft.PowerShell.Management | |
3831 | +Module : | |
3832 | +Parameters : {[LogName, System.Management.Automation.ParameterMetadata | |
3833 | + ], [ComputerName, System.Management.Automation.ParameterM | |
3834 | + etadata], [Newest, System.Management.Automation.Parameter | |
3835 | + Metadata], [After, System.Management.Automation.Parameter | |
3836 | + Metadata]...} | |
3837 | +ParameterSets : {[-LogName] <String> [[-InstanceId] <Int64[]>] [-Computer | |
3838 | + Name <String[]>] [-Newest <Int32>] [-After <DateTime>] [- | |
3839 | + Before <DateTime>] [-UserName <String[]>] [-Index <Int32[ | |
3840 | + ]>] [-EntryType <String[]>] [-Source <String[]>] [-Messag | |
3841 | + e <String>] [-AsBaseObject] [-Verbose] [-Debug] [-ErrorAc | |
3842 | + tion <ActionPreference>] [-WarningAction <ActionPreferenc | |
3843 | + e>] [-ErrorVariable <String>] [-WarningVariable <String>] | |
3844 | + [-OutVariable <String>] [-OutBuffer <Int32>], [-Computer | |
3845 | + Name <String[]>] [-List] [-AsString] [-Verbose] [-Debug] | |
3846 | + [-ErrorAction <ActionPreference>] [-WarningAction <Action | |
3847 | + Preference>] [-ErrorVariable <String>] [-WarningVariable | |
3848 | + <String>] [-OutVariable <String>] [-OutBuffer <Int32>]} | |
3849 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113314 | |
3850 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
3851 | + s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe | |
3852 | + ll.Commands.Management.dll | |
3853 | + | |
3854 | + | |
3855 | +Verb : Get | |
3856 | +Noun : EventSubscriber | |
3857 | +HelpFile : Microsoft.PowerShell.Commands.Utility.dll-Help.xml | |
3858 | +PSSnapIn : Microsoft.PowerShell.Utility | |
3859 | +ImplementingType : Microsoft.PowerShell.Commands.GetEventSubscriberCommand | |
3860 | +Definition : Get-EventSubscriber [[-SourceIdentifier] <String>] [-Forc | |
3861 | + e] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] | |
3862 | + [-WarningAction <ActionPreference>] [-ErrorVariable <Stri | |
3863 | + ng>] [-WarningVariable <String>] [-OutVariable <String>] | |
3864 | + [-OutBuffer <Int32>] | |
3865 | + Get-EventSubscriber [-SubscriptionId] <Int32> [-Force] [- | |
3866 | + Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-War | |
3867 | + ningAction <ActionPreference>] [-ErrorVariable <String>] | |
3868 | + [-WarningVariable <String>] [-OutVariable <String>] [-Out | |
3869 | + Buffer <Int32>] | |
3870 | + | |
3871 | +DefaultParameterSet : BySource | |
3872 | +OutputType : {System.Management.Automation.PSEventSubscriber} | |
3873 | +Name : Get-EventSubscriber | |
3874 | +CommandType : Cmdlet | |
3875 | +Visibility : Public | |
3876 | +ModuleName : Microsoft.PowerShell.Utility | |
3877 | +Module : | |
3878 | +Parameters : {[SourceIdentifier, System.Management.Automation.Paramete | |
3879 | + rMetadata], [SubscriptionId, System.Management.Automation | |
3880 | + .ParameterMetadata], [Force, System.Management.Automation | |
3881 | + .ParameterMetadata], [Verbose, System.Management.Automati | |
3882 | + on.ParameterMetadata]...} | |
3883 | +ParameterSets : {[[-SourceIdentifier] <String>] [-Force] [-Verbose] [-Deb | |
3884 | + ug] [-ErrorAction <ActionPreference>] [-WarningAction <Ac | |
3885 | + tionPreference>] [-ErrorVariable <String>] [-WarningVaria | |
3886 | + ble <String>] [-OutVariable <String>] [-OutBuffer <Int32> | |
3887 | + ], [-SubscriptionId] <Int32> [-Force] [-Verbose] [-Debug] | |
3888 | + [-ErrorAction <ActionPreference>] [-WarningAction <Actio | |
3889 | + nPreference>] [-ErrorVariable <String>] [-WarningVariable | |
3890 | + <String>] [-OutVariable <String>] [-OutBuffer <Int32>]} | |
3891 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=135155 | |
3892 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
3893 | + s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell. | |
3894 | + Commands.Utility.dll | |
3895 | + | |
3896 | + | |
3897 | +Verb : Get | |
3898 | +Noun : ExecutionPolicy | |
3899 | +HelpFile : Microsoft.PowerShell.Security.dll-Help.xml | |
3900 | +PSSnapIn : Microsoft.PowerShell.Security | |
3901 | +ImplementingType : Microsoft.PowerShell.Commands.GetExecutionPolicyCommand | |
3902 | +Definition : Get-ExecutionPolicy [[-Scope] <ExecutionPolicyScope>] [-L | |
3903 | + ist] [-Verbose] [-Debug] [-ErrorAction <ActionPreference> | |
3904 | + ] [-WarningAction <ActionPreference>] [-ErrorVariable <St | |
3905 | + ring>] [-WarningVariable <String>] [-OutVariable <String> | |
3906 | + ] [-OutBuffer <Int32>] | |
3907 | + | |
3908 | +DefaultParameterSet : | |
3909 | +OutputType : {} | |
3910 | +Name : Get-ExecutionPolicy | |
3911 | +CommandType : Cmdlet | |
3912 | +Visibility : Public | |
3913 | +ModuleName : Microsoft.PowerShell.Security | |
3914 | +Module : | |
3915 | +Parameters : {[Scope, System.Management.Automation.ParameterMetadata], | |
3916 | + [List, System.Management.Automation.ParameterMetadata], | |
3917 | + [Verbose, System.Management.Automation.ParameterMetadata] | |
3918 | + , [Debug, System.Management.Automation.ParameterMetadata] | |
3919 | + ...} | |
3920 | +ParameterSets : {[[-Scope] <ExecutionPolicyScope>] [-List] [-Verbose] [-D | |
3921 | + ebug] [-ErrorAction <ActionPreference>] [-WarningAction < | |
3922 | + ActionPreference>] [-ErrorVariable <String>] [-WarningVar | |
3923 | + iable <String>] [-OutVariable <String>] [-OutBuffer <Int3 | |
3924 | + 2>]} | |
3925 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113315 | |
3926 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Securit | |
3927 | + y\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.Security | |
3928 | + .dll | |
3929 | + | |
3930 | + | |
3931 | +Verb : Get | |
3932 | +Noun : FormatData | |
3933 | +HelpFile : Microsoft.PowerShell.Commands.Utility.dll-Help.xml | |
3934 | +PSSnapIn : Microsoft.PowerShell.Utility | |
3935 | +ImplementingType : Microsoft.PowerShell.Commands.GetFormatDataCommand | |
3936 | +Definition : Get-FormatData [[-TypeName] <String[]>] [-Verbose] [-Debu | |
3937 | + g] [-ErrorAction <ActionPreference>] [-WarningAction <Act | |
3938 | + ionPreference>] [-ErrorVariable <String>] [-WarningVariab | |
3939 | + le <String>] [-OutVariable <String>] [-OutBuffer <Int32>] | |
3940 | + | |
3941 | +DefaultParameterSet : | |
3942 | +OutputType : {} | |
3943 | +Name : Get-FormatData | |
3944 | +CommandType : Cmdlet | |
3945 | +Visibility : Public | |
3946 | +ModuleName : Microsoft.PowerShell.Utility | |
3947 | +Module : | |
3948 | +Parameters : {[TypeName, System.Management.Automation.ParameterMetadat | |
3949 | + a], [Verbose, System.Management.Automation.ParameterMetad | |
3950 | + ata], [Debug, System.Management.Automation.ParameterMetad | |
3951 | + ata], [ErrorAction, System.Management.Automation.Paramete | |
3952 | + rMetadata]...} | |
3953 | +ParameterSets : {[[-TypeName] <String[]>] [-Verbose] [-Debug] [-ErrorActi | |
3954 | + on <ActionPreference>] [-WarningAction <ActionPreference> | |
3955 | + ] [-ErrorVariable <String>] [-WarningVariable <String>] [ | |
3956 | + -OutVariable <String>] [-OutBuffer <Int32>]} | |
3957 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=144303 | |
3958 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
3959 | + s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell. | |
3960 | + Commands.Utility.dll | |
3961 | + | |
3962 | + | |
3963 | +Verb : Get | |
3964 | +Noun : Help | |
3965 | +HelpFile : System.Management.Automation.dll-Help.xml | |
3966 | +PSSnapIn : Microsoft.PowerShell.Core | |
3967 | +ImplementingType : Microsoft.PowerShell.Commands.GetHelpCommand | |
3968 | +Definition : Get-Help [[-Name] <String>] [-Path <String>] [-Category < | |
3969 | + String[]>] [-Component <String[]>] [-Functionality <Strin | |
3970 | + g[]>] [-Role <String[]>] [-Full] [-Online] [-Verbose] [-D | |
3971 | + ebug] [-ErrorAction <ActionPreference>] [-WarningAction < | |
3972 | + ActionPreference>] [-ErrorVariable <String>] [-WarningVar | |
3973 | + iable <String>] [-OutVariable <String>] [-OutBuffer <Int3 | |
3974 | + 2>] | |
3975 | + Get-Help [[-Name] <String>] [-Path <String>] [-Category < | |
3976 | + String[]>] [-Component <String[]>] [-Functionality <Strin | |
3977 | + g[]>] [-Role <String[]>] [-Detailed] [-Online] [-Verbose] | |
3978 | + [-Debug] [-ErrorAction <ActionPreference>] [-WarningActi | |
3979 | + on <ActionPreference>] [-ErrorVariable <String>] [-Warnin | |
3980 | + gVariable <String>] [-OutVariable <String>] [-OutBuffer < | |
3981 | + Int32>] | |
3982 | + Get-Help [[-Name] <String>] [-Path <String>] [-Category < | |
3983 | + String[]>] [-Component <String[]>] [-Functionality <Strin | |
3984 | + g[]>] [-Role <String[]>] [-Examples] [-Online] [-Verbose] | |
3985 | + [-Debug] [-ErrorAction <ActionPreference>] [-WarningActi | |
3986 | + on <ActionPreference>] [-ErrorVariable <String>] [-Warnin | |
3987 | + gVariable <String>] [-OutVariable <String>] [-OutBuffer < | |
3988 | + Int32>] | |
3989 | + Get-Help [[-Name] <String>] [-Path <String>] [-Category < | |
3990 | + String[]>] [-Component <String[]>] [-Functionality <Strin | |
3991 | + g[]>] [-Role <String[]>] [-Parameter <String>] [-Online] | |
3992 | + [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-W | |
3993 | + arningAction <ActionPreference>] [-ErrorVariable <String> | |
3994 | + ] [-WarningVariable <String>] [-OutVariable <String>] [-O | |
3995 | + utBuffer <Int32>] | |
3996 | + | |
3997 | +DefaultParameterSet : AllUsersView | |
3998 | +OutputType : {} | |
3999 | +Name : Get-Help | |
4000 | +CommandType : Cmdlet | |
4001 | +Visibility : Public | |
4002 | +ModuleName : Microsoft.PowerShell.Core | |
4003 | +Module : | |
4004 | +Parameters : {[Name, System.Management.Automation.ParameterMetadata], | |
4005 | + [Path, System.Management.Automation.ParameterMetadata], [ | |
4006 | + Category, System.Management.Automation.ParameterMetadata] | |
4007 | + , [Component, System.Management.Automation.ParameterMetad | |
4008 | + ata]...} | |
4009 | +ParameterSets : {[[-Name] <String>] [-Path <String>] [-Category <String[] | |
4010 | + >] [-Component <String[]>] [-Functionality <String[]>] [- | |
4011 | + Role <String[]>] [-Full] [-Online] [-Verbose] [-Debug] [- | |
4012 | + ErrorAction <ActionPreference>] [-WarningAction <ActionPr | |
4013 | + eference>] [-ErrorVariable <String>] [-WarningVariable <S | |
4014 | + tring>] [-OutVariable <String>] [-OutBuffer <Int32>], [[- | |
4015 | + Name] <String>] [-Path <String>] [-Category <String[]>] [ | |
4016 | + -Component <String[]>] [-Functionality <String[]>] [-Role | |
4017 | + <String[]>] [-Detailed] [-Online] [-Verbose] [-Debug] [- | |
4018 | + ErrorAction <ActionPreference>] [-WarningAction <ActionPr | |
4019 | + eference>] [-ErrorVariable <String>] [-WarningVariable <S | |
4020 | + tring>] [-OutVariable <String>] [-OutBuffer <Int32>], [[- | |
4021 | + Name] <String>] [-Path <String>] [-Category <String[]>] [ | |
4022 | + -Component <String[]>] [-Functionality <String[]>] [-Role | |
4023 | + <String[]>] [-Examples] [-Online] [-Verbose] [-Debug] [- | |
4024 | + ErrorAction <ActionPreference>] [-WarningAction <ActionPr | |
4025 | + eference>] [-ErrorVariable <String>] [-WarningVariable <S | |
4026 | + tring>] [-OutVariable <String>] [-OutBuffer <Int32>], [[- | |
4027 | + Name] <String>] [-Path <String>] [-Category <String[]>] [ | |
4028 | + -Component <String[]>] [-Functionality <String[]>] [-Role | |
4029 | + <String[]>] [-Parameter <String>] [-Online] [-Verbose] [ | |
4030 | + -Debug] [-ErrorAction <ActionPreference>] [-WarningAction | |
4031 | + <ActionPreference>] [-ErrorVariable <String>] [-WarningV | |
4032 | + ariable <String>] [-OutVariable <String>] [-OutBuffer <In | |
4033 | + t32>]} | |
4034 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113316 | |
4035 | +DLL : C:\Windows\assembly\GAC_MSIL\System.Management.Automation | |
4036 | + \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d | |
4037 | + ll | |
4038 | + | |
4039 | + | |
4040 | +Verb : Get | |
4041 | +Noun : History | |
4042 | +HelpFile : System.Management.Automation.dll-Help.xml | |
4043 | +PSSnapIn : Microsoft.PowerShell.Core | |
4044 | +ImplementingType : Microsoft.PowerShell.Commands.GetHistoryCommand | |
4045 | +Definition : Get-History [[-Id] <Int64[]>] [[-Count] <Int32>] [-Verbos | |
4046 | + e] [-Debug] [-ErrorAction <ActionPreference>] [-WarningAc | |
4047 | + tion <ActionPreference>] [-ErrorVariable <String>] [-Warn | |
4048 | + ingVariable <String>] [-OutVariable <String>] [-OutBuffer | |
4049 | + <Int32>] | |
4050 | + | |
4051 | +DefaultParameterSet : | |
4052 | +OutputType : {Microsoft.PowerShell.Commands.HistoryInfo} | |
4053 | +Name : Get-History | |
4054 | +CommandType : Cmdlet | |
4055 | +Visibility : Public | |
4056 | +ModuleName : Microsoft.PowerShell.Core | |
4057 | +Module : | |
4058 | +Parameters : {[Id, System.Management.Automation.ParameterMetadata], [C | |
4059 | + ount, System.Management.Automation.ParameterMetadata], [V | |
4060 | + erbose, System.Management.Automation.ParameterMetadata], | |
4061 | + [Debug, System.Management.Automation.ParameterMetadata].. | |
4062 | + .} | |
4063 | +ParameterSets : {[[-Id] <Int64[]>] [[-Count] <Int32>] [-Verbose] [-Debug] | |
4064 | + [-ErrorAction <ActionPreference>] [-WarningAction <Actio | |
4065 | + nPreference>] [-ErrorVariable <String>] [-WarningVariable | |
4066 | + <String>] [-OutVariable <String>] [-OutBuffer <Int32>]} | |
4067 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113317 | |
4068 | +DLL : C:\Windows\assembly\GAC_MSIL\System.Management.Automation | |
4069 | + \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d | |
4070 | + ll | |
4071 | + | |
4072 | + | |
4073 | +Verb : Get | |
4074 | +Noun : Host | |
4075 | +HelpFile : Microsoft.PowerShell.Commands.Utility.dll-Help.xml | |
4076 | +PSSnapIn : Microsoft.PowerShell.Utility | |
4077 | +ImplementingType : Microsoft.PowerShell.Commands.GetHostCommand | |
4078 | +Definition : Get-Host [-Verbose] [-Debug] [-ErrorAction <ActionPrefere | |
4079 | + nce>] [-WarningAction <ActionPreference>] [-ErrorVariable | |
4080 | + <String>] [-WarningVariable <String>] [-OutVariable <Str | |
4081 | + ing>] [-OutBuffer <Int32>] | |
4082 | + | |
4083 | +DefaultParameterSet : | |
4084 | +OutputType : {System.Management.Automation.Host.PSHost} | |
4085 | +Name : Get-Host | |
4086 | +CommandType : Cmdlet | |
4087 | +Visibility : Public | |
4088 | +ModuleName : Microsoft.PowerShell.Utility | |
4089 | +Module : | |
4090 | +Parameters : {[Verbose, System.Management.Automation.ParameterMetadata | |
4091 | + ], [Debug, System.Management.Automation.ParameterMetadata | |
4092 | + ], [ErrorAction, System.Management.Automation.ParameterMe | |
4093 | + tadata], [WarningAction, System.Management.Automation.Par | |
4094 | + ameterMetadata]...} | |
4095 | +ParameterSets : {[-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [- | |
4096 | + WarningAction <ActionPreference>] [-ErrorVariable <String | |
4097 | + >] [-WarningVariable <String>] [-OutVariable <String>] [- | |
4098 | + OutBuffer <Int32>]} | |
4099 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113318 | |
4100 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
4101 | + s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell. | |
4102 | + Commands.Utility.dll | |
4103 | + | |
4104 | + | |
4105 | +Verb : Get | |
4106 | +Noun : HotFix | |
4107 | +HelpFile : Microsoft.PowerShell.Commands.Management.dll-Help.xml | |
4108 | +PSSnapIn : Microsoft.PowerShell.Management | |
4109 | +ImplementingType : Microsoft.PowerShell.Commands.GetHotFixCommand | |
4110 | +Definition : Get-HotFix [[-Id] <String[]>] [-ComputerName <String[]>] | |
4111 | + [-Credential <PSCredential>] [-Verbose] [-Debug] [-ErrorA | |
4112 | + ction <ActionPreference>] [-WarningAction <ActionPreferen | |
4113 | + ce>] [-ErrorVariable <String>] [-WarningVariable <String> | |
4114 | + ] [-OutVariable <String>] [-OutBuffer <Int32>] | |
4115 | + Get-HotFix [-Description <String[]>] [-ComputerName <Stri | |
4116 | + ng[]>] [-Credential <PSCredential>] [-Verbose] [-Debug] [ | |
4117 | + -ErrorAction <ActionPreference>] [-WarningAction <ActionP | |
4118 | + reference>] [-ErrorVariable <String>] [-WarningVariable < | |
4119 | + String>] [-OutVariable <String>] [-OutBuffer <Int32>] | |
4120 | + | |
4121 | +DefaultParameterSet : Default | |
4122 | +OutputType : {} | |
4123 | +Name : Get-HotFix | |
4124 | +CommandType : Cmdlet | |
4125 | +Visibility : Public | |
4126 | +ModuleName : Microsoft.PowerShell.Management | |
4127 | +Module : | |
4128 | +Parameters : {[Id, System.Management.Automation.ParameterMetadata], [D | |
4129 | + escription, System.Management.Automation.ParameterMetadat | |
4130 | + a], [ComputerName, System.Management.Automation.Parameter | |
4131 | + Metadata], [Credential, System.Management.Automation.Para | |
4132 | + meterMetadata]...} | |
4133 | +ParameterSets : {[[-Id] <String[]>] [-ComputerName <String[]>] [-Credenti | |
4134 | + al <PSCredential>] [-Verbose] [-Debug] [-ErrorAction <Act | |
4135 | + ionPreference>] [-WarningAction <ActionPreference>] [-Err | |
4136 | + orVariable <String>] [-WarningVariable <String>] [-OutVar | |
4137 | + iable <String>] [-OutBuffer <Int32>], [-Description <Stri | |
4138 | + ng[]>] [-ComputerName <String[]>] [-Credential <PSCredent | |
4139 | + ial>] [-Verbose] [-Debug] [-ErrorAction <ActionPreference | |
4140 | + >] [-WarningAction <ActionPreference>] [-ErrorVariable <S | |
4141 | + tring>] [-WarningVariable <String>] [-OutVariable <String | |
4142 | + >] [-OutBuffer <Int32>]} | |
4143 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=135217 | |
4144 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
4145 | + s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe | |
4146 | + ll.Commands.Management.dll | |
4147 | + | |
4148 | + | |
4149 | +Verb : Get | |
4150 | +Noun : Item | |
4151 | +HelpFile : Microsoft.PowerShell.Commands.Management.dll-Help.xml | |
4152 | +PSSnapIn : Microsoft.PowerShell.Management | |
4153 | +ImplementingType : Microsoft.PowerShell.Commands.GetItemCommand | |
4154 | +Definition : Get-Item [-Path] <String[]> [-Filter <String>] [-Include | |
4155 | + <String[]>] [-Exclude <String[]>] [-Force] [-Credential < | |
4156 | + PSCredential>] [-Verbose] [-Debug] [-ErrorAction <ActionP | |
4157 | + reference>] [-WarningAction <ActionPreference>] [-ErrorVa | |
4158 | + riable <String>] [-WarningVariable <String>] [-OutVariabl | |
4159 | + e <String>] [-OutBuffer <Int32>] [-UseTransaction] | |
4160 | + Get-Item [-LiteralPath] <String[]> [-Filter <String>] [-I | |
4161 | + nclude <String[]>] [-Exclude <String[]>] [-Force] [-Crede | |
4162 | + ntial <PSCredential>] [-Verbose] [-Debug] [-ErrorAction < | |
4163 | + ActionPreference>] [-WarningAction <ActionPreference>] [- | |
4164 | + ErrorVariable <String>] [-WarningVariable <String>] [-Out | |
4165 | + Variable <String>] [-OutBuffer <Int32>] [-UseTransaction] | |
4166 | + | |
4167 | +DefaultParameterSet : Path | |
4168 | +OutputType : {System.IO.FileInfo, System.IO.DirectoryInfo} | |
4169 | +Name : Get-Item | |
4170 | +CommandType : Cmdlet | |
4171 | +Visibility : Public | |
4172 | +ModuleName : Microsoft.PowerShell.Management | |
4173 | +Module : | |
4174 | +Parameters : {[Path, System.Management.Automation.ParameterMetadata], | |
4175 | + [LiteralPath, System.Management.Automation.ParameterMetad | |
4176 | + ata], [Filter, System.Management.Automation.ParameterMeta | |
4177 | + data], [Include, System.Management.Automation.ParameterMe | |
4178 | + tadata]...} | |
4179 | +ParameterSets : {[-Path] <String[]> [-Filter <String>] [-Include <String[ | |
4180 | + ]>] [-Exclude <String[]>] [-Force] [-Credential <PSCreden | |
4181 | + tial>] [-Verbose] [-Debug] [-ErrorAction <ActionPreferenc | |
4182 | + e>] [-WarningAction <ActionPreference>] [-ErrorVariable < | |
4183 | + String>] [-WarningVariable <String>] [-OutVariable <Strin | |
4184 | + g>] [-OutBuffer <Int32>] [-UseTransaction], [-LiteralPath | |
4185 | + ] <String[]> [-Filter <String>] [-Include <String[]>] [-E | |
4186 | + xclude <String[]>] [-Force] [-Credential <PSCredential>] | |
4187 | + [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-W | |
4188 | + arningAction <ActionPreference>] [-ErrorVariable <String> | |
4189 | + ] [-WarningVariable <String>] [-OutVariable <String>] [-O | |
4190 | + utBuffer <Int32>] [-UseTransaction]} | |
4191 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113319 | |
4192 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
4193 | + s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe | |
4194 | + ll.Commands.Management.dll | |
4195 | + | |
4196 | + | |
4197 | +Verb : Get | |
4198 | +Noun : ItemProperty | |
4199 | +HelpFile : Microsoft.PowerShell.Commands.Management.dll-Help.xml | |
4200 | +PSSnapIn : Microsoft.PowerShell.Management | |
4201 | +ImplementingType : Microsoft.PowerShell.Commands.GetItemPropertyCommand | |
4202 | +Definition : Get-ItemProperty [-Path] <String[]> [[-Name] <String[]>] | |
4203 | + [-Filter <String>] [-Include <String[]>] [-Exclude <Strin | |
4204 | + g[]>] [-Credential <PSCredential>] [-Verbose] [-Debug] [- | |
4205 | + ErrorAction <ActionPreference>] [-WarningAction <ActionPr | |
4206 | + eference>] [-ErrorVariable <String>] [-WarningVariable <S | |
4207 | + tring>] [-OutVariable <String>] [-OutBuffer <Int32>] [-Us | |
4208 | + eTransaction] | |
4209 | + Get-ItemProperty [-LiteralPath] <String[]> [[-Name] <Stri | |
4210 | + ng[]>] [-Filter <String>] [-Include <String[]>] [-Exclude | |
4211 | + <String[]>] [-Credential <PSCredential>] [-Verbose] [-De | |
4212 | + bug] [-ErrorAction <ActionPreference>] [-WarningAction <A | |
4213 | + ctionPreference>] [-ErrorVariable <String>] [-WarningVari | |
4214 | + able <String>] [-OutVariable <String>] [-OutBuffer <Int32 | |
4215 | + >] [-UseTransaction] | |
4216 | + | |
4217 | +DefaultParameterSet : Path | |
4218 | +OutputType : {} | |
4219 | +Name : Get-ItemProperty | |
4220 | +CommandType : Cmdlet | |
4221 | +Visibility : Public | |
4222 | +ModuleName : Microsoft.PowerShell.Management | |
4223 | +Module : | |
4224 | +Parameters : {[Path, System.Management.Automation.ParameterMetadata], | |
4225 | + [LiteralPath, System.Management.Automation.ParameterMetad | |
4226 | + ata], [Name, System.Management.Automation.ParameterMetada | |
4227 | + ta], [Filter, System.Management.Automation.ParameterMetad | |
4228 | + ata]...} | |
4229 | +ParameterSets : {[-Path] <String[]> [[-Name] <String[]>] [-Filter <String | |
4230 | + >] [-Include <String[]>] [-Exclude <String[]>] [-Credenti | |
4231 | + al <PSCredential>] [-Verbose] [-Debug] [-ErrorAction <Act | |
4232 | + ionPreference>] [-WarningAction <ActionPreference>] [-Err | |
4233 | + orVariable <String>] [-WarningVariable <String>] [-OutVar | |
4234 | + iable <String>] [-OutBuffer <Int32>] [-UseTransaction], [ | |
4235 | + -LiteralPath] <String[]> [[-Name] <String[]>] [-Filter <S | |
4236 | + tring>] [-Include <String[]>] [-Exclude <String[]>] [-Cre | |
4237 | + dential <PSCredential>] [-Verbose] [-Debug] [-ErrorAction | |
4238 | + <ActionPreference>] [-WarningAction <ActionPreference>] | |
4239 | + [-ErrorVariable <String>] [-WarningVariable <String>] [-O | |
4240 | + utVariable <String>] [-OutBuffer <Int32>] [-UseTransactio | |
4241 | + n]} | |
4242 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113320 | |
4243 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
4244 | + s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe | |
4245 | + ll.Commands.Management.dll | |
4246 | + | |
4247 | + | |
4248 | +Verb : Get | |
4249 | +Noun : Job | |
4250 | +HelpFile : System.Management.Automation.dll-Help.xml | |
4251 | +PSSnapIn : Microsoft.PowerShell.Core | |
4252 | +ImplementingType : Microsoft.PowerShell.Commands.GetJobCommand | |
4253 | +Definition : Get-Job [[-Id] <Int32[]>] [-Verbose] [-Debug] [-ErrorActi | |
4254 | + on <ActionPreference>] [-WarningAction <ActionPreference> | |
4255 | + ] [-ErrorVariable <String>] [-WarningVariable <String>] [ | |
4256 | + -OutVariable <String>] [-OutBuffer <Int32>] | |
4257 | + Get-Job [[-Name] <String[]>] [-Verbose] [-Debug] [-ErrorA | |
4258 | + ction <ActionPreference>] [-WarningAction <ActionPreferen | |
4259 | + ce>] [-ErrorVariable <String>] [-WarningVariable <String> | |
4260 | + ] [-OutVariable <String>] [-OutBuffer <Int32>] | |
4261 | + Get-Job [[-InstanceId] <Guid[]>] [-Verbose] [-Debug] [-Er | |
4262 | + rorAction <ActionPreference>] [-WarningAction <ActionPref | |
4263 | + erence>] [-ErrorVariable <String>] [-WarningVariable <Str | |
4264 | + ing>] [-OutVariable <String>] [-OutBuffer <Int32>] | |
4265 | + Get-Job [-State <JobState>] [-Verbose] [-Debug] [-ErrorAc | |
4266 | + tion <ActionPreference>] [-WarningAction <ActionPreferenc | |
4267 | + e>] [-ErrorVariable <String>] [-WarningVariable <String>] | |
4268 | + [-OutVariable <String>] [-OutBuffer <Int32>] | |
4269 | + Get-Job [-Command <String[]>] [-Verbose] [-Debug] [-Error | |
4270 | + Action <ActionPreference>] [-WarningAction <ActionPrefere | |
4271 | + nce>] [-ErrorVariable <String>] [-WarningVariable <String | |
4272 | + >] [-OutVariable <String>] [-OutBuffer <Int32>] | |
4273 | + | |
4274 | +DefaultParameterSet : SessionIdParameterSet | |
4275 | +OutputType : {} | |
4276 | +Name : Get-Job | |
4277 | +CommandType : Cmdlet | |
4278 | +Visibility : Public | |
4279 | +ModuleName : Microsoft.PowerShell.Core | |
4280 | +Module : | |
4281 | +Parameters : {[Id, System.Management.Automation.ParameterMetadata], [N | |
4282 | + ame, System.Management.Automation.ParameterMetadata], [In | |
4283 | + stanceId, System.Management.Automation.ParameterMetadata] | |
4284 | + , [State, System.Management.Automation.ParameterMetadata] | |
4285 | + ...} | |
4286 | +ParameterSets : {[[-Id] <Int32[]>] [-Verbose] [-Debug] [-ErrorAction <Act | |
4287 | + ionPreference>] [-WarningAction <ActionPreference>] [-Err | |
4288 | + orVariable <String>] [-WarningVariable <String>] [-OutVar | |
4289 | + iable <String>] [-OutBuffer <Int32>], [[-Name] <String[]> | |
4290 | + ] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [ | |
4291 | + -WarningAction <ActionPreference>] [-ErrorVariable <Strin | |
4292 | + g>] [-WarningVariable <String>] [-OutVariable <String>] [ | |
4293 | + -OutBuffer <Int32>], [[-InstanceId] <Guid[]>] [-Verbose] | |
4294 | + [-Debug] [-ErrorAction <ActionPreference>] [-WarningActio | |
4295 | + n <ActionPreference>] [-ErrorVariable <String>] [-Warning | |
4296 | + Variable <String>] [-OutVariable <String>] [-OutBuffer <I | |
4297 | + nt32>], [-State <JobState>] [-Verbose] [-Debug] [-ErrorAc | |
4298 | + tion <ActionPreference>] [-WarningAction <ActionPreferenc | |
4299 | + e>] [-ErrorVariable <String>] [-WarningVariable <String>] | |
4300 | + [-OutVariable <String>] [-OutBuffer <Int32>]...} | |
4301 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113328 | |
4302 | +DLL : C:\Windows\assembly\GAC_MSIL\System.Management.Automation | |
4303 | + \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d | |
4304 | + ll | |
4305 | + | |
4306 | + | |
4307 | +Verb : Get | |
4308 | +Noun : Location | |
4309 | +HelpFile : Microsoft.PowerShell.Commands.Management.dll-Help.xml | |
4310 | +PSSnapIn : Microsoft.PowerShell.Management | |
4311 | +ImplementingType : Microsoft.PowerShell.Commands.GetLocationCommand | |
4312 | +Definition : Get-Location [-PSProvider <String[]>] [-PSDrive <String[] | |
4313 | + >] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] | |
4314 | + [-WarningAction <ActionPreference>] [-ErrorVariable <Stri | |
4315 | + ng>] [-WarningVariable <String>] [-OutVariable <String>] | |
4316 | + [-OutBuffer <Int32>] [-UseTransaction] | |
4317 | + Get-Location [-Stack] [-StackName <String[]>] [-Verbose] | |
4318 | + [-Debug] [-ErrorAction <ActionPreference>] [-WarningActio | |
4319 | + n <ActionPreference>] [-ErrorVariable <String>] [-Warning | |
4320 | + Variable <String>] [-OutVariable <String>] [-OutBuffer <I | |
4321 | + nt32>] [-UseTransaction] | |
4322 | + | |
4323 | +DefaultParameterSet : Location | |
4324 | +OutputType : {System.Management.Automation.PathInfo, System.Management | |
4325 | + .Automation.PathInfoStack} | |
4326 | +Name : Get-Location | |
4327 | +CommandType : Cmdlet | |
4328 | +Visibility : Public | |
4329 | +ModuleName : Microsoft.PowerShell.Management | |
4330 | +Module : | |
4331 | +Parameters : {[PSProvider, System.Management.Automation.ParameterMetad | |
4332 | + ata], [PSDrive, System.Management.Automation.ParameterMet | |
4333 | + adata], [Stack, System.Management.Automation.ParameterMet | |
4334 | + adata], [StackName, System.Management.Automation.Paramete | |
4335 | + rMetadata]...} | |
4336 | +ParameterSets : {[-PSProvider <String[]>] [-PSDrive <String[]>] [-Verbose | |
4337 | + ] [-Debug] [-ErrorAction <ActionPreference>] [-WarningAct | |
4338 | + ion <ActionPreference>] [-ErrorVariable <String>] [-Warni | |
4339 | + ngVariable <String>] [-OutVariable <String>] [-OutBuffer | |
4340 | + <Int32>] [-UseTransaction], [-Stack] [-StackName <String[ | |
4341 | + ]>] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] | |
4342 | + [-WarningAction <ActionPreference>] [-ErrorVariable <Str | |
4343 | + ing>] [-WarningVariable <String>] [-OutVariable <String>] | |
4344 | + [-OutBuffer <Int32>] [-UseTransaction]} | |
4345 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113321 | |
4346 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
4347 | + s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe | |
4348 | + ll.Commands.Management.dll | |
4349 | + | |
4350 | + | |
4351 | +Verb : Get | |
4352 | +Noun : Member | |
4353 | +HelpFile : Microsoft.PowerShell.Commands.Utility.dll-Help.xml | |
4354 | +PSSnapIn : Microsoft.PowerShell.Utility | |
4355 | +ImplementingType : Microsoft.PowerShell.Commands.GetMemberCommand | |
4356 | +Definition : Get-Member [[-Name] <String[]>] [-InputObject <PSObject>] | |
4357 | + [-MemberType <PSMemberTypes>] [-View <PSMemberViewTypes> | |
4358 | + ] [-Static] [-Force] [-Verbose] [-Debug] [-ErrorAction <A | |
4359 | + ctionPreference>] [-WarningAction <ActionPreference>] [-E | |
4360 | + rrorVariable <String>] [-WarningVariable <String>] [-OutV | |
4361 | + ariable <String>] [-OutBuffer <Int32>] | |
4362 | + | |
4363 | +DefaultParameterSet : | |
4364 | +OutputType : {Microsoft.PowerShell.Commands.MemberDefinition} | |
4365 | +Name : Get-Member | |
4366 | +CommandType : Cmdlet | |
4367 | +Visibility : Public | |
4368 | +ModuleName : Microsoft.PowerShell.Utility | |
4369 | +Module : | |
4370 | +Parameters : {[InputObject, System.Management.Automation.ParameterMeta | |
4371 | + data], [Name, System.Management.Automation.ParameterMetad | |
4372 | + ata], [MemberType, System.Management.Automation.Parameter | |
4373 | + Metadata], [View, System.Management.Automation.ParameterM | |
4374 | + etadata]...} | |
4375 | +ParameterSets : {[[-Name] <String[]>] [-InputObject <PSObject>] [-MemberT | |
4376 | + ype <PSMemberTypes>] [-View <PSMemberViewTypes>] [-Static | |
4377 | + ] [-Force] [-Verbose] [-Debug] [-ErrorAction <ActionPrefe | |
4378 | + rence>] [-WarningAction <ActionPreference>] [-ErrorVariab | |
4379 | + le <String>] [-WarningVariable <String>] [-OutVariable <S | |
4380 | + tring>] [-OutBuffer <Int32>]} | |
4381 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113322 | |
4382 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
4383 | + s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell. | |
4384 | + Commands.Utility.dll | |
4385 | + | |
4386 | + | |
4387 | +Verb : Get | |
4388 | +Noun : Module | |
4389 | +HelpFile : System.Management.Automation.dll-Help.xml | |
4390 | +PSSnapIn : Microsoft.PowerShell.Core | |
4391 | +ImplementingType : Microsoft.PowerShell.Commands.GetModuleCommand | |
4392 | +Definition : Get-Module [[-Name] <String[]>] [-All] [-Verbose] [-Debug | |
4393 | + ] [-ErrorAction <ActionPreference>] [-WarningAction <Acti | |
4394 | + onPreference>] [-ErrorVariable <String>] [-WarningVariabl | |
4395 | + e <String>] [-OutVariable <String>] [-OutBuffer <Int32>] | |
4396 | + Get-Module [[-Name] <String[]>] [-All] [-ListAvailable] [ | |
4397 | + -Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-Wa | |
4398 | + rningAction <ActionPreference>] [-ErrorVariable <String>] | |
4399 | + [-WarningVariable <String>] [-OutVariable <String>] [-Ou | |
4400 | + tBuffer <Int32>] | |
4401 | + | |
4402 | +DefaultParameterSet : Loaded | |
4403 | +OutputType : {System.Management.Automation.PSModuleInfo} | |
4404 | +Name : Get-Module | |
4405 | +CommandType : Cmdlet | |
4406 | +Visibility : Public | |
4407 | +ModuleName : Microsoft.PowerShell.Core | |
4408 | +Module : | |
4409 | +Parameters : {[Name, System.Management.Automation.ParameterMetadata], | |
4410 | + [All, System.Management.Automation.ParameterMetadata], [L | |
4411 | + istAvailable, System.Management.Automation.ParameterMetad | |
4412 | + ata], [Verbose, System.Management.Automation.ParameterMet | |
4413 | + adata]...} | |
4414 | +ParameterSets : {[[-Name] <String[]>] [-All] [-Verbose] [-Debug] [-ErrorA | |
4415 | + ction <ActionPreference>] [-WarningAction <ActionPreferen | |
4416 | + ce>] [-ErrorVariable <String>] [-WarningVariable <String> | |
4417 | + ] [-OutVariable <String>] [-OutBuffer <Int32>], [[-Name] | |
4418 | + <String[]>] [-All] [-ListAvailable] [-Verbose] [-Debug] [ | |
4419 | + -ErrorAction <ActionPreference>] [-WarningAction <ActionP | |
4420 | + reference>] [-ErrorVariable <String>] [-WarningVariable < | |
4421 | + String>] [-OutVariable <String>] [-OutBuffer <Int32>]} | |
4422 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=141552 | |
4423 | +DLL : C:\Windows\assembly\GAC_MSIL\System.Management.Automation | |
4424 | + \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d | |
4425 | + ll | |
4426 | + | |
4427 | + | |
4428 | +Verb : Get | |
4429 | +Noun : PfxCertificate | |
4430 | +HelpFile : Microsoft.PowerShell.Security.dll-Help.xml | |
4431 | +PSSnapIn : Microsoft.PowerShell.Security | |
4432 | +ImplementingType : Microsoft.PowerShell.Commands.GetPfxCertificateCommand | |
4433 | +Definition : Get-PfxCertificate [-FilePath] <String[]> [-Verbose] [-De | |
4434 | + bug] [-ErrorAction <ActionPreference>] [-WarningAction <A | |
4435 | + ctionPreference>] [-ErrorVariable <String>] [-WarningVari | |
4436 | + able <String>] [-OutVariable <String>] [-OutBuffer <Int32 | |
4437 | + >] | |
4438 | + | |
4439 | +DefaultParameterSet : | |
4440 | +OutputType : {System.Security.Cryptography.X509Certificates.X509Certif | |
4441 | + icate2} | |
4442 | +Name : Get-PfxCertificate | |
4443 | +CommandType : Cmdlet | |
4444 | +Visibility : Public | |
4445 | +ModuleName : Microsoft.PowerShell.Security | |
4446 | +Module : | |
4447 | +Parameters : {[FilePath, System.Management.Automation.ParameterMetadat | |
4448 | + a], [Verbose, System.Management.Automation.ParameterMetad | |
4449 | + ata], [Debug, System.Management.Automation.ParameterMetad | |
4450 | + ata], [ErrorAction, System.Management.Automation.Paramete | |
4451 | + rMetadata]...} | |
4452 | +ParameterSets : {[-FilePath] <String[]> [-Verbose] [-Debug] [-ErrorAction | |
4453 | + <ActionPreference>] [-WarningAction <ActionPreference>] | |
4454 | + [-ErrorVariable <String>] [-WarningVariable <String>] [-O | |
4455 | + utVariable <String>] [-OutBuffer <Int32>]} | |
4456 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113323 | |
4457 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Securit | |
4458 | + y\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell.Security | |
4459 | + .dll | |
4460 | + | |
4461 | + | |
4462 | +Verb : Get | |
4463 | +Noun : Process | |
4464 | +HelpFile : Microsoft.PowerShell.Commands.Management.dll-Help.xml | |
4465 | +PSSnapIn : Microsoft.PowerShell.Management | |
4466 | +ImplementingType : Microsoft.PowerShell.Commands.GetProcessCommand | |
4467 | +Definition : Get-Process [[-Name] <String[]>] [-ComputerName <String[] | |
4468 | + >] [-Module] [-FileVersionInfo] [-Verbose] [-Debug] [-Err | |
4469 | + orAction <ActionPreference>] [-WarningAction <ActionPrefe | |
4470 | + rence>] [-ErrorVariable <String>] [-WarningVariable <Stri | |
4471 | + ng>] [-OutVariable <String>] [-OutBuffer <Int32>] | |
4472 | + Get-Process -Id <Int32[]> [-ComputerName <String[]>] [-Mo | |
4473 | + dule] [-FileVersionInfo] [-Verbose] [-Debug] [-ErrorActio | |
4474 | + n <ActionPreference>] [-WarningAction <ActionPreference>] | |
4475 | + [-ErrorVariable <String>] [-WarningVariable <String>] [- | |
4476 | + OutVariable <String>] [-OutBuffer <Int32>] | |
4477 | + Get-Process [-ComputerName <String[]>] [-Module] [-FileVe | |
4478 | + rsionInfo] -InputObject <Process[]> [-Verbose] [-Debug] [ | |
4479 | + -ErrorAction <ActionPreference>] [-WarningAction <ActionP | |
4480 | + reference>] [-ErrorVariable <String>] [-WarningVariable < | |
4481 | + String>] [-OutVariable <String>] [-OutBuffer <Int32>] | |
4482 | + | |
4483 | +DefaultParameterSet : Name | |
4484 | +OutputType : {System.Diagnostics.ProcessModule, System.Diagnostics.Fil | |
4485 | + eVersionInfo, System.Diagnostics.Process} | |
4486 | +Name : Get-Process | |
4487 | +CommandType : Cmdlet | |
4488 | +Visibility : Public | |
4489 | +ModuleName : Microsoft.PowerShell.Management | |
4490 | +Module : | |
4491 | +Parameters : {[Name, System.Management.Automation.ParameterMetadata], | |
4492 | + [Id, System.Management.Automation.ParameterMetadata], [Co | |
4493 | + mputerName, System.Management.Automation.ParameterMetadat | |
4494 | + a], [Module, System.Management.Automation.ParameterMetada | |
4495 | + ta]...} | |
4496 | +ParameterSets : {[[-Name] <String[]>] [-ComputerName <String[]>] [-Module | |
4497 | + ] [-FileVersionInfo] [-Verbose] [-Debug] [-ErrorAction <A | |
4498 | + ctionPreference>] [-WarningAction <ActionPreference>] [-E | |
4499 | + rrorVariable <String>] [-WarningVariable <String>] [-OutV | |
4500 | + ariable <String>] [-OutBuffer <Int32>], -Id <Int32[]> [-C | |
4501 | + omputerName <String[]>] [-Module] [-FileVersionInfo] [-Ve | |
4502 | + rbose] [-Debug] [-ErrorAction <ActionPreference>] [-Warni | |
4503 | + ngAction <ActionPreference>] [-ErrorVariable <String>] [- | |
4504 | + WarningVariable <String>] [-OutVariable <String>] [-OutBu | |
4505 | + ffer <Int32>], [-ComputerName <String[]>] [-Module] [-Fil | |
4506 | + eVersionInfo] -InputObject <Process[]> [-Verbose] [-Debug | |
4507 | + ] [-ErrorAction <ActionPreference>] [-WarningAction <Acti | |
4508 | + onPreference>] [-ErrorVariable <String>] [-WarningVariabl | |
4509 | + e <String>] [-OutVariable <String>] [-OutBuffer <Int32>]} | |
4510 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113324 | |
4511 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
4512 | + s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe | |
4513 | + ll.Commands.Management.dll | |
4514 | + | |
4515 | + | |
4516 | +Verb : Get | |
4517 | +Noun : PSBreakpoint | |
4518 | +HelpFile : Microsoft.PowerShell.Commands.Utility.dll-Help.xml | |
4519 | +PSSnapIn : Microsoft.PowerShell.Utility | |
4520 | +ImplementingType : Microsoft.PowerShell.Commands.GetPSBreakpointCommand | |
4521 | +Definition : Get-PSBreakpoint [[-Script] <String[]>] [-Verbose] [-Debu | |
4522 | + g] [-ErrorAction <ActionPreference>] [-WarningAction <Act | |
4523 | + ionPreference>] [-ErrorVariable <String>] [-WarningVariab | |
4524 | + le <String>] [-OutVariable <String>] [-OutBuffer <Int32>] | |
4525 | + Get-PSBreakpoint [-Type] <BreakpointType[]> [-Script <Str | |
4526 | + ing[]>] [-Verbose] [-Debug] [-ErrorAction <ActionPreferen | |
4527 | + ce>] [-WarningAction <ActionPreference>] [-ErrorVariable | |
4528 | + <String>] [-WarningVariable <String>] [-OutVariable <Stri | |
4529 | + ng>] [-OutBuffer <Int32>] | |
4530 | + Get-PSBreakpoint [-Script <String[]>] -Variable <String[] | |
4531 | + > [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [ | |
4532 | + -WarningAction <ActionPreference>] [-ErrorVariable <Strin | |
4533 | + g>] [-WarningVariable <String>] [-OutVariable <String>] [ | |
4534 | + -OutBuffer <Int32>] | |
4535 | + Get-PSBreakpoint [-Script <String[]>] -Command <String[]> | |
4536 | + [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [- | |
4537 | + WarningAction <ActionPreference>] [-ErrorVariable <String | |
4538 | + >] [-WarningVariable <String>] [-OutVariable <String>] [- | |
4539 | + OutBuffer <Int32>] | |
4540 | + Get-PSBreakpoint [-Id] <Int32[]> [-Verbose] [-Debug] [-Er | |
4541 | + rorAction <ActionPreference>] [-WarningAction <ActionPref | |
4542 | + erence>] [-ErrorVariable <String>] [-WarningVariable <Str | |
4543 | + ing>] [-OutVariable <String>] [-OutBuffer <Int32>] | |
4544 | + | |
4545 | +DefaultParameterSet : Script | |
4546 | +OutputType : {System.Management.Automation.Breakpoint} | |
4547 | +Name : Get-PSBreakpoint | |
4548 | +CommandType : Cmdlet | |
4549 | +Visibility : Public | |
4550 | +ModuleName : Microsoft.PowerShell.Utility | |
4551 | +Module : | |
4552 | +Parameters : {[Script, System.Management.Automation.ParameterMetadata] | |
4553 | + , [Id, System.Management.Automation.ParameterMetadata], [ | |
4554 | + Variable, System.Management.Automation.ParameterMetadata] | |
4555 | + , [Command, System.Management.Automation.ParameterMetadat | |
4556 | + a]...} | |
4557 | +ParameterSets : {[[-Script] <String[]>] [-Verbose] [-Debug] [-ErrorAction | |
4558 | + <ActionPreference>] [-WarningAction <ActionPreference>] | |
4559 | + [-ErrorVariable <String>] [-WarningVariable <String>] [-O | |
4560 | + utVariable <String>] [-OutBuffer <Int32>], [-Type] <Break | |
4561 | + pointType[]> [-Script <String[]>] [-Verbose] [-Debug] [-E | |
4562 | + rrorAction <ActionPreference>] [-WarningAction <ActionPre | |
4563 | + ference>] [-ErrorVariable <String>] [-WarningVariable <St | |
4564 | + ring>] [-OutVariable <String>] [-OutBuffer <Int32>], [-Sc | |
4565 | + ript <String[]>] -Variable <String[]> [-Verbose] [-Debug] | |
4566 | + [-ErrorAction <ActionPreference>] [-WarningAction <Actio | |
4567 | + nPreference>] [-ErrorVariable <String>] [-WarningVariable | |
4568 | + <String>] [-OutVariable <String>] [-OutBuffer <Int32>], | |
4569 | + [-Script <String[]>] -Command <String[]> [-Verbose] [-Deb | |
4570 | + ug] [-ErrorAction <ActionPreference>] [-WarningAction <Ac | |
4571 | + tionPreference>] [-ErrorVariable <String>] [-WarningVaria | |
4572 | + ble <String>] [-OutVariable <String>] [-OutBuffer <Int32> | |
4573 | + ]...} | |
4574 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113325 | |
4575 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
4576 | + s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell. | |
4577 | + Commands.Utility.dll | |
4578 | + | |
4579 | + | |
4580 | +Verb : Get | |
4581 | +Noun : PSCallStack | |
4582 | +HelpFile : Microsoft.PowerShell.Commands.Utility.dll-Help.xml | |
4583 | +PSSnapIn : Microsoft.PowerShell.Utility | |
4584 | +ImplementingType : Microsoft.PowerShell.Commands.GetPSCallStackCommand | |
4585 | +Definition : Get-PSCallStack [-Verbose] [-Debug] [-ErrorAction <Action | |
4586 | + Preference>] [-WarningAction <ActionPreference>] [-ErrorV | |
4587 | + ariable <String>] [-WarningVariable <String>] [-OutVariab | |
4588 | + le <String>] [-OutBuffer <Int32>] | |
4589 | + | |
4590 | +DefaultParameterSet : | |
4591 | +OutputType : {System.Management.Automation.CallStackFrame} | |
4592 | +Name : Get-PSCallStack | |
4593 | +CommandType : Cmdlet | |
4594 | +Visibility : Public | |
4595 | +ModuleName : Microsoft.PowerShell.Utility | |
4596 | +Module : | |
4597 | +Parameters : {[Verbose, System.Management.Automation.ParameterMetadata | |
4598 | + ], [Debug, System.Management.Automation.ParameterMetadata | |
4599 | + ], [ErrorAction, System.Management.Automation.ParameterMe | |
4600 | + tadata], [WarningAction, System.Management.Automation.Par | |
4601 | + ameterMetadata]...} | |
4602 | +ParameterSets : {[-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [- | |
4603 | + WarningAction <ActionPreference>] [-ErrorVariable <String | |
4604 | + >] [-WarningVariable <String>] [-OutVariable <String>] [- | |
4605 | + OutBuffer <Int32>]} | |
4606 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113326 | |
4607 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
4608 | + s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell. | |
4609 | + Commands.Utility.dll | |
4610 | + | |
4611 | + | |
4612 | +Verb : Get | |
4613 | +Noun : PSDrive | |
4614 | +HelpFile : Microsoft.PowerShell.Commands.Management.dll-Help.xml | |
4615 | +PSSnapIn : Microsoft.PowerShell.Management | |
4616 | +ImplementingType : Microsoft.PowerShell.Commands.GetPSDriveCommand | |
4617 | +Definition : Get-PSDrive [[-Name] <String[]>] [-Scope <String>] [-PSPr | |
4618 | + ovider <String[]>] [-Verbose] [-Debug] [-ErrorAction <Act | |
4619 | + ionPreference>] [-WarningAction <ActionPreference>] [-Err | |
4620 | + orVariable <String>] [-WarningVariable <String>] [-OutVar | |
4621 | + iable <String>] [-OutBuffer <Int32>] [-UseTransaction] | |
4622 | + Get-PSDrive [-LiteralName] <String[]> [-Scope <String>] [ | |
4623 | + -PSProvider <String[]>] [-Verbose] [-Debug] [-ErrorAction | |
4624 | + <ActionPreference>] [-WarningAction <ActionPreference>] | |
4625 | + [-ErrorVariable <String>] [-WarningVariable <String>] [-O | |
4626 | + utVariable <String>] [-OutBuffer <Int32>] [-UseTransactio | |
4627 | + n] | |
4628 | + | |
4629 | +DefaultParameterSet : Name | |
4630 | +OutputType : {System.Management.Automation.PSDriveInfo} | |
4631 | +Name : Get-PSDrive | |
4632 | +CommandType : Cmdlet | |
4633 | +Visibility : Public | |
4634 | +ModuleName : Microsoft.PowerShell.Management | |
4635 | +Module : | |
4636 | +Parameters : {[Name, System.Management.Automation.ParameterMetadata], | |
4637 | + [LiteralName, System.Management.Automation.ParameterMetad | |
4638 | + ata], [Scope, System.Management.Automation.ParameterMetad | |
4639 | + ata], [PSProvider, System.Management.Automation.Parameter | |
4640 | + Metadata]...} | |
4641 | +ParameterSets : {[[-Name] <String[]>] [-Scope <String>] [-PSProvider <Str | |
4642 | + ing[]>] [-Verbose] [-Debug] [-ErrorAction <ActionPreferen | |
4643 | + ce>] [-WarningAction <ActionPreference>] [-ErrorVariable | |
4644 | + <String>] [-WarningVariable <String>] [-OutVariable <Stri | |
4645 | + ng>] [-OutBuffer <Int32>] [-UseTransaction], [-LiteralNam | |
4646 | + e] <String[]> [-Scope <String>] [-PSProvider <String[]>] | |
4647 | + [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-W | |
4648 | + arningAction <ActionPreference>] [-ErrorVariable <String> | |
4649 | + ] [-WarningVariable <String>] [-OutVariable <String>] [-O | |
4650 | + utBuffer <Int32>] [-UseTransaction]} | |
4651 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113327 | |
4652 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
4653 | + s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe | |
4654 | + ll.Commands.Management.dll | |
4655 | + | |
4656 | + | |
4657 | +Verb : Get | |
4658 | +Noun : PSProvider | |
4659 | +HelpFile : Microsoft.PowerShell.Commands.Management.dll-Help.xml | |
4660 | +PSSnapIn : Microsoft.PowerShell.Management | |
4661 | +ImplementingType : Microsoft.PowerShell.Commands.GetPSProviderCommand | |
4662 | +Definition : Get-PSProvider [[-PSProvider] <String[]>] [-Verbose] [-De | |
4663 | + bug] [-ErrorAction <ActionPreference>] [-WarningAction <A | |
4664 | + ctionPreference>] [-ErrorVariable <String>] [-WarningVari | |
4665 | + able <String>] [-OutVariable <String>] [-OutBuffer <Int32 | |
4666 | + >] | |
4667 | + | |
4668 | +DefaultParameterSet : | |
4669 | +OutputType : {} | |
4670 | +Name : Get-PSProvider | |
4671 | +CommandType : Cmdlet | |
4672 | +Visibility : Public | |
4673 | +ModuleName : Microsoft.PowerShell.Management | |
4674 | +Module : | |
4675 | +Parameters : {[PSProvider, System.Management.Automation.ParameterMetad | |
4676 | + ata], [Verbose, System.Management.Automation.ParameterMet | |
4677 | + adata], [Debug, System.Management.Automation.ParameterMet | |
4678 | + adata], [ErrorAction, System.Management.Automation.Parame | |
4679 | + terMetadata]...} | |
4680 | +ParameterSets : {[[-PSProvider] <String[]>] [-Verbose] [-Debug] [-ErrorAc | |
4681 | + tion <ActionPreference>] [-WarningAction <ActionPreferenc | |
4682 | + e>] [-ErrorVariable <String>] [-WarningVariable <String>] | |
4683 | + [-OutVariable <String>] [-OutBuffer <Int32>]} | |
4684 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113329 | |
4685 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
4686 | + s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe | |
4687 | + ll.Commands.Management.dll | |
4688 | + | |
4689 | + | |
4690 | +Verb : Get | |
4691 | +Noun : PSSession | |
4692 | +HelpFile : System.Management.Automation.dll-Help.xml | |
4693 | +PSSnapIn : Microsoft.PowerShell.Core | |
4694 | +ImplementingType : Microsoft.PowerShell.Commands.GetPSSessionCommand | |
4695 | +Definition : Get-PSSession [[-ComputerName] <String[]>] [-Verbose] [-D | |
4696 | + ebug] [-ErrorAction <ActionPreference>] [-WarningAction < | |
4697 | + ActionPreference>] [-ErrorVariable <String>] [-WarningVar | |
4698 | + iable <String>] [-OutVariable <String>] [-OutBuffer <Int3 | |
4699 | + 2>] | |
4700 | + Get-PSSession [-InstanceId <Guid[]>] [-Verbose] [-Debug] | |
4701 | + [-ErrorAction <ActionPreference>] [-WarningAction <Action | |
4702 | + Preference>] [-ErrorVariable <String>] [-WarningVariable | |
4703 | + <String>] [-OutVariable <String>] [-OutBuffer <Int32>] | |
4704 | + Get-PSSession [-Id] <Int32[]> [-Verbose] [-Debug] [-Error | |
4705 | + Action <ActionPreference>] [-WarningAction <ActionPrefere | |
4706 | + nce>] [-ErrorVariable <String>] [-WarningVariable <String | |
4707 | + >] [-OutVariable <String>] [-OutBuffer <Int32>] | |
4708 | + Get-PSSession [-Name <String[]>] [-Verbose] [-Debug] [-Er | |
4709 | + rorAction <ActionPreference>] [-WarningAction <ActionPref | |
4710 | + erence>] [-ErrorVariable <String>] [-WarningVariable <Str | |
4711 | + ing>] [-OutVariable <String>] [-OutBuffer <Int32>] | |
4712 | + | |
4713 | +DefaultParameterSet : ComputerName | |
4714 | +OutputType : {} | |
4715 | +Name : Get-PSSession | |
4716 | +CommandType : Cmdlet | |
4717 | +Visibility : Public | |
4718 | +ModuleName : Microsoft.PowerShell.Core | |
4719 | +Module : | |
4720 | +Parameters : {[InstanceId, System.Management.Automation.ParameterMetad | |
4721 | + ata], [Id, System.Management.Automation.ParameterMetadata | |
4722 | + ], [Name, System.Management.Automation.ParameterMetadata] | |
4723 | + , [ComputerName, System.Management.Automation.ParameterMe | |
4724 | + tadata]...} | |
4725 | +ParameterSets : {[[-ComputerName] <String[]>] [-Verbose] [-Debug] [-Error | |
4726 | + Action <ActionPreference>] [-WarningAction <ActionPrefere | |
4727 | + nce>] [-ErrorVariable <String>] [-WarningVariable <String | |
4728 | + >] [-OutVariable <String>] [-OutBuffer <Int32>], [-Instan | |
4729 | + ceId <Guid[]>] [-Verbose] [-Debug] [-ErrorAction <ActionP | |
4730 | + reference>] [-WarningAction <ActionPreference>] [-ErrorVa | |
4731 | + riable <String>] [-WarningVariable <String>] [-OutVariabl | |
4732 | + e <String>] [-OutBuffer <Int32>], [-Id] <Int32[]> [-Verbo | |
4733 | + se] [-Debug] [-ErrorAction <ActionPreference>] [-WarningA | |
4734 | + ction <ActionPreference>] [-ErrorVariable <String>] [-War | |
4735 | + ningVariable <String>] [-OutVariable <String>] [-OutBuffe | |
4736 | + r <Int32>], [-Name <String[]>] [-Verbose] [-Debug] [-Erro | |
4737 | + rAction <ActionPreference>] [-WarningAction <ActionPrefer | |
4738 | + ence>] [-ErrorVariable <String>] [-WarningVariable <Strin | |
4739 | + g>] [-OutVariable <String>] [-OutBuffer <Int32>]} | |
4740 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=135219 | |
4741 | +DLL : C:\Windows\assembly\GAC_MSIL\System.Management.Automation | |
4742 | + \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d | |
4743 | + ll | |
4744 | + | |
4745 | + | |
4746 | +Verb : Get | |
4747 | +Noun : PSSessionConfiguration | |
4748 | +HelpFile : System.Management.Automation.dll-Help.xml | |
4749 | +PSSnapIn : Microsoft.PowerShell.Core | |
4750 | +ImplementingType : Microsoft.PowerShell.Commands.GetPSSessionConfigurationCo | |
4751 | + mmand | |
4752 | +Definition : Get-PSSessionConfiguration [[-Name] <String[]>] [-Verbose | |
4753 | + ] [-Debug] [-ErrorAction <ActionPreference>] [-WarningAct | |
4754 | + ion <ActionPreference>] [-ErrorVariable <String>] [-Warni | |
4755 | + ngVariable <String>] [-OutVariable <String>] [-OutBuffer | |
4756 | + <Int32>] | |
4757 | + | |
4758 | +DefaultParameterSet : | |
4759 | +OutputType : {} | |
4760 | +Name : Get-PSSessionConfiguration | |
4761 | +CommandType : Cmdlet | |
4762 | +Visibility : Public | |
4763 | +ModuleName : Microsoft.PowerShell.Core | |
4764 | +Module : | |
4765 | +Parameters : {[Name, System.Management.Automation.ParameterMetadata], | |
4766 | + [Verbose, System.Management.Automation.ParameterMetadata] | |
4767 | + , [Debug, System.Management.Automation.ParameterMetadata] | |
4768 | + , [ErrorAction, System.Management.Automation.ParameterMet | |
4769 | + adata]...} | |
4770 | +ParameterSets : {[[-Name] <String[]>] [-Verbose] [-Debug] [-ErrorAction < | |
4771 | + ActionPreference>] [-WarningAction <ActionPreference>] [- | |
4772 | + ErrorVariable <String>] [-WarningVariable <String>] [-Out | |
4773 | + Variable <String>] [-OutBuffer <Int32>]} | |
4774 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=144304 | |
4775 | +DLL : C:\Windows\assembly\GAC_MSIL\System.Management.Automation | |
4776 | + \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d | |
4777 | + ll | |
4778 | + | |
4779 | + | |
4780 | +Verb : Get | |
4781 | +Noun : PSSnapin | |
4782 | +HelpFile : System.Management.Automation.dll-Help.xml | |
4783 | +PSSnapIn : Microsoft.PowerShell.Core | |
4784 | +ImplementingType : Microsoft.PowerShell.Commands.GetPSSnapinCommand | |
4785 | +Definition : Get-PSSnapin [[-Name] <String[]>] [-Registered] [-Verbose | |
4786 | + ] [-Debug] [-ErrorAction <ActionPreference>] [-WarningAct | |
4787 | + ion <ActionPreference>] [-ErrorVariable <String>] [-Warni | |
4788 | + ngVariable <String>] [-OutVariable <String>] [-OutBuffer | |
4789 | + <Int32>] | |
4790 | + | |
4791 | +DefaultParameterSet : | |
4792 | +OutputType : {} | |
4793 | +Name : Get-PSSnapin | |
4794 | +CommandType : Cmdlet | |
4795 | +Visibility : Public | |
4796 | +ModuleName : Microsoft.PowerShell.Core | |
4797 | +Module : | |
4798 | +Parameters : {[Name, System.Management.Automation.ParameterMetadata], | |
4799 | + [Registered, System.Management.Automation.ParameterMetada | |
4800 | + ta], [Verbose, System.Management.Automation.ParameterMeta | |
4801 | + data], [Debug, System.Management.Automation.ParameterMeta | |
4802 | + data]...} | |
4803 | +ParameterSets : {[[-Name] <String[]>] [-Registered] [-Verbose] [-Debug] [ | |
4804 | + -ErrorAction <ActionPreference>] [-WarningAction <ActionP | |
4805 | + reference>] [-ErrorVariable <String>] [-WarningVariable < | |
4806 | + String>] [-OutVariable <String>] [-OutBuffer <Int32>]} | |
4807 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113330 | |
4808 | +DLL : C:\Windows\assembly\GAC_MSIL\System.Management.Automation | |
4809 | + \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d | |
4810 | + ll | |
4811 | + | |
4812 | + | |
4813 | +Verb : Get | |
4814 | +Noun : Random | |
4815 | +HelpFile : Microsoft.PowerShell.Commands.Utility.dll-Help.xml | |
4816 | +PSSnapIn : Microsoft.PowerShell.Utility | |
4817 | +ImplementingType : Microsoft.PowerShell.Commands.GetRandomCommand | |
4818 | +Definition : Get-Random [[-Maximum] <Object>] [-SetSeed <Nullable`1>] | |
4819 | + [-Minimum <Object>] [-Verbose] [-Debug] [-ErrorAction <Ac | |
4820 | + tionPreference>] [-WarningAction <ActionPreference>] [-Er | |
4821 | + rorVariable <String>] [-WarningVariable <String>] [-OutVa | |
4822 | + riable <String>] [-OutBuffer <Int32>] | |
4823 | + Get-Random [-InputObject] <Object[]> [-SetSeed <Nullable` | |
4824 | + 1>] [-Count <Int32>] [-Verbose] [-Debug] [-ErrorAction <A | |
4825 | + ctionPreference>] [-WarningAction <ActionPreference>] [-E | |
4826 | + rrorVariable <String>] [-WarningVariable <String>] [-OutV | |
4827 | + ariable <String>] [-OutBuffer <Int32>] | |
4828 | + | |
4829 | +DefaultParameterSet : RandomNumberParameterSet | |
4830 | +OutputType : {} | |
4831 | +Name : Get-Random | |
4832 | +CommandType : Cmdlet | |
4833 | +Visibility : Public | |
4834 | +ModuleName : Microsoft.PowerShell.Utility | |
4835 | +Module : | |
4836 | +Parameters : {[SetSeed, System.Management.Automation.ParameterMetadata | |
4837 | + ], [Maximum, System.Management.Automation.ParameterMetada | |
4838 | + ta], [Minimum, System.Management.Automation.ParameterMeta | |
4839 | + data], [InputObject, System.Management.Automation.Paramet | |
4840 | + erMetadata]...} | |
4841 | +ParameterSets : {[[-Maximum] <Object>] [-SetSeed <Nullable`1>] [-Minimum | |
4842 | + <Object>] [-Verbose] [-Debug] [-ErrorAction <ActionPrefer | |
4843 | + ence>] [-WarningAction <ActionPreference>] [-ErrorVariabl | |
4844 | + e <String>] [-WarningVariable <String>] [-OutVariable <St | |
4845 | + ring>] [-OutBuffer <Int32>], [-InputObject] <Object[]> [- | |
4846 | + SetSeed <Nullable`1>] [-Count <Int32>] [-Verbose] [-Debug | |
4847 | + ] [-ErrorAction <ActionPreference>] [-WarningAction <Acti | |
4848 | + onPreference>] [-ErrorVariable <String>] [-WarningVariabl | |
4849 | + e <String>] [-OutVariable <String>] [-OutBuffer <Int32>]} | |
4850 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113446 | |
4851 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
4852 | + s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell. | |
4853 | + Commands.Utility.dll | |
4854 | + | |
4855 | + | |
4856 | +Verb : Get | |
4857 | +Noun : Service | |
4858 | +HelpFile : Microsoft.PowerShell.Commands.Management.dll-Help.xml | |
4859 | +PSSnapIn : Microsoft.PowerShell.Management | |
4860 | +ImplementingType : Microsoft.PowerShell.Commands.GetServiceCommand | |
4861 | +Definition : Get-Service [[-Name] <String[]>] [-ComputerName <String[] | |
4862 | + >] [-DependentServices] [-RequiredServices] [-Include <St | |
4863 | + ring[]>] [-Exclude <String[]>] [-Verbose] [-Debug] [-Erro | |
4864 | + rAction <ActionPreference>] [-WarningAction <ActionPrefer | |
4865 | + ence>] [-ErrorVariable <String>] [-WarningVariable <Strin | |
4866 | + g>] [-OutVariable <String>] [-OutBuffer <Int32>] | |
4867 | + Get-Service [-ComputerName <String[]>] [-DependentService | |
4868 | + s] [-RequiredServices] -DisplayName <String[]> [-Include | |
4869 | + <String[]>] [-Exclude <String[]>] [-Verbose] [-Debug] [-E | |
4870 | + rrorAction <ActionPreference>] [-WarningAction <ActionPre | |
4871 | + ference>] [-ErrorVariable <String>] [-WarningVariable <St | |
4872 | + ring>] [-OutVariable <String>] [-OutBuffer <Int32>] | |
4873 | + Get-Service [-ComputerName <String[]>] [-DependentService | |
4874 | + s] [-RequiredServices] [-Include <String[]>] [-Exclude <S | |
4875 | + tring[]>] [-InputObject <ServiceController[]>] [-Verbose] | |
4876 | + [-Debug] [-ErrorAction <ActionPreference>] [-WarningActi | |
4877 | + on <ActionPreference>] [-ErrorVariable <String>] [-Warnin | |
4878 | + gVariable <String>] [-OutVariable <String>] [-OutBuffer < | |
4879 | + Int32>] | |
4880 | + | |
4881 | +DefaultParameterSet : Default | |
4882 | +OutputType : {System.ServiceProcess.ServiceController} | |
4883 | +Name : Get-Service | |
4884 | +CommandType : Cmdlet | |
4885 | +Visibility : Public | |
4886 | +ModuleName : Microsoft.PowerShell.Management | |
4887 | +Module : | |
4888 | +Parameters : {[Name, System.Management.Automation.ParameterMetadata], | |
4889 | + [ComputerName, System.Management.Automation.ParameterMeta | |
4890 | + data], [DependentServices, System.Management.Automation.P | |
4891 | + arameterMetadata], [RequiredServices, System.Management.A | |
4892 | + utomation.ParameterMetadata]...} | |
4893 | +ParameterSets : {[[-Name] <String[]>] [-ComputerName <String[]>] [-Depend | |
4894 | + entServices] [-RequiredServices] [-Include <String[]>] [- | |
4895 | + Exclude <String[]>] [-Verbose] [-Debug] [-ErrorAction <Ac | |
4896 | + tionPreference>] [-WarningAction <ActionPreference>] [-Er | |
4897 | + rorVariable <String>] [-WarningVariable <String>] [-OutVa | |
4898 | + riable <String>] [-OutBuffer <Int32>], [-ComputerName <St | |
4899 | + ring[]>] [-DependentServices] [-RequiredServices] -Displa | |
4900 | + yName <String[]> [-Include <String[]>] [-Exclude <String[ | |
4901 | + ]>] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] | |
4902 | + [-WarningAction <ActionPreference>] [-ErrorVariable <Str | |
4903 | + ing>] [-WarningVariable <String>] [-OutVariable <String>] | |
4904 | + [-OutBuffer <Int32>], [-ComputerName <String[]>] [-Depen | |
4905 | + dentServices] [-RequiredServices] [-Include <String[]>] [ | |
4906 | + -Exclude <String[]>] [-InputObject <ServiceController[]>] | |
4907 | + [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [- | |
4908 | + WarningAction <ActionPreference>] [-ErrorVariable <String | |
4909 | + >] [-WarningVariable <String>] [-OutVariable <String>] [- | |
4910 | + OutBuffer <Int32>]} | |
4911 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113332 | |
4912 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
4913 | + s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe | |
4914 | + ll.Commands.Management.dll | |
4915 | + | |
4916 | + | |
4917 | +Verb : Get | |
4918 | +Noun : TraceSource | |
4919 | +HelpFile : Microsoft.PowerShell.Commands.Utility.dll-Help.xml | |
4920 | +PSSnapIn : Microsoft.PowerShell.Utility | |
4921 | +ImplementingType : Microsoft.PowerShell.Commands.GetTraceSourceCommand | |
4922 | +Definition : Get-TraceSource [[-Name] <String[]>] [-Verbose] [-Debug] | |
4923 | + [-ErrorAction <ActionPreference>] [-WarningAction <Action | |
4924 | + Preference>] [-ErrorVariable <String>] [-WarningVariable | |
4925 | + <String>] [-OutVariable <String>] [-OutBuffer <Int32>] | |
4926 | + | |
4927 | +DefaultParameterSet : | |
4928 | +OutputType : {} | |
4929 | +Name : Get-TraceSource | |
4930 | +CommandType : Cmdlet | |
4931 | +Visibility : Public | |
4932 | +ModuleName : Microsoft.PowerShell.Utility | |
4933 | +Module : | |
4934 | +Parameters : {[Name, System.Management.Automation.ParameterMetadata], | |
4935 | + [Verbose, System.Management.Automation.ParameterMetadata] | |
4936 | + , [Debug, System.Management.Automation.ParameterMetadata] | |
4937 | + , [ErrorAction, System.Management.Automation.ParameterMet | |
4938 | + adata]...} | |
4939 | +ParameterSets : {[[-Name] <String[]>] [-Verbose] [-Debug] [-ErrorAction < | |
4940 | + ActionPreference>] [-WarningAction <ActionPreference>] [- | |
4941 | + ErrorVariable <String>] [-WarningVariable <String>] [-Out | |
4942 | + Variable <String>] [-OutBuffer <Int32>]} | |
4943 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113333 | |
4944 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
4945 | + s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell. | |
4946 | + Commands.Utility.dll | |
4947 | + | |
4948 | + | |
4949 | +Verb : Get | |
4950 | +Noun : Transaction | |
4951 | +HelpFile : Microsoft.PowerShell.Commands.Management.dll-Help.xml | |
4952 | +PSSnapIn : Microsoft.PowerShell.Management | |
4953 | +ImplementingType : Microsoft.PowerShell.Commands.GetTransactionCommand | |
4954 | +Definition : Get-Transaction [-Verbose] [-Debug] [-ErrorAction <Action | |
4955 | + Preference>] [-WarningAction <ActionPreference>] [-ErrorV | |
4956 | + ariable <String>] [-WarningVariable <String>] [-OutVariab | |
4957 | + le <String>] [-OutBuffer <Int32>] | |
4958 | + | |
4959 | +DefaultParameterSet : | |
4960 | +OutputType : {System.Management.Automation.PSTransaction} | |
4961 | +Name : Get-Transaction | |
4962 | +CommandType : Cmdlet | |
4963 | +Visibility : Public | |
4964 | +ModuleName : Microsoft.PowerShell.Management | |
4965 | +Module : | |
4966 | +Parameters : {[Verbose, System.Management.Automation.ParameterMetadata | |
4967 | + ], [Debug, System.Management.Automation.ParameterMetadata | |
4968 | + ], [ErrorAction, System.Management.Automation.ParameterMe | |
4969 | + tadata], [WarningAction, System.Management.Automation.Par | |
4970 | + ameterMetadata]...} | |
4971 | +ParameterSets : {[-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [- | |
4972 | + WarningAction <ActionPreference>] [-ErrorVariable <String | |
4973 | + >] [-WarningVariable <String>] [-OutVariable <String>] [- | |
4974 | + OutBuffer <Int32>]} | |
4975 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=135220 | |
4976 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
4977 | + s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe | |
4978 | + ll.Commands.Management.dll | |
4979 | + | |
4980 | + | |
4981 | +Verb : Get | |
4982 | +Noun : UICulture | |
4983 | +HelpFile : Microsoft.PowerShell.Commands.Utility.dll-Help.xml | |
4984 | +PSSnapIn : Microsoft.PowerShell.Utility | |
4985 | +ImplementingType : Microsoft.PowerShell.Commands.GetUICultureCommand | |
4986 | +Definition : Get-UICulture [-Verbose] [-Debug] [-ErrorAction <ActionPr | |
4987 | + eference>] [-WarningAction <ActionPreference>] [-ErrorVar | |
4988 | + iable <String>] [-WarningVariable <String>] [-OutVariable | |
4989 | + <String>] [-OutBuffer <Int32>] | |
4990 | + | |
4991 | +DefaultParameterSet : | |
4992 | +OutputType : {System.Globalization.CultureInfo} | |
4993 | +Name : Get-UICulture | |
4994 | +CommandType : Cmdlet | |
4995 | +Visibility : Public | |
4996 | +ModuleName : Microsoft.PowerShell.Utility | |
4997 | +Module : | |
4998 | +Parameters : {[Verbose, System.Management.Automation.ParameterMetadata | |
4999 | + ], [Debug, System.Management.Automation.ParameterMetadata | |
5000 | + ], [ErrorAction, System.Management.Automation.ParameterMe | |
5001 | + tadata], [WarningAction, System.Management.Automation.Par | |
5002 | + ameterMetadata]...} | |
5003 | +ParameterSets : {[-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [- | |
5004 | + WarningAction <ActionPreference>] [-ErrorVariable <String | |
5005 | + >] [-WarningVariable <String>] [-OutVariable <String>] [- | |
5006 | + OutBuffer <Int32>]} | |
5007 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113334 | |
5008 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
5009 | + s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell. | |
5010 | + Commands.Utility.dll | |
5011 | + | |
5012 | + | |
5013 | +Verb : Get | |
5014 | +Noun : Unique | |
5015 | +HelpFile : Microsoft.PowerShell.Commands.Utility.dll-Help.xml | |
5016 | +PSSnapIn : Microsoft.PowerShell.Utility | |
5017 | +ImplementingType : Microsoft.PowerShell.Commands.GetUniqueCommand | |
5018 | +Definition : Get-Unique [-InputObject <PSObject>] [-AsString] [-Verbos | |
5019 | + e] [-Debug] [-ErrorAction <ActionPreference>] [-WarningAc | |
5020 | + tion <ActionPreference>] [-ErrorVariable <String>] [-Warn | |
5021 | + ingVariable <String>] [-OutVariable <String>] [-OutBuffer | |
5022 | + <Int32>] | |
5023 | + Get-Unique [-InputObject <PSObject>] [-OnType] [-Verbose] | |
5024 | + [-Debug] [-ErrorAction <ActionPreference>] [-WarningActi | |
5025 | + on <ActionPreference>] [-ErrorVariable <String>] [-Warnin | |
5026 | + gVariable <String>] [-OutVariable <String>] [-OutBuffer < | |
5027 | + Int32>] | |
5028 | + | |
5029 | +DefaultParameterSet : AsString | |
5030 | +OutputType : {} | |
5031 | +Name : Get-Unique | |
5032 | +CommandType : Cmdlet | |
5033 | +Visibility : Public | |
5034 | +ModuleName : Microsoft.PowerShell.Utility | |
5035 | +Module : | |
5036 | +Parameters : {[InputObject, System.Management.Automation.ParameterMeta | |
5037 | + data], [AsString, System.Management.Automation.ParameterM | |
5038 | + etadata], [OnType, System.Management.Automation.Parameter | |
5039 | + Metadata], [Verbose, System.Management.Automation.Paramet | |
5040 | + erMetadata]...} | |
5041 | +ParameterSets : {[-InputObject <PSObject>] [-AsString] [-Verbose] [-Debug | |
5042 | + ] [-ErrorAction <ActionPreference>] [-WarningAction <Acti | |
5043 | + onPreference>] [-ErrorVariable <String>] [-WarningVariabl | |
5044 | + e <String>] [-OutVariable <String>] [-OutBuffer <Int32>], | |
5045 | + [-InputObject <PSObject>] [-OnType] [-Verbose] [-Debug] | |
5046 | + [-ErrorAction <ActionPreference>] [-WarningAction <Action | |
5047 | + Preference>] [-ErrorVariable <String>] [-WarningVariable | |
5048 | + <String>] [-OutVariable <String>] [-OutBuffer <Int32>]} | |
5049 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113335 | |
5050 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
5051 | + s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell. | |
5052 | + Commands.Utility.dll | |
5053 | + | |
5054 | + | |
5055 | +Verb : Get | |
5056 | +Noun : Variable | |
5057 | +HelpFile : Microsoft.PowerShell.Commands.Utility.dll-Help.xml | |
5058 | +PSSnapIn : Microsoft.PowerShell.Utility | |
5059 | +ImplementingType : Microsoft.PowerShell.Commands.GetVariableCommand | |
5060 | +Definition : Get-Variable [[-Name] <String[]>] [-ValueOnly] [-Include | |
5061 | + <String[]>] [-Exclude <String[]>] [-Scope <String>] [-Ver | |
5062 | + bose] [-Debug] [-ErrorAction <ActionPreference>] [-Warnin | |
5063 | + gAction <ActionPreference>] [-ErrorVariable <String>] [-W | |
5064 | + arningVariable <String>] [-OutVariable <String>] [-OutBuf | |
5065 | + fer <Int32>] | |
5066 | + | |
5067 | +DefaultParameterSet : | |
5068 | +OutputType : {} | |
5069 | +Name : Get-Variable | |
5070 | +CommandType : Cmdlet | |
5071 | +Visibility : Public | |
5072 | +ModuleName : Microsoft.PowerShell.Utility | |
5073 | +Module : | |
5074 | +Parameters : {[Name, System.Management.Automation.ParameterMetadata], | |
5075 | + [ValueOnly, System.Management.Automation.ParameterMetadat | |
5076 | + a], [Include, System.Management.Automation.ParameterMetad | |
5077 | + ata], [Exclude, System.Management.Automation.ParameterMet | |
5078 | + adata]...} | |
5079 | +ParameterSets : {[[-Name] <String[]>] [-ValueOnly] [-Include <String[]>] | |
5080 | + [-Exclude <String[]>] [-Scope <String>] [-Verbose] [-Debu | |
5081 | + g] [-ErrorAction <ActionPreference>] [-WarningAction <Act | |
5082 | + ionPreference>] [-ErrorVariable <String>] [-WarningVariab | |
5083 | + le <String>] [-OutVariable <String>] [-OutBuffer <Int32>] | |
5084 | + } | |
5085 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113336 | |
5086 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
5087 | + s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell. | |
5088 | + Commands.Utility.dll | |
5089 | + | |
5090 | + | |
5091 | +ScriptBlock : | |
5092 | + param( | |
5093 | + [Parameter(ValueFromPipeline=$true)] | |
5094 | + [string[]] | |
5095 | + $verb = '*' | |
5096 | + ) | |
5097 | + begin { | |
5098 | + | |
5099 | + $allVerbs = [PSObject].Assembly.GetTypes() | | |
5100 | + Where-Object {$_.Name -match '^Verbs.'} | | |
5101 | + Get-Member -type Properties -static | | |
5102 | + Select-Object @{ | |
5103 | + Name='Verb' | |
5104 | + Expression = {$_.Name} | |
5105 | + }, @{ | |
5106 | + Name='Group' | |
5107 | + Expression = { | |
5108 | + $str = "$($_.TypeName)" | |
5109 | + $str.Substring($str.LastIndexOf('Verbs') | |
5110 | + + 5) | |
5111 | + } | |
5112 | + } | |
5113 | + | |
5114 | + } | |
5115 | + process { | |
5116 | + | |
5117 | + foreach ($v in $verb) { | |
5118 | + $allVerbs | Where-Object { $_.Verb -like $v } | |
5119 | + } | |
5120 | + | |
5121 | + } | |
5122 | + | |
5123 | +CmdletBinding : True | |
5124 | +DefaultParameterSet : | |
5125 | +Definition : | |
5126 | + param( | |
5127 | + [Parameter(ValueFromPipeline=$true)] | |
5128 | + [string[]] | |
5129 | + $verb = '*' | |
5130 | + ) | |
5131 | + begin { | |
5132 | + | |
5133 | + $allVerbs = [PSObject].Assembly.GetTypes() | | |
5134 | + Where-Object {$_.Name -match '^Verbs.'} | | |
5135 | + Get-Member -type Properties -static | | |
5136 | + Select-Object @{ | |
5137 | + Name='Verb' | |
5138 | + Expression = {$_.Name} | |
5139 | + }, @{ | |
5140 | + Name='Group' | |
5141 | + Expression = { | |
5142 | + $str = "$($_.TypeName)" | |
5143 | + $str.Substring($str.LastIndexOf('Verbs') | |
5144 | + + 5) | |
5145 | + } | |
5146 | + } | |
5147 | + | |
5148 | + } | |
5149 | + process { | |
5150 | + | |
5151 | + foreach ($v in $verb) { | |
5152 | + $allVerbs | Where-Object { $_.Verb -like $v } | |
5153 | + } | |
5154 | + | |
5155 | + } | |
5156 | + | |
5157 | +Options : None | |
5158 | +Description : | |
5159 | +OutputType : {} | |
5160 | +Name : Get-Verb | |
5161 | +CommandType : Function | |
5162 | +Visibility : Public | |
5163 | +ModuleName : | |
5164 | +Module : | |
5165 | +Parameters : {[verb, System.Management.Automation.ParameterMetadata], | |
5166 | + [Verbose, System.Management.Automation.ParameterMetadata] | |
5167 | + , [Debug, System.Management.Automation.ParameterMetadata] | |
5168 | + , [ErrorAction, System.Management.Automation.ParameterMet | |
5169 | + adata]...} | |
5170 | +ParameterSets : {[[-verb] <String[]>] [-Verbose] [-Debug] [-ErrorAction < | |
5171 | + ActionPreference>] [-WarningAction <ActionPreference>] [- | |
5172 | + ErrorVariable <String>] [-WarningVariable <String>] [-Out | |
5173 | + Variable <String>] [-OutBuffer <Int32>]} | |
5174 | +HelpUri : | |
5175 | + | |
5176 | + | |
5177 | +Verb : Get | |
5178 | +Noun : WinEvent | |
5179 | +HelpFile : Microsoft.PowerShell.Commands.Diagnostics.dll-Help.xml | |
5180 | +PSSnapIn : Microsoft.PowerShell.Diagnostics | |
5181 | +ImplementingType : Microsoft.PowerShell.Commands.GetWinEventCommand | |
5182 | +Definition : Get-WinEvent [[-LogName] <String[]>] [-MaxEvents <Int64>] | |
5183 | + [-ComputerName <String>] [-Credential <PSCredential>] [- | |
5184 | + FilterXPath <String>] [-Force] [-Oldest] [-Verbose] [-Deb | |
5185 | + ug] [-ErrorAction <ActionPreference>] [-WarningAction <Ac | |
5186 | + tionPreference>] [-ErrorVariable <String>] [-WarningVaria | |
5187 | + ble <String>] [-OutVariable <String>] [-OutBuffer <Int32> | |
5188 | + ] | |
5189 | + Get-WinEvent [-ListLog] <String[]> [-ComputerName <String | |
5190 | + >] [-Credential <PSCredential>] [-Force] [-Verbose] [-Deb | |
5191 | + ug] [-ErrorAction <ActionPreference>] [-WarningAction <Ac | |
5192 | + tionPreference>] [-ErrorVariable <String>] [-WarningVaria | |
5193 | + ble <String>] [-OutVariable <String>] [-OutBuffer <Int32> | |
5194 | + ] | |
5195 | + Get-WinEvent [-ListProvider] <String[]> [-ComputerName <S | |
5196 | + tring>] [-Credential <PSCredential>] [-Verbose] [-Debug] | |
5197 | + [-ErrorAction <ActionPreference>] [-WarningAction <Action | |
5198 | + Preference>] [-ErrorVariable <String>] [-WarningVariable | |
5199 | + <String>] [-OutVariable <String>] [-OutBuffer <Int32>] | |
5200 | + Get-WinEvent [-ProviderName] <String[]> [-MaxEvents <Int6 | |
5201 | + 4>] [-ComputerName <String>] [-Credential <PSCredential>] | |
5202 | + [-FilterXPath <String>] [-Force] [-Oldest] [-Verbose] [- | |
5203 | + Debug] [-ErrorAction <ActionPreference>] [-WarningAction | |
5204 | + <ActionPreference>] [-ErrorVariable <String>] [-WarningVa | |
5205 | + riable <String>] [-OutVariable <String>] [-OutBuffer <Int | |
5206 | + 32>] | |
5207 | + Get-WinEvent [-Path] <String[]> [-MaxEvents <Int64>] [-Cr | |
5208 | + edential <PSCredential>] [-FilterXPath <String>] [-Oldest | |
5209 | + ] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [ | |
5210 | + -WarningAction <ActionPreference>] [-ErrorVariable <Strin | |
5211 | + g>] [-WarningVariable <String>] [-OutVariable <String>] [ | |
5212 | + -OutBuffer <Int32>] | |
5213 | + Get-WinEvent [-FilterXml] <XmlDocument> [-MaxEvents <Int6 | |
5214 | + 4>] [-ComputerName <String>] [-Credential <PSCredential>] | |
5215 | + [-Oldest] [-Verbose] [-Debug] [-ErrorAction <ActionPrefe | |
5216 | + rence>] [-WarningAction <ActionPreference>] [-ErrorVariab | |
5217 | + le <String>] [-WarningVariable <String>] [-OutVariable <S | |
5218 | + tring>] [-OutBuffer <Int32>] | |
5219 | + Get-WinEvent [-FilterHashtable] <Hashtable[]> [-MaxEvents | |
5220 | + <Int64>] [-ComputerName <String>] [-Credential <PSCreden | |
5221 | + tial>] [-Force] [-Oldest] [-Verbose] [-Debug] [-ErrorActi | |
5222 | + on <ActionPreference>] [-WarningAction <ActionPreference> | |
5223 | + ] [-ErrorVariable <String>] [-WarningVariable <String>] [ | |
5224 | + -OutVariable <String>] [-OutBuffer <Int32>] | |
5225 | + | |
5226 | +DefaultParameterSet : GetLogSet | |
5227 | +OutputType : {} | |
5228 | +Name : Get-WinEvent | |
5229 | +CommandType : Cmdlet | |
5230 | +Visibility : Public | |
5231 | +ModuleName : Microsoft.PowerShell.Diagnostics | |
5232 | +Module : | |
5233 | +Parameters : {[ListLog, System.Management.Automation.ParameterMetadata | |
5234 | + ], [LogName, System.Management.Automation.ParameterMetada | |
5235 | + ta], [ListProvider, System.Management.Automation.Paramete | |
5236 | + rMetadata], [ProviderName, System.Management.Automation.P | |
5237 | + arameterMetadata]...} | |
5238 | +ParameterSets : {[[-LogName] <String[]>] [-MaxEvents <Int64>] [-ComputerN | |
5239 | + ame <String>] [-Credential <PSCredential>] [-FilterXPath | |
5240 | + <String>] [-Force] [-Oldest] [-Verbose] [-Debug] [-ErrorA | |
5241 | + ction <ActionPreference>] [-WarningAction <ActionPreferen | |
5242 | + ce>] [-ErrorVariable <String>] [-WarningVariable <String> | |
5243 | + ] [-OutVariable <String>] [-OutBuffer <Int32>], [-ListLog | |
5244 | + ] <String[]> [-ComputerName <String>] [-Credential <PSCre | |
5245 | + dential>] [-Force] [-Verbose] [-Debug] [-ErrorAction <Act | |
5246 | + ionPreference>] [-WarningAction <ActionPreference>] [-Err | |
5247 | + orVariable <String>] [-WarningVariable <String>] [-OutVar | |
5248 | + iable <String>] [-OutBuffer <Int32>], [-ListProvider] <St | |
5249 | + ring[]> [-ComputerName <String>] [-Credential <PSCredenti | |
5250 | + al>] [-Verbose] [-Debug] [-ErrorAction <ActionPreference> | |
5251 | + ] [-WarningAction <ActionPreference>] [-ErrorVariable <St | |
5252 | + ring>] [-WarningVariable <String>] [-OutVariable <String> | |
5253 | + ] [-OutBuffer <Int32>], [-ProviderName] <String[]> [-MaxE | |
5254 | + vents <Int64>] [-ComputerName <String>] [-Credential <PSC | |
5255 | + redential>] [-FilterXPath <String>] [-Force] [-Oldest] [- | |
5256 | + Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-War | |
5257 | + ningAction <ActionPreference>] [-ErrorVariable <String>] | |
5258 | + [-WarningVariable <String>] [-OutVariable <String>] [-Out | |
5259 | + Buffer <Int32>]...} | |
5260 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=138336 | |
5261 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
5262 | + s.Diagnostics\1.0.0.0__31bf3856ad364e35\Microsoft.PowerSh | |
5263 | + ell.Commands.Diagnostics.dll | |
5264 | + | |
5265 | + | |
5266 | +Verb : Get | |
5267 | +Noun : WmiObject | |
5268 | +HelpFile : Microsoft.PowerShell.Commands.Management.dll-Help.xml | |
5269 | +PSSnapIn : Microsoft.PowerShell.Management | |
5270 | +ImplementingType : Microsoft.PowerShell.Commands.GetWmiObjectCommand | |
5271 | +Definition : Get-WmiObject [-Class] <String> [[-Property] <String[]>] | |
5272 | + [-Filter <String>] [-Amended] [-DirectRead] [-AsJob] [-Im | |
5273 | + personation <ImpersonationLevel>] [-Authentication <Authe | |
5274 | + nticationLevel>] [-Locale <String>] [-EnableAllPrivileges | |
5275 | + ] [-Authority <String>] [-Credential <PSCredential>] [-Th | |
5276 | + rottleLimit <Int32>] [-ComputerName <String[]>] [-Namespa | |
5277 | + ce <String>] [-Verbose] [-Debug] [-ErrorAction <ActionPre | |
5278 | + ference>] [-WarningAction <ActionPreference>] [-ErrorVari | |
5279 | + able <String>] [-WarningVariable <String>] [-OutVariable | |
5280 | + <String>] [-OutBuffer <Int32>] | |
5281 | + Get-WmiObject [[-Class] <String>] [-Recurse] [-Amended] [ | |
5282 | + -List] [-AsJob] [-Impersonation <ImpersonationLevel>] [-A | |
5283 | + uthentication <AuthenticationLevel>] [-Locale <String>] [ | |
5284 | + -EnableAllPrivileges] [-Authority <String>] [-Credential | |
5285 | + <PSCredential>] [-ThrottleLimit <Int32>] [-ComputerName < | |
5286 | + String[]>] [-Namespace <String>] [-Verbose] [-Debug] [-Er | |
5287 | + rorAction <ActionPreference>] [-WarningAction <ActionPref | |
5288 | + erence>] [-ErrorVariable <String>] [-WarningVariable <Str | |
5289 | + ing>] [-OutVariable <String>] [-OutBuffer <Int32>] | |
5290 | + Get-WmiObject [-Amended] [-DirectRead] -Query <String> [- | |
5291 | + AsJob] [-Impersonation <ImpersonationLevel>] [-Authentica | |
5292 | + tion <AuthenticationLevel>] [-Locale <String>] [-EnableAl | |
5293 | + lPrivileges] [-Authority <String>] [-Credential <PSCreden | |
5294 | + tial>] [-ThrottleLimit <Int32>] [-ComputerName <String[]> | |
5295 | + ] [-Namespace <String>] [-Verbose] [-Debug] [-ErrorAction | |
5296 | + <ActionPreference>] [-WarningAction <ActionPreference>] | |
5297 | + [-ErrorVariable <String>] [-WarningVariable <String>] [-O | |
5298 | + utVariable <String>] [-OutBuffer <Int32>] | |
5299 | + Get-WmiObject [-Amended] [-AsJob] [-Impersonation <Impers | |
5300 | + onationLevel>] [-Authentication <AuthenticationLevel>] [- | |
5301 | + Locale <String>] [-EnableAllPrivileges] [-Authority <Stri | |
5302 | + ng>] [-Credential <PSCredential>] [-ThrottleLimit <Int32> | |
5303 | + ] [-ComputerName <String[]>] [-Namespace <String>] [-Verb | |
5304 | + ose] [-Debug] [-ErrorAction <ActionPreference>] [-Warning | |
5305 | + Action <ActionPreference>] [-ErrorVariable <String>] [-Wa | |
5306 | + rningVariable <String>] [-OutVariable <String>] [-OutBuff | |
5307 | + er <Int32>] | |
5308 | + Get-WmiObject [-Amended] [-AsJob] [-Impersonation <Impers | |
5309 | + onationLevel>] [-Authentication <AuthenticationLevel>] [- | |
5310 | + Locale <String>] [-EnableAllPrivileges] [-Authority <Stri | |
5311 | + ng>] [-Credential <PSCredential>] [-ThrottleLimit <Int32> | |
5312 | + ] [-ComputerName <String[]>] [-Namespace <String>] [-Verb | |
5313 | + ose] [-Debug] [-ErrorAction <ActionPreference>] [-Warning | |
5314 | + Action <ActionPreference>] [-ErrorVariable <String>] [-Wa | |
5315 | + rningVariable <String>] [-OutVariable <String>] [-OutBuff | |
5316 | + er <Int32>] | |
5317 | + | |
5318 | +DefaultParameterSet : query | |
5319 | +OutputType : {} | |
5320 | +Name : Get-WmiObject | |
5321 | +CommandType : Cmdlet | |
5322 | +Visibility : Public | |
5323 | +ModuleName : Microsoft.PowerShell.Management | |
5324 | +Module : | |
5325 | +Parameters : {[Class, System.Management.Automation.ParameterMetadata], | |
5326 | + [Recurse, System.Management.Automation.ParameterMetadata | |
5327 | + ], [Property, System.Management.Automation.ParameterMetad | |
5328 | + ata], [Filter, System.Management.Automation.ParameterMeta | |
5329 | + data]...} | |
5330 | +ParameterSets : {[-Class] <String> [[-Property] <String[]>] [-Filter <Str | |
5331 | + ing>] [-Amended] [-DirectRead] [-AsJob] [-Impersonation < | |
5332 | + ImpersonationLevel>] [-Authentication <AuthenticationLeve | |
5333 | + l>] [-Locale <String>] [-EnableAllPrivileges] [-Authority | |
5334 | + <String>] [-Credential <PSCredential>] [-ThrottleLimit < | |
5335 | + Int32>] [-ComputerName <String[]>] [-Namespace <String>] | |
5336 | + [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-W | |
5337 | + arningAction <ActionPreference>] [-ErrorVariable <String> | |
5338 | + ] [-WarningVariable <String>] [-OutVariable <String>] [-O | |
5339 | + utBuffer <Int32>], [[-Class] <String>] [-Recurse] [-Amend | |
5340 | + ed] [-List] [-AsJob] [-Impersonation <ImpersonationLevel> | |
5341 | + ] [-Authentication <AuthenticationLevel>] [-Locale <Strin | |
5342 | + g>] [-EnableAllPrivileges] [-Authority <String>] [-Creden | |
5343 | + tial <PSCredential>] [-ThrottleLimit <Int32>] [-ComputerN | |
5344 | + ame <String[]>] [-Namespace <String>] [-Verbose] [-Debug] | |
5345 | + [-ErrorAction <ActionPreference>] [-WarningAction <Actio | |
5346 | + nPreference>] [-ErrorVariable <String>] [-WarningVariable | |
5347 | + <String>] [-OutVariable <String>] [-OutBuffer <Int32>], | |
5348 | + [-Amended] [-DirectRead] -Query <String> [-AsJob] [-Imper | |
5349 | + sonation <ImpersonationLevel>] [-Authentication <Authenti | |
5350 | + cationLevel>] [-Locale <String>] [-EnableAllPrivileges] [ | |
5351 | + -Authority <String>] [-Credential <PSCredential>] [-Throt | |
5352 | + tleLimit <Int32>] [-ComputerName <String[]>] [-Namespace | |
5353 | + <String>] [-Verbose] [-Debug] [-ErrorAction <ActionPrefer | |
5354 | + ence>] [-WarningAction <ActionPreference>] [-ErrorVariabl | |
5355 | + e <String>] [-WarningVariable <String>] [-OutVariable <St | |
5356 | + ring>] [-OutBuffer <Int32>], [-Amended] [-AsJob] [-Impers | |
5357 | + onation <ImpersonationLevel>] [-Authentication <Authentic | |
5358 | + ationLevel>] [-Locale <String>] [-EnableAllPrivileges] [- | |
5359 | + Authority <String>] [-Credential <PSCredential>] [-Thrott | |
5360 | + leLimit <Int32>] [-ComputerName <String[]>] [-Namespace < | |
5361 | + String>] [-Verbose] [-Debug] [-ErrorAction <ActionPrefere | |
5362 | + nce>] [-WarningAction <ActionPreference>] [-ErrorVariable | |
5363 | + <String>] [-WarningVariable <String>] [-OutVariable <Str | |
5364 | + ing>] [-OutBuffer <Int32>]...} | |
5365 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113337 | |
5366 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
5367 | + s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe | |
5368 | + ll.Commands.Management.dll | |
5369 | + | |
5370 | + | |
5371 | +Verb : Get | |
5372 | +Noun : WSManCredSSP | |
5373 | +HelpFile : Microsoft.WSMan.Management.dll-Help.xml | |
5374 | +PSSnapIn : Microsoft.WSMan.Management | |
5375 | +ImplementingType : Microsoft.WSMan.Management.GetWSManCredSSPCommand | |
5376 | +Definition : Get-WSManCredSSP [-Verbose] [-Debug] [-ErrorAction <Actio | |
5377 | + nPreference>] [-WarningAction <ActionPreference>] [-Error | |
5378 | + Variable <String>] [-WarningVariable <String>] [-OutVaria | |
5379 | + ble <String>] [-OutBuffer <Int32>] | |
5380 | + | |
5381 | +DefaultParameterSet : | |
5382 | +OutputType : {} | |
5383 | +Name : Get-WSManCredSSP | |
5384 | +CommandType : Cmdlet | |
5385 | +Visibility : Public | |
5386 | +ModuleName : Microsoft.WSMan.Management | |
5387 | +Module : | |
5388 | +Parameters : {[Verbose, System.Management.Automation.ParameterMetadata | |
5389 | + ], [Debug, System.Management.Automation.ParameterMetadata | |
5390 | + ], [ErrorAction, System.Management.Automation.ParameterMe | |
5391 | + tadata], [WarningAction, System.Management.Automation.Par | |
5392 | + ameterMetadata]...} | |
5393 | +ParameterSets : {[-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [- | |
5394 | + WarningAction <ActionPreference>] [-ErrorVariable <String | |
5395 | + >] [-WarningVariable <String>] [-OutVariable <String>] [- | |
5396 | + OutBuffer <Int32>]} | |
5397 | +HelpUri : http://go.microsoft.com/fwlink/?LinkId=141443 | |
5398 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.WSMan.Management\1 | |
5399 | + .0.0.0__31bf3856ad364e35\Microsoft.WSMan.Management.dll | |
5400 | + | |
5401 | + | |
5402 | +Verb : Get | |
5403 | +Noun : WSManInstance | |
5404 | +HelpFile : Microsoft.WSMan.Management.dll-Help.xml | |
5405 | +PSSnapIn : Microsoft.WSMan.Management | |
5406 | +ImplementingType : Microsoft.WSMan.Management.GetWSManInstanceCommand | |
5407 | +Definition : Get-WSManInstance [-ResourceURI] <Uri> [-ApplicationName | |
5408 | + <String>] [-ComputerName <String>] [-ConnectionURI <Uri>] | |
5409 | + [-Dialect <Uri>] [-Fragment <String>] [-OptionSet <Hasht | |
5410 | + able>] [-Port <Int32>] [-SelectorSet <Hashtable>] [-Sessi | |
5411 | + onOption <SessionOption>] [-UseSSL] [-Credential <PSCrede | |
5412 | + ntial>] [-Authentication <AuthenticationMechanism>] [-Cer | |
5413 | + tificateThumbprint <String>] [-Verbose] [-Debug] [-ErrorA | |
5414 | + ction <ActionPreference>] [-WarningAction <ActionPreferen | |
5415 | + ce>] [-ErrorVariable <String>] [-WarningVariable <String> | |
5416 | + ] [-OutVariable <String>] [-OutBuffer <Int32>] | |
5417 | + Get-WSManInstance [-ResourceURI] <Uri> [-ApplicationName | |
5418 | + <String>] [-BasePropertiesOnly] [-ComputerName <String>] | |
5419 | + [-ConnectionURI <Uri>] [-Dialect <Uri>] -Enumerate [-Filt | |
5420 | + er <String>] [-OptionSet <Hashtable>] [-Port <Int32>] [-A | |
5421 | + ssociations] [-ReturnType <String>] [-SessionOption <Sess | |
5422 | + ionOption>] [-Shallow] [-UseSSL] [-Credential <PSCredenti | |
5423 | + al>] [-Authentication <AuthenticationMechanism>] [-Certif | |
5424 | + icateThumbprint <String>] [-Verbose] [-Debug] [-ErrorActi | |
5425 | + on <ActionPreference>] [-WarningAction <ActionPreference> | |
5426 | + ] [-ErrorVariable <String>] [-WarningVariable <String>] [ | |
5427 | + -OutVariable <String>] [-OutBuffer <Int32>] | |
5428 | + | |
5429 | +DefaultParameterSet : GetInstance | |
5430 | +OutputType : {} | |
5431 | +Name : Get-WSManInstance | |
5432 | +CommandType : Cmdlet | |
5433 | +Visibility : Public | |
5434 | +ModuleName : Microsoft.WSMan.Management | |
5435 | +Module : | |
5436 | +Parameters : {[ApplicationName, System.Management.Automation.Parameter | |
5437 | + Metadata], [BasePropertiesOnly, System.Management.Automat | |
5438 | + ion.ParameterMetadata], [ComputerName, System.Management. | |
5439 | + Automation.ParameterMetadata], [ConnectionURI, System.Man | |
5440 | + agement.Automation.ParameterMetadata]...} | |
5441 | +ParameterSets : {[-ResourceURI] <Uri> [-ApplicationName <String>] [-Compu | |
5442 | + terName <String>] [-ConnectionURI <Uri>] [-Dialect <Uri>] | |
5443 | + [-Fragment <String>] [-OptionSet <Hashtable>] [-Port <In | |
5444 | + t32>] [-SelectorSet <Hashtable>] [-SessionOption <Session | |
5445 | + Option>] [-UseSSL] [-Credential <PSCredential>] [-Authent | |
5446 | + ication <AuthenticationMechanism>] [-CertificateThumbprin | |
5447 | + t <String>] [-Verbose] [-Debug] [-ErrorAction <ActionPref | |
5448 | + erence>] [-WarningAction <ActionPreference>] [-ErrorVaria | |
5449 | + ble <String>] [-WarningVariable <String>] [-OutVariable < | |
5450 | + String>] [-OutBuffer <Int32>], [-ResourceURI] <Uri> [-App | |
5451 | + licationName <String>] [-BasePropertiesOnly] [-ComputerNa | |
5452 | + me <String>] [-ConnectionURI <Uri>] [-Dialect <Uri>] -Enu | |
5453 | + merate [-Filter <String>] [-OptionSet <Hashtable>] [-Port | |
5454 | + <Int32>] [-Associations] [-ReturnType <String>] [-Sessio | |
5455 | + nOption <SessionOption>] [-Shallow] [-UseSSL] [-Credentia | |
5456 | + l <PSCredential>] [-Authentication <AuthenticationMechani | |
5457 | + sm>] [-CertificateThumbprint <String>] [-Verbose] [-Debug | |
5458 | + ] [-ErrorAction <ActionPreference>] [-WarningAction <Acti | |
5459 | + onPreference>] [-ErrorVariable <String>] [-WarningVariabl | |
5460 | + e <String>] [-OutVariable <String>] [-OutBuffer <Int32>]} | |
5461 | +HelpUri : http://go.microsoft.com/fwlink/?LinkId=141444 | |
5462 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.WSMan.Management\1 | |
5463 | + .0.0.0__31bf3856ad364e35\Microsoft.WSMan.Management.dll | |
5464 | + | |
5465 | +Name : ghy | |
5466 | +CommandType : Alias | |
5467 | +Definition : Get-History | |
5468 | +ReferencedCommand : Get-History | |
5469 | +ResolvedCommand : Get-History | |
5470 | + | |
5471 | +Name : gi | |
5472 | +CommandType : Alias | |
5473 | +Definition : Get-Item | |
5474 | +ReferencedCommand : Get-Item | |
5475 | +ResolvedCommand : Get-Item | |
5476 | + | |
5477 | +Name : gjb | |
5478 | +CommandType : Alias | |
5479 | +Definition : Get-Job | |
5480 | +ReferencedCommand : Get-Job | |
5481 | +ResolvedCommand : Get-Job | |
5482 | + | |
5483 | +Name : gl | |
5484 | +CommandType : Alias | |
5485 | +Definition : Get-Location | |
5486 | +ReferencedCommand : Get-Location | |
5487 | +ResolvedCommand : Get-Location | |
5488 | + | |
5489 | +Name : gm | |
5490 | +CommandType : Alias | |
5491 | +Definition : Get-Member | |
5492 | +ReferencedCommand : Get-Member | |
5493 | +ResolvedCommand : Get-Member | |
5494 | + | |
5495 | +Name : gmo | |
5496 | +CommandType : Alias | |
5497 | +Definition : Get-Module | |
5498 | +ReferencedCommand : Get-Module | |
5499 | +ResolvedCommand : Get-Module | |
5500 | + | |
5501 | +Name : gp | |
5502 | +CommandType : Alias | |
5503 | +Definition : Get-ItemProperty | |
5504 | +ReferencedCommand : Get-ItemProperty | |
5505 | +ResolvedCommand : Get-ItemProperty | |
5506 | + | |
5507 | +Name : gps | |
5508 | +CommandType : Alias | |
5509 | +Definition : Get-Process | |
5510 | +ReferencedCommand : Get-Process | |
5511 | +ResolvedCommand : Get-Process | |
5512 | + | |
5513 | +Name : group | |
5514 | +CommandType : Alias | |
5515 | +Definition : Group-Object | |
5516 | +ReferencedCommand : Group-Object | |
5517 | +ResolvedCommand : Group-Object | |
5518 | + | |
5519 | + | |
5520 | +Verb : Group | |
5521 | +Noun : Object | |
5522 | +HelpFile : Microsoft.PowerShell.Commands.Utility.dll-Help.xml | |
5523 | +PSSnapIn : Microsoft.PowerShell.Utility | |
5524 | +ImplementingType : Microsoft.PowerShell.Commands.GroupObjectCommand | |
5525 | +Definition : Group-Object [[-Property] <Object[]>] [-NoElement] [-AsHa | |
5526 | + shTable] [-AsString] [-InputObject <PSObject>] [-Culture | |
5527 | + <String>] [-CaseSensitive] [-Verbose] [-Debug] [-ErrorAct | |
5528 | + ion <ActionPreference>] [-WarningAction <ActionPreference | |
5529 | + >] [-ErrorVariable <String>] [-WarningVariable <String>] | |
5530 | + [-OutVariable <String>] [-OutBuffer <Int32>] | |
5531 | + | |
5532 | +DefaultParameterSet : | |
5533 | +OutputType : {} | |
5534 | +Name : Group-Object | |
5535 | +CommandType : Cmdlet | |
5536 | +Visibility : Public | |
5537 | +ModuleName : Microsoft.PowerShell.Utility | |
5538 | +Module : | |
5539 | +Parameters : {[NoElement, System.Management.Automation.ParameterMetada | |
5540 | + ta], [AsHashTable, System.Management.Automation.Parameter | |
5541 | + Metadata], [AsString, System.Management.Automation.Parame | |
5542 | + terMetadata], [InputObject, System.Management.Automation. | |
5543 | + ParameterMetadata]...} | |
5544 | +ParameterSets : {[[-Property] <Object[]>] [-NoElement] [-AsHashTable] [-A | |
5545 | + sString] [-InputObject <PSObject>] [-Culture <String>] [- | |
5546 | + CaseSensitive] [-Verbose] [-Debug] [-ErrorAction <ActionP | |
5547 | + reference>] [-WarningAction <ActionPreference>] [-ErrorVa | |
5548 | + riable <String>] [-WarningVariable <String>] [-OutVariabl | |
5549 | + e <String>] [-OutBuffer <Int32>]} | |
5550 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113338 | |
5551 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
5552 | + s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell. | |
5553 | + Commands.Utility.dll | |
5554 | + | |
5555 | +Name : gsn | |
5556 | +CommandType : Alias | |
5557 | +Definition : Get-PSSession | |
5558 | +ReferencedCommand : Get-PSSession | |
5559 | +ResolvedCommand : Get-PSSession | |
5560 | + | |
5561 | +Name : gsnp | |
5562 | +CommandType : Alias | |
5563 | +Definition : Get-PSSnapIn | |
5564 | +ReferencedCommand : Get-PSSnapin | |
5565 | +ResolvedCommand : Get-PSSnapin | |
5566 | + | |
5567 | +Name : gsv | |
5568 | +CommandType : Alias | |
5569 | +Definition : Get-Service | |
5570 | +ReferencedCommand : Get-Service | |
5571 | +ResolvedCommand : Get-Service | |
5572 | + | |
5573 | +Name : gu | |
5574 | +CommandType : Alias | |
5575 | +Definition : Get-Unique | |
5576 | +ReferencedCommand : Get-Unique | |
5577 | +ResolvedCommand : Get-Unique | |
5578 | + | |
5579 | +Name : gv | |
5580 | +CommandType : Alias | |
5581 | +Definition : Get-Variable | |
5582 | +ReferencedCommand : Get-Variable | |
5583 | +ResolvedCommand : Get-Variable | |
5584 | + | |
5585 | +Name : gwmi | |
5586 | +CommandType : Alias | |
5587 | +Definition : Get-WmiObject | |
5588 | +ReferencedCommand : Get-WmiObject | |
5589 | +ResolvedCommand : Get-WmiObject | |
5590 | + | |
5591 | +Name : h | |
5592 | +CommandType : Alias | |
5593 | +Definition : Get-History | |
5594 | +ReferencedCommand : Get-History | |
5595 | +ResolvedCommand : Get-History | |
5596 | + | |
5597 | + | |
5598 | +ScriptBlock : Set-Location H: | |
5599 | +CmdletBinding : False | |
5600 | +DefaultParameterSet : | |
5601 | +Definition : Set-Location H: | |
5602 | +Options : None | |
5603 | +Description : | |
5604 | +OutputType : {} | |
5605 | +Name : H: | |
5606 | +CommandType : Function | |
5607 | +Visibility : Public | |
5608 | +ModuleName : | |
5609 | +Module : | |
5610 | +Parameters : {} | |
5611 | +ParameterSets : {} | |
5612 | +HelpUri : | |
5613 | + | |
5614 | + | |
5615 | +ScriptBlock : | |
5616 | + <# | |
5617 | + .FORWARDHELPTARGETNAME Get-Help | |
5618 | + .FORWARDHELPCATEGORY Cmdlet | |
5619 | + #> | |
5620 | + [CmdletBinding(DefaultParameterSetName='AllUsersView')] | |
5621 | + param( | |
5622 | + [Parameter(Position=0, ValueFromPipelineByPropertyNam | |
5623 | + e=$true)] | |
5624 | + [System.String] | |
5625 | + ${Name}, | |
5626 | + | |
5627 | + [System.String] | |
5628 | + ${Path}, | |
5629 | + | |
5630 | + [System.String[]] | |
5631 | + ${Category}, | |
5632 | + | |
5633 | + [System.String[]] | |
5634 | + ${Component}, | |
5635 | + | |
5636 | + [System.String[]] | |
5637 | + ${Functionality}, | |
5638 | + | |
5639 | + [System.String[]] | |
5640 | + ${Role}, | |
5641 | + | |
5642 | + [Parameter(ParameterSetName='DetailedView')] | |
5643 | + [Switch] | |
5644 | + ${Detailed}, | |
5645 | + | |
5646 | + [Parameter(ParameterSetName='AllUsersView')] | |
5647 | + [Switch] | |
5648 | + ${Full}, | |
5649 | + | |
5650 | + [Parameter(ParameterSetName='Examples')] | |
5651 | + [Switch] | |
5652 | + ${Examples}, | |
5653 | + | |
5654 | + [Parameter(ParameterSetName='Parameters')] | |
5655 | + [System.String] | |
5656 | + ${Parameter}, | |
5657 | + | |
5658 | + [Switch] | |
5659 | + ${Online}) | |
5660 | + $outputEncoding=[System.Console]::OutputEncoding | |
5661 | + | |
5662 | + Get-Help @PSBoundParameters | more | |
5663 | + | |
5664 | +CmdletBinding : True | |
5665 | +DefaultParameterSet : AllUsersView | |
5666 | +Definition : | |
5667 | + <# | |
5668 | + .FORWARDHELPTARGETNAME Get-Help | |
5669 | + .FORWARDHELPCATEGORY Cmdlet | |
5670 | + #> | |
5671 | + [CmdletBinding(DefaultParameterSetName='AllUsersView')] | |
5672 | + param( | |
5673 | + [Parameter(Position=0, ValueFromPipelineByPropertyNam | |
5674 | + e=$true)] | |
5675 | + [System.String] | |
5676 | + ${Name}, | |
5677 | + | |
5678 | + [System.String] | |
5679 | + ${Path}, | |
5680 | + | |
5681 | + [System.String[]] | |
5682 | + ${Category}, | |
5683 | + | |
5684 | + [System.String[]] | |
5685 | + ${Component}, | |
5686 | + | |
5687 | + [System.String[]] | |
5688 | + ${Functionality}, | |
5689 | + | |
5690 | + [System.String[]] | |
5691 | + ${Role}, | |
5692 | + | |
5693 | + [Parameter(ParameterSetName='DetailedView')] | |
5694 | + [Switch] | |
5695 | + ${Detailed}, | |
5696 | + | |
5697 | + [Parameter(ParameterSetName='AllUsersView')] | |
5698 | + [Switch] | |
5699 | + ${Full}, | |
5700 | + | |
5701 | + [Parameter(ParameterSetName='Examples')] | |
5702 | + [Switch] | |
5703 | + ${Examples}, | |
5704 | + | |
5705 | + [Parameter(ParameterSetName='Parameters')] | |
5706 | + [System.String] | |
5707 | + ${Parameter}, | |
5708 | + | |
5709 | + [Switch] | |
5710 | + ${Online}) | |
5711 | + $outputEncoding=[System.Console]::OutputEncoding | |
5712 | + | |
5713 | + Get-Help @PSBoundParameters | more | |
5714 | + | |
5715 | +Options : None | |
5716 | +Description : | |
5717 | +OutputType : {} | |
5718 | +Name : help | |
5719 | +CommandType : Function | |
5720 | +Visibility : Public | |
5721 | +ModuleName : | |
5722 | +Module : | |
5723 | +Parameters : {[Name, System.Management.Automation.ParameterMetadata], | |
5724 | + [Path, System.Management.Automation.ParameterMetadata], [ | |
5725 | + Category, System.Management.Automation.ParameterMetadata] | |
5726 | + , [Component, System.Management.Automation.ParameterMetad | |
5727 | + ata]...} | |
5728 | +ParameterSets : {[[-Name] <String>] [-Path <String>] [-Category <String[] | |
5729 | + >] [-Component <String[]>] [-Functionality <String[]>] [- | |
5730 | + Role <String[]>] [-Full] [-Online] [-Verbose] [-Debug] [- | |
5731 | + ErrorAction <ActionPreference>] [-WarningAction <ActionPr | |
5732 | + eference>] [-ErrorVariable <String>] [-WarningVariable <S | |
5733 | + tring>] [-OutVariable <String>] [-OutBuffer <Int32>], [[- | |
5734 | + Name] <String>] [-Path <String>] [-Category <String[]>] [ | |
5735 | + -Component <String[]>] [-Functionality <String[]>] [-Role | |
5736 | + <String[]>] [-Detailed] [-Online] [-Verbose] [-Debug] [- | |
5737 | + ErrorAction <ActionPreference>] [-WarningAction <ActionPr | |
5738 | + eference>] [-ErrorVariable <String>] [-WarningVariable <S | |
5739 | + tring>] [-OutVariable <String>] [-OutBuffer <Int32>], [[- | |
5740 | + Name] <String>] [-Path <String>] [-Category <String[]>] [ | |
5741 | + -Component <String[]>] [-Functionality <String[]>] [-Role | |
5742 | + <String[]>] [-Examples] [-Online] [-Verbose] [-Debug] [- | |
5743 | + ErrorAction <ActionPreference>] [-WarningAction <ActionPr | |
5744 | + eference>] [-ErrorVariable <String>] [-WarningVariable <S | |
5745 | + tring>] [-OutVariable <String>] [-OutBuffer <Int32>], [[- | |
5746 | + Name] <String>] [-Path <String>] [-Category <String[]>] [ | |
5747 | + -Component <String[]>] [-Functionality <String[]>] [-Role | |
5748 | + <String[]>] [-Parameter <String>] [-Online] [-Verbose] [ | |
5749 | + -Debug] [-ErrorAction <ActionPreference>] [-WarningAction | |
5750 | + <ActionPreference>] [-ErrorVariable <String>] [-WarningV | |
5751 | + ariable <String>] [-OutVariable <String>] [-OutBuffer <In | |
5752 | + t32>]} | |
5753 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113316 | |
5754 | + | |
5755 | +Name : history | |
5756 | +CommandType : Alias | |
5757 | +Definition : Get-History | |
5758 | +ReferencedCommand : Get-History | |
5759 | +ResolvedCommand : Get-History | |
5760 | + | |
5761 | + | |
5762 | +ScriptBlock : Set-Location I: | |
5763 | +CmdletBinding : False | |
5764 | +DefaultParameterSet : | |
5765 | +Definition : Set-Location I: | |
5766 | +Options : None | |
5767 | +Description : | |
5768 | +OutputType : {} | |
5769 | +Name : I: | |
5770 | +CommandType : Function | |
5771 | +Visibility : Public | |
5772 | +ModuleName : | |
5773 | +Module : | |
5774 | +Parameters : {} | |
5775 | +ParameterSets : {} | |
5776 | +HelpUri : | |
5777 | + | |
5778 | +Name : icm | |
5779 | +CommandType : Alias | |
5780 | +Definition : Invoke-Command | |
5781 | +ReferencedCommand : Invoke-Command | |
5782 | +ResolvedCommand : Invoke-Command | |
5783 | + | |
5784 | +Name : iex | |
5785 | +CommandType : Alias | |
5786 | +Definition : Invoke-Expression | |
5787 | +ReferencedCommand : Invoke-Expression | |
5788 | +ResolvedCommand : Invoke-Expression | |
5789 | + | |
5790 | +Name : ihy | |
5791 | +CommandType : Alias | |
5792 | +Definition : Invoke-History | |
5793 | +ReferencedCommand : Invoke-History | |
5794 | +ResolvedCommand : Invoke-History | |
5795 | + | |
5796 | +Name : ii | |
5797 | +CommandType : Alias | |
5798 | +Definition : Invoke-Item | |
5799 | +ReferencedCommand : Invoke-Item | |
5800 | +ResolvedCommand : Invoke-Item | |
5801 | + | |
5802 | + | |
5803 | +Verb : Import | |
5804 | +Noun : Alias | |
5805 | +HelpFile : Microsoft.PowerShell.Commands.Utility.dll-Help.xml | |
5806 | +PSSnapIn : Microsoft.PowerShell.Utility | |
5807 | +ImplementingType : Microsoft.PowerShell.Commands.ImportAliasCommand | |
5808 | +Definition : Import-Alias [-Path] <String> [-Scope <String>] [-PassThr | |
5809 | + u] [-Force] [-Verbose] [-Debug] [-ErrorAction <ActionPref | |
5810 | + erence>] [-WarningAction <ActionPreference>] [-ErrorVaria | |
5811 | + ble <String>] [-WarningVariable <String>] [-OutVariable < | |
5812 | + String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm] | |
5813 | + | |
5814 | +DefaultParameterSet : | |
5815 | +OutputType : {} | |
5816 | +Name : Import-Alias | |
5817 | +CommandType : Cmdlet | |
5818 | +Visibility : Public | |
5819 | +ModuleName : Microsoft.PowerShell.Utility | |
5820 | +Module : | |
5821 | +Parameters : {[Path, System.Management.Automation.ParameterMetadata], | |
5822 | + [Scope, System.Management.Automation.ParameterMetadata], | |
5823 | + [PassThru, System.Management.Automation.ParameterMetadata | |
5824 | + ], [Force, System.Management.Automation.ParameterMetadata | |
5825 | + ]...} | |
5826 | +ParameterSets : {[-Path] <String> [-Scope <String>] [-PassThru] [-Force] | |
5827 | + [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-W | |
5828 | + arningAction <ActionPreference>] [-ErrorVariable <String> | |
5829 | + ] [-WarningVariable <String>] [-OutVariable <String>] [-O | |
5830 | + utBuffer <Int32>] [-WhatIf] [-Confirm]} | |
5831 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113339 | |
5832 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
5833 | + s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell. | |
5834 | + Commands.Utility.dll | |
5835 | + | |
5836 | + | |
5837 | +Verb : Import | |
5838 | +Noun : Clixml | |
5839 | +HelpFile : Microsoft.PowerShell.Commands.Utility.dll-Help.xml | |
5840 | +PSSnapIn : Microsoft.PowerShell.Utility | |
5841 | +ImplementingType : Microsoft.PowerShell.Commands.ImportClixmlCommand | |
5842 | +Definition : Import-Clixml [-Path] <String[]> [-Verbose] [-Debug] [-Er | |
5843 | + rorAction <ActionPreference>] [-WarningAction <ActionPref | |
5844 | + erence>] [-ErrorVariable <String>] [-WarningVariable <Str | |
5845 | + ing>] [-OutVariable <String>] [-OutBuffer <Int32>] | |
5846 | + | |
5847 | +DefaultParameterSet : | |
5848 | +OutputType : {} | |
5849 | +Name : Import-Clixml | |
5850 | +CommandType : Cmdlet | |
5851 | +Visibility : Public | |
5852 | +ModuleName : Microsoft.PowerShell.Utility | |
5853 | +Module : | |
5854 | +Parameters : {[Path, System.Management.Automation.ParameterMetadata], | |
5855 | + [Verbose, System.Management.Automation.ParameterMetadata] | |
5856 | + , [Debug, System.Management.Automation.ParameterMetadata] | |
5857 | + , [ErrorAction, System.Management.Automation.ParameterMet | |
5858 | + adata]...} | |
5859 | +ParameterSets : {[-Path] <String[]> [-Verbose] [-Debug] [-ErrorAction <Ac | |
5860 | + tionPreference>] [-WarningAction <ActionPreference>] [-Er | |
5861 | + rorVariable <String>] [-WarningVariable <String>] [-OutVa | |
5862 | + riable <String>] [-OutBuffer <Int32>]} | |
5863 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113340 | |
5864 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
5865 | + s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell. | |
5866 | + Commands.Utility.dll | |
5867 | + | |
5868 | + | |
5869 | +Verb : Import | |
5870 | +Noun : Counter | |
5871 | +HelpFile : Microsoft.PowerShell.Commands.Diagnostics.dll-Help.xml | |
5872 | +PSSnapIn : Microsoft.PowerShell.Diagnostics | |
5873 | +ImplementingType : Microsoft.PowerShell.Commands.ImportCounterCommand | |
5874 | +Definition : Import-Counter [-Path] <String[]> [-StartTime <DateTime>] | |
5875 | + [-EndTime <DateTime>] [-Counter <String[]>] [-MaxSamples | |
5876 | + <Int64>] [-Verbose] [-Debug] [-ErrorAction <ActionPrefer | |
5877 | + ence>] [-WarningAction <ActionPreference>] [-ErrorVariabl | |
5878 | + e <String>] [-WarningVariable <String>] [-OutVariable <St | |
5879 | + ring>] [-OutBuffer <Int32>] | |
5880 | + Import-Counter [-Path] <String[]> -ListSet <String[]> [-V | |
5881 | + erbose] [-Debug] [-ErrorAction <ActionPreference>] [-Warn | |
5882 | + ingAction <ActionPreference>] [-ErrorVariable <String>] [ | |
5883 | + -WarningVariable <String>] [-OutVariable <String>] [-OutB | |
5884 | + uffer <Int32>] | |
5885 | + Import-Counter [-Path] <String[]> [-Summary] [-Verbose] [ | |
5886 | + -Debug] [-ErrorAction <ActionPreference>] [-WarningAction | |
5887 | + <ActionPreference>] [-ErrorVariable <String>] [-WarningV | |
5888 | + ariable <String>] [-OutVariable <String>] [-OutBuffer <In | |
5889 | + t32>] | |
5890 | + | |
5891 | +DefaultParameterSet : GetCounterSet | |
5892 | +OutputType : {} | |
5893 | +Name : Import-Counter | |
5894 | +CommandType : Cmdlet | |
5895 | +Visibility : Public | |
5896 | +ModuleName : Microsoft.PowerShell.Diagnostics | |
5897 | +Module : | |
5898 | +Parameters : {[Path, System.Management.Automation.ParameterMetadata], | |
5899 | + [ListSet, System.Management.Automation.ParameterMetadata] | |
5900 | + , [StartTime, System.Management.Automation.ParameterMetad | |
5901 | + ata], [EndTime, System.Management.Automation.ParameterMet | |
5902 | + adata]...} | |
5903 | +ParameterSets : {[-Path] <String[]> [-StartTime <DateTime>] [-EndTime <Da | |
5904 | + teTime>] [-Counter <String[]>] [-MaxSamples <Int64>] [-Ve | |
5905 | + rbose] [-Debug] [-ErrorAction <ActionPreference>] [-Warni | |
5906 | + ngAction <ActionPreference>] [-ErrorVariable <String>] [- | |
5907 | + WarningVariable <String>] [-OutVariable <String>] [-OutBu | |
5908 | + ffer <Int32>], [-Path] <String[]> -ListSet <String[]> [-V | |
5909 | + erbose] [-Debug] [-ErrorAction <ActionPreference>] [-Warn | |
5910 | + ingAction <ActionPreference>] [-ErrorVariable <String>] [ | |
5911 | + -WarningVariable <String>] [-OutVariable <String>] [-OutB | |
5912 | + uffer <Int32>], [-Path] <String[]> [-Summary] [-Verbose] | |
5913 | + [-Debug] [-ErrorAction <ActionPreference>] [-WarningActio | |
5914 | + n <ActionPreference>] [-ErrorVariable <String>] [-Warning | |
5915 | + Variable <String>] [-OutVariable <String>] [-OutBuffer <I | |
5916 | + nt32>]} | |
5917 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=138338 | |
5918 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
5919 | + s.Diagnostics\1.0.0.0__31bf3856ad364e35\Microsoft.PowerSh | |
5920 | + ell.Commands.Diagnostics.dll | |
5921 | + | |
5922 | + | |
5923 | +Verb : Import | |
5924 | +Noun : Csv | |
5925 | +HelpFile : Microsoft.PowerShell.Commands.Utility.dll-Help.xml | |
5926 | +PSSnapIn : Microsoft.PowerShell.Utility | |
5927 | +ImplementingType : Microsoft.PowerShell.Commands.ImportCsvCommand | |
5928 | +Definition : Import-Csv [-Path] <String[]> [[-Delimiter] <Char>] [-Hea | |
5929 | + der <String[]>] [-Verbose] [-Debug] [-ErrorAction <Action | |
5930 | + Preference>] [-WarningAction <ActionPreference>] [-ErrorV | |
5931 | + ariable <String>] [-WarningVariable <String>] [-OutVariab | |
5932 | + le <String>] [-OutBuffer <Int32>] | |
5933 | + Import-Csv [-Path] <String[]> -UseCulture [-Header <Strin | |
5934 | + g[]>] [-Verbose] [-Debug] [-ErrorAction <ActionPreference | |
5935 | + >] [-WarningAction <ActionPreference>] [-ErrorVariable <S | |
5936 | + tring>] [-WarningVariable <String>] [-OutVariable <String | |
5937 | + >] [-OutBuffer <Int32>] | |
5938 | + | |
5939 | +DefaultParameterSet : Delimiter | |
5940 | +OutputType : {} | |
5941 | +Name : Import-Csv | |
5942 | +CommandType : Cmdlet | |
5943 | +Visibility : Public | |
5944 | +ModuleName : Microsoft.PowerShell.Utility | |
5945 | +Module : | |
5946 | +Parameters : {[Delimiter, System.Management.Automation.ParameterMetada | |
5947 | + ta], [Path, System.Management.Automation.ParameterMetadat | |
5948 | + a], [UseCulture, System.Management.Automation.ParameterMe | |
5949 | + tadata], [Header, System.Management.Automation.ParameterM | |
5950 | + etadata]...} | |
5951 | +ParameterSets : {[-Path] <String[]> [[-Delimiter] <Char>] [-Header <Strin | |
5952 | + g[]>] [-Verbose] [-Debug] [-ErrorAction <ActionPreference | |
5953 | + >] [-WarningAction <ActionPreference>] [-ErrorVariable <S | |
5954 | + tring>] [-WarningVariable <String>] [-OutVariable <String | |
5955 | + >] [-OutBuffer <Int32>], [-Path] <String[]> -UseCulture [ | |
5956 | + -Header <String[]>] [-Verbose] [-Debug] [-ErrorAction <Ac | |
5957 | + tionPreference>] [-WarningAction <ActionPreference>] [-Er | |
5958 | + rorVariable <String>] [-WarningVariable <String>] [-OutVa | |
5959 | + riable <String>] [-OutBuffer <Int32>]} | |
5960 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113341 | |
5961 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
5962 | + s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell. | |
5963 | + Commands.Utility.dll | |
5964 | + | |
5965 | + | |
5966 | +Verb : Import | |
5967 | +Noun : LocalizedData | |
5968 | +HelpFile : Microsoft.PowerShell.Commands.Utility.dll-Help.xml | |
5969 | +PSSnapIn : Microsoft.PowerShell.Utility | |
5970 | +ImplementingType : Microsoft.PowerShell.Commands.ImportLocalizedData | |
5971 | +Definition : Import-LocalizedData [-BindingVariable] <String> [[-UICul | |
5972 | + ture] <String>] [-BaseDirectory <String>] [-FileName <Str | |
5973 | + ing>] [-SupportedCommand <String[]>] [-Verbose] [-Debug] | |
5974 | + [-ErrorAction <ActionPreference>] [-WarningAction <Action | |
5975 | + Preference>] [-ErrorVariable <String>] [-WarningVariable | |
5976 | + <String>] [-OutVariable <String>] [-OutBuffer <Int32>] | |
5977 | + | |
5978 | +DefaultParameterSet : | |
5979 | +OutputType : {} | |
5980 | +Name : Import-LocalizedData | |
5981 | +CommandType : Cmdlet | |
5982 | +Visibility : Public | |
5983 | +ModuleName : Microsoft.PowerShell.Utility | |
5984 | +Module : | |
5985 | +Parameters : {[BindingVariable, System.Management.Automation.Parameter | |
5986 | + Metadata], [UICulture, System.Management.Automation.Param | |
5987 | + eterMetadata], [BaseDirectory, System.Management.Automati | |
5988 | + on.ParameterMetadata], [FileName, System.Management.Autom | |
5989 | + ation.ParameterMetadata]...} | |
5990 | +ParameterSets : {[-BindingVariable] <String> [[-UICulture] <String>] [-Ba | |
5991 | + seDirectory <String>] [-FileName <String>] [-SupportedCom | |
5992 | + mand <String[]>] [-Verbose] [-Debug] [-ErrorAction <Actio | |
5993 | + nPreference>] [-WarningAction <ActionPreference>] [-Error | |
5994 | + Variable <String>] [-WarningVariable <String>] [-OutVaria | |
5995 | + ble <String>] [-OutBuffer <Int32>]} | |
5996 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113342 | |
5997 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
5998 | + s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell. | |
5999 | + Commands.Utility.dll | |
6000 | + | |
6001 | + | |
6002 | +Verb : Import | |
6003 | +Noun : Module | |
6004 | +HelpFile : System.Management.Automation.dll-Help.xml | |
6005 | +PSSnapIn : Microsoft.PowerShell.Core | |
6006 | +ImplementingType : Microsoft.PowerShell.Commands.ImportModuleCommand | |
6007 | +Definition : Import-Module [-Name] <String[]> [-Global] [-Prefix <Stri | |
6008 | + ng>] [-Function <String[]>] [-Cmdlet <String[]>] [-Variab | |
6009 | + le <String[]>] [-Alias <String[]>] [-Force] [-PassThru] [ | |
6010 | + -AsCustomObject] [-Version <Version>] [-ArgumentList <Obj | |
6011 | + ect[]>] [-DisableNameChecking] [-Verbose] [-Debug] [-Erro | |
6012 | + rAction <ActionPreference>] [-WarningAction <ActionPrefer | |
6013 | + ence>] [-ErrorVariable <String>] [-WarningVariable <Strin | |
6014 | + g>] [-OutVariable <String>] [-OutBuffer <Int32>] | |
6015 | + Import-Module [-Assembly] <Assembly[]> [-Global] [-Prefix | |
6016 | + <String>] [-Function <String[]>] [-Cmdlet <String[]>] [- | |
6017 | + Variable <String[]>] [-Alias <String[]>] [-Force] [-PassT | |
6018 | + hru] [-AsCustomObject] [-ArgumentList <Object[]>] [-Disab | |
6019 | + leNameChecking] [-Verbose] [-Debug] [-ErrorAction <Action | |
6020 | + Preference>] [-WarningAction <ActionPreference>] [-ErrorV | |
6021 | + ariable <String>] [-WarningVariable <String>] [-OutVariab | |
6022 | + le <String>] [-OutBuffer <Int32>] | |
6023 | + Import-Module [-ModuleInfo] <PSModuleInfo[]> [-Global] [- | |
6024 | + Prefix <String>] [-Function <String[]>] [-Cmdlet <String[ | |
6025 | + ]>] [-Variable <String[]>] [-Alias <String[]>] [-Force] [ | |
6026 | + -PassThru] [-AsCustomObject] [-ArgumentList <Object[]>] [ | |
6027 | + -DisableNameChecking] [-Verbose] [-Debug] [-ErrorAction < | |
6028 | + ActionPreference>] [-WarningAction <ActionPreference>] [- | |
6029 | + ErrorVariable <String>] [-WarningVariable <String>] [-Out | |
6030 | + Variable <String>] [-OutBuffer <Int32>] | |
6031 | + | |
6032 | +DefaultParameterSet : Name | |
6033 | +OutputType : {System.Management.Automation.PSModuleInfo} | |
6034 | +Name : Import-Module | |
6035 | +CommandType : Cmdlet | |
6036 | +Visibility : Public | |
6037 | +ModuleName : Microsoft.PowerShell.Core | |
6038 | +Module : | |
6039 | +Parameters : {[Global, System.Management.Automation.ParameterMetadata] | |
6040 | + , [Prefix, System.Management.Automation.ParameterMetadata | |
6041 | + ], [Name, System.Management.Automation.ParameterMetadata] | |
6042 | + , [Assembly, System.Management.Automation.ParameterMetada | |
6043 | + ta]...} | |
6044 | +ParameterSets : {[-Name] <String[]> [-Global] [-Prefix <String>] [-Functi | |
6045 | + on <String[]>] [-Cmdlet <String[]>] [-Variable <String[]> | |
6046 | + ] [-Alias <String[]>] [-Force] [-PassThru] [-AsCustomObje | |
6047 | + ct] [-Version <Version>] [-ArgumentList <Object[]>] [-Dis | |
6048 | + ableNameChecking] [-Verbose] [-Debug] [-ErrorAction <Acti | |
6049 | + onPreference>] [-WarningAction <ActionPreference>] [-Erro | |
6050 | + rVariable <String>] [-WarningVariable <String>] [-OutVari | |
6051 | + able <String>] [-OutBuffer <Int32>], [-Assembly] <Assembl | |
6052 | + y[]> [-Global] [-Prefix <String>] [-Function <String[]>] | |
6053 | + [-Cmdlet <String[]>] [-Variable <String[]>] [-Alias <Stri | |
6054 | + ng[]>] [-Force] [-PassThru] [-AsCustomObject] [-ArgumentL | |
6055 | + ist <Object[]>] [-DisableNameChecking] [-Verbose] [-Debug | |
6056 | + ] [-ErrorAction <ActionPreference>] [-WarningAction <Acti | |
6057 | + onPreference>] [-ErrorVariable <String>] [-WarningVariabl | |
6058 | + e <String>] [-OutVariable <String>] [-OutBuffer <Int32>], | |
6059 | + [-ModuleInfo] <PSModuleInfo[]> [-Global] [-Prefix <Strin | |
6060 | + g>] [-Function <String[]>] [-Cmdlet <String[]>] [-Variabl | |
6061 | + e <String[]>] [-Alias <String[]>] [-Force] [-PassThru] [- | |
6062 | + AsCustomObject] [-ArgumentList <Object[]>] [-DisableNameC | |
6063 | + hecking] [-Verbose] [-Debug] [-ErrorAction <ActionPrefere | |
6064 | + nce>] [-WarningAction <ActionPreference>] [-ErrorVariable | |
6065 | + <String>] [-WarningVariable <String>] [-OutVariable <Str | |
6066 | + ing>] [-OutBuffer <Int32>]} | |
6067 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=141553 | |
6068 | +DLL : C:\Windows\assembly\GAC_MSIL\System.Management.Automation | |
6069 | + \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d | |
6070 | + ll | |
6071 | + | |
6072 | + | |
6073 | +Verb : Import | |
6074 | +Noun : PSSession | |
6075 | +HelpFile : Microsoft.PowerShell.Commands.Utility.dll-Help.xml | |
6076 | +PSSnapIn : Microsoft.PowerShell.Utility | |
6077 | +ImplementingType : Microsoft.PowerShell.Commands.ImportPSSessionCommand | |
6078 | +Definition : Import-PSSession [-Session] <PSSession> [[-CommandName] < | |
6079 | + String[]>] [[-FormatTypeName] <String[]>] [-Prefix <Strin | |
6080 | + g>] [-DisableNameChecking] [-AllowClobber] [-ArgumentList | |
6081 | + <Object[]>] [-CommandType <CommandTypes>] [-Module <Stri | |
6082 | + ng[]>] [-Verbose] [-Debug] [-ErrorAction <ActionPreferenc | |
6083 | + e>] [-WarningAction <ActionPreference>] [-ErrorVariable < | |
6084 | + String>] [-WarningVariable <String>] [-OutVariable <Strin | |
6085 | + g>] [-OutBuffer <Int32>] | |
6086 | + | |
6087 | +DefaultParameterSet : | |
6088 | +OutputType : {} | |
6089 | +Name : Import-PSSession | |
6090 | +CommandType : Cmdlet | |
6091 | +Visibility : Public | |
6092 | +ModuleName : Microsoft.PowerShell.Utility | |
6093 | +Module : | |
6094 | +Parameters : {[Prefix, System.Management.Automation.ParameterMetadata] | |
6095 | + , [DisableNameChecking, System.Management.Automation.Para | |
6096 | + meterMetadata], [CommandName, System.Management.Automatio | |
6097 | + n.ParameterMetadata], [AllowClobber, System.Management.Au | |
6098 | + tomation.ParameterMetadata]...} | |
6099 | +ParameterSets : {[-Session] <PSSession> [[-CommandName] <String[]>] [[-Fo | |
6100 | + rmatTypeName] <String[]>] [-Prefix <String>] [-DisableNam | |
6101 | + eChecking] [-AllowClobber] [-ArgumentList <Object[]>] [-C | |
6102 | + ommandType <CommandTypes>] [-Module <String[]>] [-Verbose | |
6103 | + ] [-Debug] [-ErrorAction <ActionPreference>] [-WarningAct | |
6104 | + ion <ActionPreference>] [-ErrorVariable <String>] [-Warni | |
6105 | + ngVariable <String>] [-OutVariable <String>] [-OutBuffer | |
6106 | + <Int32>]} | |
6107 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=135221 | |
6108 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
6109 | + s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell. | |
6110 | + Commands.Utility.dll | |
6111 | + | |
6112 | + | |
6113 | +ScriptBlock : | |
6114 | + $SnapIns = @(Get-PSSnapin -Registered -ErrorA | |
6115 | + ction SilentlyContinue) | |
6116 | + $Modules = @(Get-Module -ListAvailable -Error | |
6117 | + Action SilentlyContinue | ? { $_.ModuleBase -like "$pshom | |
6118 | + e*" }) | |
6119 | + Import-LocalizedData -BindingVariable Message | |
6120 | + s -BaseDirectory $pshome -FileName ImportAllModules.psd1 | |
6121 | + $PreviousErrorCount = $error.Count | |
6122 | + | |
6123 | + $LoadedModules = 0 | |
6124 | + $TotalModules = $SnapIns.Count + $Modules.Cou | |
6125 | + nt | |
6126 | + | |
6127 | + $SnapIns | % { | |
6128 | + $LoadedModules ++ | |
6129 | + $Percentage = ($LoadedModules/$TotalModul | |
6130 | + es) * 100 | |
6131 | + Write-Progress -Activity $Messages.Loadin | |
6132 | + gSnapins -Status $_.Name -PercentComplete $Percentage | |
6133 | + Add-PSSnapin $_ -ErrorAction SilentlyCont | |
6134 | + inue | |
6135 | + } | |
6136 | + | |
6137 | + $Modules | % { | |
6138 | + $LoadedModules ++ | |
6139 | + $Percentage = ($LoadedModules/$TotalModul | |
6140 | + es) * 100 | |
6141 | + Write-Progress -Activity $Messages.Import | |
6142 | + ingModules -Status $_.Name -PercentComplete $Percentage | |
6143 | + | |
6144 | + try | |
6145 | + { | |
6146 | + Import-Module $_.Name -ErrorAction Si | |
6147 | + lentlyContinue | |
6148 | + } | |
6149 | + catch [System.Management.Automation.PsSec | |
6150 | + urityException] { Write-Warning $_; $GLOBAL:error.RemoveA | |
6151 | + t(0) } | |
6152 | + } | |
6153 | + | |
6154 | + if ($error.Count -gt $PreviousErrorCount) | |
6155 | + { | |
6156 | + Write-Host $Messages.ErrorInImport | |
6157 | + } | |
6158 | + | |
6159 | +CmdletBinding : False | |
6160 | +DefaultParameterSet : | |
6161 | +Definition : | |
6162 | + $SnapIns = @(Get-PSSnapin -Registered -ErrorA | |
6163 | + ction SilentlyContinue) | |
6164 | + $Modules = @(Get-Module -ListAvailable -Error | |
6165 | + Action SilentlyContinue | ? { $_.ModuleBase -like "$pshom | |
6166 | + e*" }) | |
6167 | + Import-LocalizedData -BindingVariable Message | |
6168 | + s -BaseDirectory $pshome -FileName ImportAllModules.psd1 | |
6169 | + $PreviousErrorCount = $error.Count | |
6170 | + | |
6171 | + $LoadedModules = 0 | |
6172 | + $TotalModules = $SnapIns.Count + $Modules.Cou | |
6173 | + nt | |
6174 | + | |
6175 | + $SnapIns | % { | |
6176 | + $LoadedModules ++ | |
6177 | + $Percentage = ($LoadedModules/$TotalModul | |
6178 | + es) * 100 | |
6179 | + Write-Progress -Activity $Messages.Loadin | |
6180 | + gSnapins -Status $_.Name -PercentComplete $Percentage | |
6181 | + Add-PSSnapin $_ -ErrorAction SilentlyCont | |
6182 | + inue | |
6183 | + } | |
6184 | + | |
6185 | + $Modules | % { | |
6186 | + $LoadedModules ++ | |
6187 | + $Percentage = ($LoadedModules/$TotalModul | |
6188 | + es) * 100 | |
6189 | + Write-Progress -Activity $Messages.Import | |
6190 | + ingModules -Status $_.Name -PercentComplete $Percentage | |
6191 | + | |
6192 | + try | |
6193 | + { | |
6194 | + Import-Module $_.Name -ErrorAction Si | |
6195 | + lentlyContinue | |
6196 | + } | |
6197 | + catch [System.Management.Automation.PsSec | |
6198 | + urityException] { Write-Warning $_; $GLOBAL:error.RemoveA | |
6199 | + t(0) } | |
6200 | + } | |
6201 | + | |
6202 | + if ($error.Count -gt $PreviousErrorCount) | |
6203 | + { | |
6204 | + Write-Host $Messages.ErrorInImport | |
6205 | + } | |
6206 | + | |
6207 | +Options : None | |
6208 | +Description : | |
6209 | +OutputType : {} | |
6210 | +Name : ImportSystemModules | |
6211 | +CommandType : Function | |
6212 | +Visibility : Public | |
6213 | +ModuleName : | |
6214 | +Module : | |
6215 | +Parameters : {} | |
6216 | +ParameterSets : {} | |
6217 | +HelpUri : | |
6218 | + | |
6219 | + | |
6220 | +Verb : Invoke | |
6221 | +Noun : Command | |
6222 | +HelpFile : System.Management.Automation.dll-Help.xml | |
6223 | +PSSnapIn : Microsoft.PowerShell.Core | |
6224 | +ImplementingType : Microsoft.PowerShell.Commands.InvokeCommandCommand | |
6225 | +Definition : Invoke-Command [-ScriptBlock] <ScriptBlock> [-InputObject | |
6226 | + <PSObject>] [-ArgumentList <Object[]>] [-Verbose] [-Debu | |
6227 | + g] [-ErrorAction <ActionPreference>] [-WarningAction <Act | |
6228 | + ionPreference>] [-ErrorVariable <String>] [-WarningVariab | |
6229 | + le <String>] [-OutVariable <String>] [-OutBuffer <Int32>] | |
6230 | + Invoke-Command [[-Session] <PSSession[]>] [-ScriptBlock] | |
6231 | + <ScriptBlock> [-ThrottleLimit <Int32>] [-AsJob] [-HideCom | |
6232 | + puterName] [-JobName <String>] [-InputObject <PSObject>] | |
6233 | + [-ArgumentList <Object[]>] [-Verbose] [-Debug] [-ErrorAct | |
6234 | + ion <ActionPreference>] [-WarningAction <ActionPreference | |
6235 | + >] [-ErrorVariable <String>] [-WarningVariable <String>] | |
6236 | + [-OutVariable <String>] [-OutBuffer <Int32>] | |
6237 | + Invoke-Command [[-Session] <PSSession[]>] [-FilePath] <St | |
6238 | + ring> [-ThrottleLimit <Int32>] [-AsJob] [-HideComputerNam | |
6239 | + e] [-JobName <String>] [-InputObject <PSObject>] [-Argume | |
6240 | + ntList <Object[]>] [-Verbose] [-Debug] [-ErrorAction <Act | |
6241 | + ionPreference>] [-WarningAction <ActionPreference>] [-Err | |
6242 | + orVariable <String>] [-WarningVariable <String>] [-OutVar | |
6243 | + iable <String>] [-OutBuffer <Int32>] | |
6244 | + Invoke-Command [[-ComputerName] <String[]>] [-FilePath] < | |
6245 | + String> [-Credential <PSCredential>] [-Port <Int32>] [-Us | |
6246 | + eSSL] [-ConfigurationName <String>] [-ApplicationName <St | |
6247 | + ring>] [-ThrottleLimit <Int32>] [-AsJob] [-HideComputerNa | |
6248 | + me] [-JobName <String>] [-SessionOption <PSSessionOption> | |
6249 | + ] [-Authentication <AuthenticationMechanism>] [-InputObje | |
6250 | + ct <PSObject>] [-ArgumentList <Object[]>] [-Verbose] [-De | |
6251 | + bug] [-ErrorAction <ActionPreference>] [-WarningAction <A | |
6252 | + ctionPreference>] [-ErrorVariable <String>] [-WarningVari | |
6253 | + able <String>] [-OutVariable <String>] [-OutBuffer <Int32 | |
6254 | + >] | |
6255 | + Invoke-Command [[-ComputerName] <String[]>] [-ScriptBlock | |
6256 | + ] <ScriptBlock> [-Credential <PSCredential>] [-Port <Int3 | |
6257 | + 2>] [-UseSSL] [-ConfigurationName <String>] [-Application | |
6258 | + Name <String>] [-ThrottleLimit <Int32>] [-AsJob] [-HideCo | |
6259 | + mputerName] [-JobName <String>] [-SessionOption <PSSessio | |
6260 | + nOption>] [-Authentication <AuthenticationMechanism>] [-I | |
6261 | + nputObject <PSObject>] [-ArgumentList <Object[]>] [-Certi | |
6262 | + ficateThumbprint <String>] [-Verbose] [-Debug] [-ErrorAct | |
6263 | + ion <ActionPreference>] [-WarningAction <ActionPreference | |
6264 | + >] [-ErrorVariable <String>] [-WarningVariable <String>] | |
6265 | + [-OutVariable <String>] [-OutBuffer <Int32>] | |
6266 | + Invoke-Command [[-ConnectionUri] <Uri[]>] [-ScriptBlock] | |
6267 | + <ScriptBlock> [-Credential <PSCredential>] [-Configuratio | |
6268 | + nName <String>] [-ThrottleLimit <Int32>] [-AsJob] [-HideC | |
6269 | + omputerName] [-JobName <String>] [-AllowRedirection] [-Se | |
6270 | + ssionOption <PSSessionOption>] [-Authentication <Authenti | |
6271 | + cationMechanism>] [-InputObject <PSObject>] [-ArgumentLis | |
6272 | + t <Object[]>] [-CertificateThumbprint <String>] [-Verbose | |
6273 | + ] [-Debug] [-ErrorAction <ActionPreference>] [-WarningAct | |
6274 | + ion <ActionPreference>] [-ErrorVariable <String>] [-Warni | |
6275 | + ngVariable <String>] [-OutVariable <String>] [-OutBuffer | |
6276 | + <Int32>] | |
6277 | + Invoke-Command [[-ConnectionUri] <Uri[]>] [-FilePath] <St | |
6278 | + ring> [-Credential <PSCredential>] [-ConfigurationName <S | |
6279 | + tring>] [-ThrottleLimit <Int32>] [-AsJob] [-HideComputerN | |
6280 | + ame] [-JobName <String>] [-AllowRedirection] [-SessionOpt | |
6281 | + ion <PSSessionOption>] [-Authentication <AuthenticationMe | |
6282 | + chanism>] [-InputObject <PSObject>] [-ArgumentList <Objec | |
6283 | + t[]>] [-Verbose] [-Debug] [-ErrorAction <ActionPreference | |
6284 | + >] [-WarningAction <ActionPreference>] [-ErrorVariable <S | |
6285 | + tring>] [-WarningVariable <String>] [-OutVariable <String | |
6286 | + >] [-OutBuffer <Int32>] | |
6287 | + | |
6288 | +DefaultParameterSet : InProcess | |
6289 | +OutputType : {} | |
6290 | +Name : Invoke-Command | |
6291 | +CommandType : Cmdlet | |
6292 | +Visibility : Public | |
6293 | +ModuleName : Microsoft.PowerShell.Core | |
6294 | +Module : | |
6295 | +Parameters : {[Session, System.Management.Automation.ParameterMetadata | |
6296 | + ], [ComputerName, System.Management.Automation.ParameterM | |
6297 | + etadata], [Credential, System.Management.Automation.Param | |
6298 | + eterMetadata], [Port, System.Management.Automation.Parame | |
6299 | + terMetadata]...} | |
6300 | +ParameterSets : {[-ScriptBlock] <ScriptBlock> [-InputObject <PSObject>] [ | |
6301 | + -ArgumentList <Object[]>] [-Verbose] [-Debug] [-ErrorActi | |
6302 | + on <ActionPreference>] [-WarningAction <ActionPreference> | |
6303 | + ] [-ErrorVariable <String>] [-WarningVariable <String>] [ | |
6304 | + -OutVariable <String>] [-OutBuffer <Int32>], [[-Session] | |
6305 | + <PSSession[]>] [-ScriptBlock] <ScriptBlock> [-ThrottleLim | |
6306 | + it <Int32>] [-AsJob] [-HideComputerName] [-JobName <Strin | |
6307 | + g>] [-InputObject <PSObject>] [-ArgumentList <Object[]>] | |
6308 | + [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-W | |
6309 | + arningAction <ActionPreference>] [-ErrorVariable <String> | |
6310 | + ] [-WarningVariable <String>] [-OutVariable <String>] [-O | |
6311 | + utBuffer <Int32>], [[-Session] <PSSession[]>] [-FilePath] | |
6312 | + <String> [-ThrottleLimit <Int32>] [-AsJob] [-HideCompute | |
6313 | + rName] [-JobName <String>] [-InputObject <PSObject>] [-Ar | |
6314 | + gumentList <Object[]>] [-Verbose] [-Debug] [-ErrorAction | |
6315 | + <ActionPreference>] [-WarningAction <ActionPreference>] [ | |
6316 | + -ErrorVariable <String>] [-WarningVariable <String>] [-Ou | |
6317 | + tVariable <String>] [-OutBuffer <Int32>], [[-ComputerName | |
6318 | + ] <String[]>] [-FilePath] <String> [-Credential <PSCreden | |
6319 | + tial>] [-Port <Int32>] [-UseSSL] [-ConfigurationName <Str | |
6320 | + ing>] [-ApplicationName <String>] [-ThrottleLimit <Int32> | |
6321 | + ] [-AsJob] [-HideComputerName] [-JobName <String>] [-Sess | |
6322 | + ionOption <PSSessionOption>] [-Authentication <Authentica | |
6323 | + tionMechanism>] [-InputObject <PSObject>] [-ArgumentList | |
6324 | + <Object[]>] [-Verbose] [-Debug] [-ErrorAction <ActionPref | |
6325 | + erence>] [-WarningAction <ActionPreference>] [-ErrorVaria | |
6326 | + ble <String>] [-WarningVariable <String>] [-OutVariable < | |
6327 | + String>] [-OutBuffer <Int32>]...} | |
6328 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=135225 | |
6329 | +DLL : C:\Windows\assembly\GAC_MSIL\System.Management.Automation | |
6330 | + \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d | |
6331 | + ll | |
6332 | + | |
6333 | + | |
6334 | +Verb : Invoke | |
6335 | +Noun : Expression | |
6336 | +HelpFile : Microsoft.PowerShell.Commands.Utility.dll-Help.xml | |
6337 | +PSSnapIn : Microsoft.PowerShell.Utility | |
6338 | +ImplementingType : Microsoft.PowerShell.Commands.InvokeExpressionCommand | |
6339 | +Definition : Invoke-Expression [-Command] <String> [-Verbose] [-Debug] | |
6340 | + [-ErrorAction <ActionPreference>] [-WarningAction <Actio | |
6341 | + nPreference>] [-ErrorVariable <String>] [-WarningVariable | |
6342 | + <String>] [-OutVariable <String>] [-OutBuffer <Int32>] | |
6343 | + | |
6344 | +DefaultParameterSet : | |
6345 | +OutputType : {} | |
6346 | +Name : Invoke-Expression | |
6347 | +CommandType : Cmdlet | |
6348 | +Visibility : Public | |
6349 | +ModuleName : Microsoft.PowerShell.Utility | |
6350 | +Module : | |
6351 | +Parameters : {[Command, System.Management.Automation.ParameterMetadata | |
6352 | + ], [Verbose, System.Management.Automation.ParameterMetada | |
6353 | + ta], [Debug, System.Management.Automation.ParameterMetada | |
6354 | + ta], [ErrorAction, System.Management.Automation.Parameter | |
6355 | + Metadata]...} | |
6356 | +ParameterSets : {[-Command] <String> [-Verbose] [-Debug] [-ErrorAction <A | |
6357 | + ctionPreference>] [-WarningAction <ActionPreference>] [-E | |
6358 | + rrorVariable <String>] [-WarningVariable <String>] [-OutV | |
6359 | + ariable <String>] [-OutBuffer <Int32>]} | |
6360 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113343 | |
6361 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
6362 | + s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell. | |
6363 | + Commands.Utility.dll | |
6364 | + | |
6365 | + | |
6366 | +Verb : Invoke | |
6367 | +Noun : History | |
6368 | +HelpFile : System.Management.Automation.dll-Help.xml | |
6369 | +PSSnapIn : Microsoft.PowerShell.Core | |
6370 | +ImplementingType : Microsoft.PowerShell.Commands.InvokeHistoryCommand | |
6371 | +Definition : Invoke-History [[-Id] <String>] [-Verbose] [-Debug] [-Err | |
6372 | + orAction <ActionPreference>] [-WarningAction <ActionPrefe | |
6373 | + rence>] [-ErrorVariable <String>] [-WarningVariable <Stri | |
6374 | + ng>] [-OutVariable <String>] [-OutBuffer <Int32>] [-WhatI | |
6375 | + f] [-Confirm] | |
6376 | + | |
6377 | +DefaultParameterSet : | |
6378 | +OutputType : {} | |
6379 | +Name : Invoke-History | |
6380 | +CommandType : Cmdlet | |
6381 | +Visibility : Public | |
6382 | +ModuleName : Microsoft.PowerShell.Core | |
6383 | +Module : | |
6384 | +Parameters : {[Id, System.Management.Automation.ParameterMetadata], [V | |
6385 | + erbose, System.Management.Automation.ParameterMetadata], | |
6386 | + [Debug, System.Management.Automation.ParameterMetadata], | |
6387 | + [ErrorAction, System.Management.Automation.ParameterMetad | |
6388 | + ata]...} | |
6389 | +ParameterSets : {[[-Id] <String>] [-Verbose] [-Debug] [-ErrorAction <Acti | |
6390 | + onPreference>] [-WarningAction <ActionPreference>] [-Erro | |
6391 | + rVariable <String>] [-WarningVariable <String>] [-OutVari | |
6392 | + able <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm]} | |
6393 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113344 | |
6394 | +DLL : C:\Windows\assembly\GAC_MSIL\System.Management.Automation | |
6395 | + \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d | |
6396 | + ll | |
6397 | + | |
6398 | + | |
6399 | +Verb : Invoke | |
6400 | +Noun : Item | |
6401 | +HelpFile : Microsoft.PowerShell.Commands.Management.dll-Help.xml | |
6402 | +PSSnapIn : Microsoft.PowerShell.Management | |
6403 | +ImplementingType : Microsoft.PowerShell.Commands.InvokeItemCommand | |
6404 | +Definition : Invoke-Item [-Path] <String[]> [-Filter <String>] [-Inclu | |
6405 | + de <String[]>] [-Exclude <String[]>] [-Credential <PSCred | |
6406 | + ential>] [-Verbose] [-Debug] [-ErrorAction <ActionPrefere | |
6407 | + nce>] [-WarningAction <ActionPreference>] [-ErrorVariable | |
6408 | + <String>] [-WarningVariable <String>] [-OutVariable <Str | |
6409 | + ing>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm] [-UseTran | |
6410 | + saction] | |
6411 | + Invoke-Item [-LiteralPath] <String[]> [-Filter <String>] | |
6412 | + [-Include <String[]>] [-Exclude <String[]>] [-Credential | |
6413 | + <PSCredential>] [-Verbose] [-Debug] [-ErrorAction <Action | |
6414 | + Preference>] [-WarningAction <ActionPreference>] [-ErrorV | |
6415 | + ariable <String>] [-WarningVariable <String>] [-OutVariab | |
6416 | + le <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm] [- | |
6417 | + UseTransaction] | |
6418 | + | |
6419 | +DefaultParameterSet : Path | |
6420 | +OutputType : {} | |
6421 | +Name : Invoke-Item | |
6422 | +CommandType : Cmdlet | |
6423 | +Visibility : Public | |
6424 | +ModuleName : Microsoft.PowerShell.Management | |
6425 | +Module : | |
6426 | +Parameters : {[Path, System.Management.Automation.ParameterMetadata], | |
6427 | + [LiteralPath, System.Management.Automation.ParameterMetad | |
6428 | + ata], [Filter, System.Management.Automation.ParameterMeta | |
6429 | + data], [Include, System.Management.Automation.ParameterMe | |
6430 | + tadata]...} | |
6431 | +ParameterSets : {[-Path] <String[]> [-Filter <String>] [-Include <String[ | |
6432 | + ]>] [-Exclude <String[]>] [-Credential <PSCredential>] [- | |
6433 | + Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-War | |
6434 | + ningAction <ActionPreference>] [-ErrorVariable <String>] | |
6435 | + [-WarningVariable <String>] [-OutVariable <String>] [-Out | |
6436 | + Buffer <Int32>] [-WhatIf] [-Confirm] [-UseTransaction], [ | |
6437 | + -LiteralPath] <String[]> [-Filter <String>] [-Include <St | |
6438 | + ring[]>] [-Exclude <String[]>] [-Credential <PSCredential | |
6439 | + >] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] | |
6440 | + [-WarningAction <ActionPreference>] [-ErrorVariable <Stri | |
6441 | + ng>] [-WarningVariable <String>] [-OutVariable <String>] | |
6442 | + [-OutBuffer <Int32>] [-WhatIf] [-Confirm] [-UseTransactio | |
6443 | + n]} | |
6444 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113345 | |
6445 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
6446 | + s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe | |
6447 | + ll.Commands.Management.dll | |
6448 | + | |
6449 | + | |
6450 | +Verb : Invoke | |
6451 | +Noun : WmiMethod | |
6452 | +HelpFile : Microsoft.PowerShell.Commands.Management.dll-Help.xml | |
6453 | +PSSnapIn : Microsoft.PowerShell.Management | |
6454 | +ImplementingType : Microsoft.PowerShell.Commands.InvokeWmiMethod | |
6455 | +Definition : Invoke-WmiMethod [-Class] <String> [-Name] <String> [[-Ar | |
6456 | + gumentList] <Object[]>] [-AsJob] [-Impersonation <Imperso | |
6457 | + nationLevel>] [-Authentication <AuthenticationLevel>] [-L | |
6458 | + ocale <String>] [-EnableAllPrivileges] [-Authority <Strin | |
6459 | + g>] [-Credential <PSCredential>] [-ThrottleLimit <Int32>] | |
6460 | + [-ComputerName <String[]>] [-Namespace <String>] [-Verbo | |
6461 | + se] [-Debug] [-ErrorAction <ActionPreference>] [-WarningA | |
6462 | + ction <ActionPreference>] [-ErrorVariable <String>] [-War | |
6463 | + ningVariable <String>] [-OutVariable <String>] [-OutBuffe | |
6464 | + r <Int32>] [-WhatIf] [-Confirm] | |
6465 | + Invoke-WmiMethod [-Name] <String> -InputObject <Managemen | |
6466 | + tObject> [-ArgumentList <Object[]>] [-AsJob] [-ThrottleLi | |
6467 | + mit <Int32>] [-Verbose] [-Debug] [-ErrorAction <ActionPre | |
6468 | + ference>] [-WarningAction <ActionPreference>] [-ErrorVari | |
6469 | + able <String>] [-WarningVariable <String>] [-OutVariable | |
6470 | + <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm] | |
6471 | + Invoke-WmiMethod [-Name] <String> -Path <String> [-Argume | |
6472 | + ntList <Object[]>] [-AsJob] [-Impersonation <Impersonatio | |
6473 | + nLevel>] [-Authentication <AuthenticationLevel>] [-Locale | |
6474 | + <String>] [-EnableAllPrivileges] [-Authority <String>] [ | |
6475 | + -Credential <PSCredential>] [-ThrottleLimit <Int32>] [-Co | |
6476 | + mputerName <String[]>] [-Namespace <String>] [-Verbose] [ | |
6477 | + -Debug] [-ErrorAction <ActionPreference>] [-WarningAction | |
6478 | + <ActionPreference>] [-ErrorVariable <String>] [-WarningV | |
6479 | + ariable <String>] [-OutVariable <String>] [-OutBuffer <In | |
6480 | + t32>] [-WhatIf] [-Confirm] | |
6481 | + Invoke-WmiMethod [-Name] <String> [-AsJob] [-Impersonatio | |
6482 | + n <ImpersonationLevel>] [-Authentication <AuthenticationL | |
6483 | + evel>] [-Locale <String>] [-EnableAllPrivileges] [-Author | |
6484 | + ity <String>] [-Credential <PSCredential>] [-ThrottleLimi | |
6485 | + t <Int32>] [-ComputerName <String[]>] [-Namespace <String | |
6486 | + >] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] | |
6487 | + [-WarningAction <ActionPreference>] [-ErrorVariable <Stri | |
6488 | + ng>] [-WarningVariable <String>] [-OutVariable <String>] | |
6489 | + [-OutBuffer <Int32>] [-WhatIf] [-Confirm] | |
6490 | + Invoke-WmiMethod [-Name] <String> [-AsJob] [-Impersonatio | |
6491 | + n <ImpersonationLevel>] [-Authentication <AuthenticationL | |
6492 | + evel>] [-Locale <String>] [-EnableAllPrivileges] [-Author | |
6493 | + ity <String>] [-Credential <PSCredential>] [-ThrottleLimi | |
6494 | + t <Int32>] [-ComputerName <String[]>] [-Namespace <String | |
6495 | + >] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] | |
6496 | + [-WarningAction <ActionPreference>] [-ErrorVariable <Stri | |
6497 | + ng>] [-WarningVariable <String>] [-OutVariable <String>] | |
6498 | + [-OutBuffer <Int32>] [-WhatIf] [-Confirm] | |
6499 | + Invoke-WmiMethod [-Name] <String> [-AsJob] [-Impersonatio | |
6500 | + n <ImpersonationLevel>] [-Authentication <AuthenticationL | |
6501 | + evel>] [-Locale <String>] [-EnableAllPrivileges] [-Author | |
6502 | + ity <String>] [-Credential <PSCredential>] [-ThrottleLimi | |
6503 | + t <Int32>] [-ComputerName <String[]>] [-Namespace <String | |
6504 | + >] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] | |
6505 | + [-WarningAction <ActionPreference>] [-ErrorVariable <Stri | |
6506 | + ng>] [-WarningVariable <String>] [-OutVariable <String>] | |
6507 | + [-OutBuffer <Int32>] [-WhatIf] [-Confirm] | |
6508 | + | |
6509 | +DefaultParameterSet : class | |
6510 | +OutputType : {} | |
6511 | +Name : Invoke-WmiMethod | |
6512 | +CommandType : Cmdlet | |
6513 | +Visibility : Public | |
6514 | +ModuleName : Microsoft.PowerShell.Management | |
6515 | +Module : | |
6516 | +Parameters : {[InputObject, System.Management.Automation.ParameterMeta | |
6517 | + data], [Path, System.Management.Automation.ParameterMetad | |
6518 | + ata], [Class, System.Management.Automation.ParameterMetad | |
6519 | + ata], [Name, System.Management.Automation.ParameterMetada | |
6520 | + ta]...} | |
6521 | +ParameterSets : {[-Class] <String> [-Name] <String> [[-ArgumentList] <Obj | |
6522 | + ect[]>] [-AsJob] [-Impersonation <ImpersonationLevel>] [- | |
6523 | + Authentication <AuthenticationLevel>] [-Locale <String>] | |
6524 | + [-EnableAllPrivileges] [-Authority <String>] [-Credential | |
6525 | + <PSCredential>] [-ThrottleLimit <Int32>] [-ComputerName | |
6526 | + <String[]>] [-Namespace <String>] [-Verbose] [-Debug] [-E | |
6527 | + rrorAction <ActionPreference>] [-WarningAction <ActionPre | |
6528 | + ference>] [-ErrorVariable <String>] [-WarningVariable <St | |
6529 | + ring>] [-OutVariable <String>] [-OutBuffer <Int32>] [-Wha | |
6530 | + tIf] [-Confirm], [-Name] <String> -InputObject <Managemen | |
6531 | + tObject> [-ArgumentList <Object[]>] [-AsJob] [-ThrottleLi | |
6532 | + mit <Int32>] [-Verbose] [-Debug] [-ErrorAction <ActionPre | |
6533 | + ference>] [-WarningAction <ActionPreference>] [-ErrorVari | |
6534 | + able <String>] [-WarningVariable <String>] [-OutVariable | |
6535 | + <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm], [-Na | |
6536 | + me] <String> -Path <String> [-ArgumentList <Object[]>] [- | |
6537 | + AsJob] [-Impersonation <ImpersonationLevel>] [-Authentica | |
6538 | + tion <AuthenticationLevel>] [-Locale <String>] [-EnableAl | |
6539 | + lPrivileges] [-Authority <String>] [-Credential <PSCreden | |
6540 | + tial>] [-ThrottleLimit <Int32>] [-ComputerName <String[]> | |
6541 | + ] [-Namespace <String>] [-Verbose] [-Debug] [-ErrorAction | |
6542 | + <ActionPreference>] [-WarningAction <ActionPreference>] | |
6543 | + [-ErrorVariable <String>] [-WarningVariable <String>] [-O | |
6544 | + utVariable <String>] [-OutBuffer <Int32>] [-WhatIf] [-Con | |
6545 | + firm], [-Name] <String> [-AsJob] [-Impersonation <Imperso | |
6546 | + nationLevel>] [-Authentication <AuthenticationLevel>] [-L | |
6547 | + ocale <String>] [-EnableAllPrivileges] [-Authority <Strin | |
6548 | + g>] [-Credential <PSCredential>] [-ThrottleLimit <Int32>] | |
6549 | + [-ComputerName <String[]>] [-Namespace <String>] [-Verbo | |
6550 | + se] [-Debug] [-ErrorAction <ActionPreference>] [-WarningA | |
6551 | + ction <ActionPreference>] [-ErrorVariable <String>] [-War | |
6552 | + ningVariable <String>] [-OutVariable <String>] [-OutBuffe | |
6553 | + r <Int32>] [-WhatIf] [-Confirm]...} | |
6554 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113346 | |
6555 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
6556 | + s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe | |
6557 | + ll.Commands.Management.dll | |
6558 | + | |
6559 | + | |
6560 | +Verb : Invoke | |
6561 | +Noun : WSManAction | |
6562 | +HelpFile : Microsoft.WSMan.Management.dll-Help.xml | |
6563 | +PSSnapIn : Microsoft.WSMan.Management | |
6564 | +ImplementingType : Microsoft.WSMan.Management.InvokeWSManActionCommand | |
6565 | +Definition : Invoke-WSManAction [-ResourceURI] <Uri> [-Action] <String | |
6566 | + > [[-SelectorSet] <Hashtable>] [-ConnectionURI <Uri>] [-F | |
6567 | + ilePath <String>] [-OptionSet <Hashtable>] [-SessionOptio | |
6568 | + n <SessionOption>] [-ValueSet <Hashtable>] [-Credential < | |
6569 | + PSCredential>] [-Authentication <AuthenticationMechanism> | |
6570 | + ] [-CertificateThumbprint <String>] [-Verbose] [-Debug] [ | |
6571 | + -ErrorAction <ActionPreference>] [-WarningAction <ActionP | |
6572 | + reference>] [-ErrorVariable <String>] [-WarningVariable < | |
6573 | + String>] [-OutVariable <String>] [-OutBuffer <Int32>] | |
6574 | + Invoke-WSManAction [-ResourceURI] <Uri> [-Action] <String | |
6575 | + > [[-SelectorSet] <Hashtable>] [-ApplicationName <String> | |
6576 | + ] [-ComputerName <String>] [-FilePath <String>] [-OptionS | |
6577 | + et <Hashtable>] [-Port <Int32>] [-SessionOption <SessionO | |
6578 | + ption>] [-UseSSL] [-ValueSet <Hashtable>] [-Credential <P | |
6579 | + SCredential>] [-Authentication <AuthenticationMechanism>] | |
6580 | + [-CertificateThumbprint <String>] [-Verbose] [-Debug] [- | |
6581 | + ErrorAction <ActionPreference>] [-WarningAction <ActionPr | |
6582 | + eference>] [-ErrorVariable <String>] [-WarningVariable <S | |
6583 | + tring>] [-OutVariable <String>] [-OutBuffer <Int32>] | |
6584 | + | |
6585 | +DefaultParameterSet : URI | |
6586 | +OutputType : {} | |
6587 | +Name : Invoke-WSManAction | |
6588 | +CommandType : Cmdlet | |
6589 | +Visibility : Public | |
6590 | +ModuleName : Microsoft.WSMan.Management | |
6591 | +Module : | |
6592 | +Parameters : {[Action, System.Management.Automation.ParameterMetadata] | |
6593 | + , [ApplicationName, System.Management.Automation.Paramete | |
6594 | + rMetadata], [ComputerName, System.Management.Automation.P | |
6595 | + arameterMetadata], [ConnectionURI, System.Management.Auto | |
6596 | + mation.ParameterMetadata]...} | |
6597 | +ParameterSets : {[-ResourceURI] <Uri> [-Action] <String> [[-SelectorSet] | |
6598 | + <Hashtable>] [-ConnectionURI <Uri>] [-FilePath <String>] | |
6599 | + [-OptionSet <Hashtable>] [-SessionOption <SessionOption>] | |
6600 | + [-ValueSet <Hashtable>] [-Credential <PSCredential>] [-A | |
6601 | + uthentication <AuthenticationMechanism>] [-CertificateThu | |
6602 | + mbprint <String>] [-Verbose] [-Debug] [-ErrorAction <Acti | |
6603 | + onPreference>] [-WarningAction <ActionPreference>] [-Erro | |
6604 | + rVariable <String>] [-WarningVariable <String>] [-OutVari | |
6605 | + able <String>] [-OutBuffer <Int32>], [-ResourceURI] <Uri> | |
6606 | + [-Action] <String> [[-SelectorSet] <Hashtable>] [-Applic | |
6607 | + ationName <String>] [-ComputerName <String>] [-FilePath < | |
6608 | + String>] [-OptionSet <Hashtable>] [-Port <Int32>] [-Sessi | |
6609 | + onOption <SessionOption>] [-UseSSL] [-ValueSet <Hashtable | |
6610 | + >] [-Credential <PSCredential>] [-Authentication <Authent | |
6611 | + icationMechanism>] [-CertificateThumbprint <String>] [-Ve | |
6612 | + rbose] [-Debug] [-ErrorAction <ActionPreference>] [-Warni | |
6613 | + ngAction <ActionPreference>] [-ErrorVariable <String>] [- | |
6614 | + WarningVariable <String>] [-OutVariable <String>] [-OutBu | |
6615 | + ffer <Int32>]} | |
6616 | +HelpUri : http://go.microsoft.com/fwlink/?LinkId=141446 | |
6617 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.WSMan.Management\1 | |
6618 | + .0.0.0__31bf3856ad364e35\Microsoft.WSMan.Management.dll | |
6619 | + | |
6620 | +Name : ipal | |
6621 | +CommandType : Alias | |
6622 | +Definition : Import-Alias | |
6623 | +ReferencedCommand : Import-Alias | |
6624 | +ResolvedCommand : Import-Alias | |
6625 | + | |
6626 | +Name : ipcsv | |
6627 | +CommandType : Alias | |
6628 | +Definition : Import-Csv | |
6629 | +ReferencedCommand : Import-Csv | |
6630 | +ResolvedCommand : Import-Csv | |
6631 | + | |
6632 | +Name : ipmo | |
6633 | +CommandType : Alias | |
6634 | +Definition : Import-Module | |
6635 | +ReferencedCommand : Import-Module | |
6636 | +ResolvedCommand : Import-Module | |
6637 | + | |
6638 | +Name : ipsn | |
6639 | +CommandType : Alias | |
6640 | +Definition : Import-PSSession | |
6641 | +ReferencedCommand : Import-PSSession | |
6642 | +ResolvedCommand : Import-PSSession | |
6643 | + | |
6644 | +Name : ise | |
6645 | +CommandType : Alias | |
6646 | +Definition : powershell_ise.exe | |
6647 | +ReferencedCommand : powershell_ise.exe | |
6648 | +ResolvedCommand : powershell_ise.exe | |
6649 | + | |
6650 | +Name : iwmi | |
6651 | +CommandType : Alias | |
6652 | +Definition : Invoke-WMIMethod | |
6653 | +ReferencedCommand : Invoke-WmiMethod | |
6654 | +ResolvedCommand : Invoke-WmiMethod | |
6655 | + | |
6656 | + | |
6657 | +ScriptBlock : Set-Location J: | |
6658 | +CmdletBinding : False | |
6659 | +DefaultParameterSet : | |
6660 | +Definition : Set-Location J: | |
6661 | +Options : None | |
6662 | +Description : | |
6663 | +OutputType : {} | |
6664 | +Name : J: | |
6665 | +CommandType : Function | |
6666 | +Visibility : Public | |
6667 | +ModuleName : | |
6668 | +Module : | |
6669 | +Parameters : {} | |
6670 | +ParameterSets : {} | |
6671 | +HelpUri : | |
6672 | + | |
6673 | + | |
6674 | +Verb : Join | |
6675 | +Noun : Path | |
6676 | +HelpFile : Microsoft.PowerShell.Commands.Management.dll-Help.xml | |
6677 | +PSSnapIn : Microsoft.PowerShell.Management | |
6678 | +ImplementingType : Microsoft.PowerShell.Commands.JoinPathCommand | |
6679 | +Definition : Join-Path [-Path] <String[]> [-ChildPath] <String> [-Reso | |
6680 | + lve] [-Credential <PSCredential>] [-Verbose] [-Debug] [-E | |
6681 | + rrorAction <ActionPreference>] [-WarningAction <ActionPre | |
6682 | + ference>] [-ErrorVariable <String>] [-WarningVariable <St | |
6683 | + ring>] [-OutVariable <String>] [-OutBuffer <Int32>] [-Use | |
6684 | + Transaction] | |
6685 | + | |
6686 | +DefaultParameterSet : | |
6687 | +OutputType : {System.String} | |
6688 | +Name : Join-Path | |
6689 | +CommandType : Cmdlet | |
6690 | +Visibility : Public | |
6691 | +ModuleName : Microsoft.PowerShell.Management | |
6692 | +Module : | |
6693 | +Parameters : {[Path, System.Management.Automation.ParameterMetadata], | |
6694 | + [ChildPath, System.Management.Automation.ParameterMetadat | |
6695 | + a], [Resolve, System.Management.Automation.ParameterMetad | |
6696 | + ata], [Credential, System.Management.Automation.Parameter | |
6697 | + Metadata]...} | |
6698 | +ParameterSets : {[-Path] <String[]> [-ChildPath] <String> [-Resolve] [-Cr | |
6699 | + edential <PSCredential>] [-Verbose] [-Debug] [-ErrorActio | |
6700 | + n <ActionPreference>] [-WarningAction <ActionPreference>] | |
6701 | + [-ErrorVariable <String>] [-WarningVariable <String>] [- | |
6702 | + OutVariable <String>] [-OutBuffer <Int32>] [-UseTransacti | |
6703 | + on]} | |
6704 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113347 | |
6705 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
6706 | + s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe | |
6707 | + ll.Commands.Management.dll | |
6708 | + | |
6709 | + | |
6710 | +ScriptBlock : Set-Location K: | |
6711 | +CmdletBinding : False | |
6712 | +DefaultParameterSet : | |
6713 | +Definition : Set-Location K: | |
6714 | +Options : None | |
6715 | +Description : | |
6716 | +OutputType : {} | |
6717 | +Name : K: | |
6718 | +CommandType : Function | |
6719 | +Visibility : Public | |
6720 | +ModuleName : | |
6721 | +Module : | |
6722 | +Parameters : {} | |
6723 | +ParameterSets : {} | |
6724 | +HelpUri : | |
6725 | + | |
6726 | +Name : kill | |
6727 | +CommandType : Alias | |
6728 | +Definition : Stop-Process | |
6729 | +ReferencedCommand : Stop-Process | |
6730 | +ResolvedCommand : Stop-Process | |
6731 | + | |
6732 | + | |
6733 | +ScriptBlock : Set-Location L: | |
6734 | +CmdletBinding : False | |
6735 | +DefaultParameterSet : | |
6736 | +Definition : Set-Location L: | |
6737 | +Options : None | |
6738 | +Description : | |
6739 | +OutputType : {} | |
6740 | +Name : L: | |
6741 | +CommandType : Function | |
6742 | +Visibility : Public | |
6743 | +ModuleName : | |
6744 | +Module : | |
6745 | +Parameters : {} | |
6746 | +ParameterSets : {} | |
6747 | +HelpUri : | |
6748 | + | |
6749 | + | |
6750 | +Verb : Limit | |
6751 | +Noun : EventLog | |
6752 | +HelpFile : Microsoft.PowerShell.Commands.Management.dll-Help.xml | |
6753 | +PSSnapIn : Microsoft.PowerShell.Management | |
6754 | +ImplementingType : Microsoft.PowerShell.Commands.LimitEventLogCommand | |
6755 | +Definition : Limit-EventLog [-LogName] <String[]> [-ComputerName <Stri | |
6756 | + ng[]>] [-RetentionDays <Int32>] [-OverflowAction <Overflo | |
6757 | + wAction>] [-MaximumSize <Int64>] [-Verbose] [-Debug] [-Er | |
6758 | + rorAction <ActionPreference>] [-WarningAction <ActionPref | |
6759 | + erence>] [-ErrorVariable <String>] [-WarningVariable <Str | |
6760 | + ing>] [-OutVariable <String>] [-OutBuffer <Int32>] [-What | |
6761 | + If] [-Confirm] | |
6762 | + | |
6763 | +DefaultParameterSet : | |
6764 | +OutputType : {} | |
6765 | +Name : Limit-EventLog | |
6766 | +CommandType : Cmdlet | |
6767 | +Visibility : Public | |
6768 | +ModuleName : Microsoft.PowerShell.Management | |
6769 | +Module : | |
6770 | +Parameters : {[LogName, System.Management.Automation.ParameterMetadata | |
6771 | + ], [ComputerName, System.Management.Automation.ParameterM | |
6772 | + etadata], [RetentionDays, System.Management.Automation.Pa | |
6773 | + rameterMetadata], [OverflowAction, System.Management.Auto | |
6774 | + mation.ParameterMetadata]...} | |
6775 | +ParameterSets : {[-LogName] <String[]> [-ComputerName <String[]>] [-Reten | |
6776 | + tionDays <Int32>] [-OverflowAction <OverflowAction>] [-Ma | |
6777 | + ximumSize <Int64>] [-Verbose] [-Debug] [-ErrorAction <Act | |
6778 | + ionPreference>] [-WarningAction <ActionPreference>] [-Err | |
6779 | + orVariable <String>] [-WarningVariable <String>] [-OutVar | |
6780 | + iable <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm] | |
6781 | + } | |
6782 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=135227 | |
6783 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
6784 | + s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe | |
6785 | + ll.Commands.Management.dll | |
6786 | + | |
6787 | +Name : lp | |
6788 | +CommandType : Alias | |
6789 | +Definition : Out-Printer | |
6790 | +ReferencedCommand : Out-Printer | |
6791 | +ResolvedCommand : Out-Printer | |
6792 | + | |
6793 | +Name : ls | |
6794 | +CommandType : Alias | |
6795 | +Definition : Get-ChildItem | |
6796 | +ReferencedCommand : Get-ChildItem | |
6797 | +ResolvedCommand : Get-ChildItem | |
6798 | + | |
6799 | + | |
6800 | +ScriptBlock : Set-Location M: | |
6801 | +CmdletBinding : False | |
6802 | +DefaultParameterSet : | |
6803 | +Definition : Set-Location M: | |
6804 | +Options : None | |
6805 | +Description : | |
6806 | +OutputType : {} | |
6807 | +Name : M: | |
6808 | +CommandType : Function | |
6809 | +Visibility : Public | |
6810 | +ModuleName : | |
6811 | +Module : | |
6812 | +Parameters : {} | |
6813 | +ParameterSets : {} | |
6814 | +HelpUri : | |
6815 | + | |
6816 | +Name : man | |
6817 | +CommandType : Alias | |
6818 | +Definition : help | |
6819 | +ReferencedCommand : help | |
6820 | +ResolvedCommand : help | |
6821 | + | |
6822 | +Name : md | |
6823 | +CommandType : Alias | |
6824 | +Definition : mkdir | |
6825 | +ReferencedCommand : mkdir | |
6826 | +ResolvedCommand : mkdir | |
6827 | + | |
6828 | +Name : measure | |
6829 | +CommandType : Alias | |
6830 | +Definition : Measure-Object | |
6831 | +ReferencedCommand : Measure-Object | |
6832 | +ResolvedCommand : Measure-Object | |
6833 | + | |
6834 | + | |
6835 | +Verb : Measure | |
6836 | +Noun : Command | |
6837 | +HelpFile : Microsoft.PowerShell.Commands.Utility.dll-Help.xml | |
6838 | +PSSnapIn : Microsoft.PowerShell.Utility | |
6839 | +ImplementingType : Microsoft.PowerShell.Commands.MeasureCommandCommand | |
6840 | +Definition : Measure-Command [-Expression] <ScriptBlock> [-InputObject | |
6841 | + <PSObject>] [-Verbose] [-Debug] [-ErrorAction <ActionPre | |
6842 | + ference>] [-WarningAction <ActionPreference>] [-ErrorVari | |
6843 | + able <String>] [-WarningVariable <String>] [-OutVariable | |
6844 | + <String>] [-OutBuffer <Int32>] | |
6845 | + | |
6846 | +DefaultParameterSet : | |
6847 | +OutputType : {} | |
6848 | +Name : Measure-Command | |
6849 | +CommandType : Cmdlet | |
6850 | +Visibility : Public | |
6851 | +ModuleName : Microsoft.PowerShell.Utility | |
6852 | +Module : | |
6853 | +Parameters : {[InputObject, System.Management.Automation.ParameterMeta | |
6854 | + data], [Expression, System.Management.Automation.Paramete | |
6855 | + rMetadata], [Verbose, System.Management.Automation.Parame | |
6856 | + terMetadata], [Debug, System.Management.Automation.Parame | |
6857 | + terMetadata]...} | |
6858 | +ParameterSets : {[-Expression] <ScriptBlock> [-InputObject <PSObject>] [- | |
6859 | + Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-War | |
6860 | + ningAction <ActionPreference>] [-ErrorVariable <String>] | |
6861 | + [-WarningVariable <String>] [-OutVariable <String>] [-Out | |
6862 | + Buffer <Int32>]} | |
6863 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113348 | |
6864 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
6865 | + s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell. | |
6866 | + Commands.Utility.dll | |
6867 | + | |
6868 | + | |
6869 | +Verb : Measure | |
6870 | +Noun : Object | |
6871 | +HelpFile : Microsoft.PowerShell.Commands.Utility.dll-Help.xml | |
6872 | +PSSnapIn : Microsoft.PowerShell.Utility | |
6873 | +ImplementingType : Microsoft.PowerShell.Commands.MeasureObjectCommand | |
6874 | +Definition : Measure-Object [[-Property] <String[]>] [-InputObject <PS | |
6875 | + Object>] [-Sum] [-Average] [-Maximum] [-Minimum] [-Verbos | |
6876 | + e] [-Debug] [-ErrorAction <ActionPreference>] [-WarningAc | |
6877 | + tion <ActionPreference>] [-ErrorVariable <String>] [-Warn | |
6878 | + ingVariable <String>] [-OutVariable <String>] [-OutBuffer | |
6879 | + <Int32>] | |
6880 | + Measure-Object [[-Property] <String[]>] [-InputObject <PS | |
6881 | + Object>] [-Line] [-Word] [-Character] [-IgnoreWhiteSpace] | |
6882 | + [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [- | |
6883 | + WarningAction <ActionPreference>] [-ErrorVariable <String | |
6884 | + >] [-WarningVariable <String>] [-OutVariable <String>] [- | |
6885 | + OutBuffer <Int32>] | |
6886 | + | |
6887 | +DefaultParameterSet : GenericMeasure | |
6888 | +OutputType : {} | |
6889 | +Name : Measure-Object | |
6890 | +CommandType : Cmdlet | |
6891 | +Visibility : Public | |
6892 | +ModuleName : Microsoft.PowerShell.Utility | |
6893 | +Module : | |
6894 | +Parameters : {[InputObject, System.Management.Automation.ParameterMeta | |
6895 | + data], [Property, System.Management.Automation.ParameterM | |
6896 | + etadata], [Sum, System.Management.Automation.ParameterMet | |
6897 | + adata], [Average, System.Management.Automation.ParameterM | |
6898 | + etadata]...} | |
6899 | +ParameterSets : {[[-Property] <String[]>] [-InputObject <PSObject>] [-Sum | |
6900 | + ] [-Average] [-Maximum] [-Minimum] [-Verbose] [-Debug] [- | |
6901 | + ErrorAction <ActionPreference>] [-WarningAction <ActionPr | |
6902 | + eference>] [-ErrorVariable <String>] [-WarningVariable <S | |
6903 | + tring>] [-OutVariable <String>] [-OutBuffer <Int32>], [[- | |
6904 | + Property] <String[]>] [-InputObject <PSObject>] [-Line] [ | |
6905 | + -Word] [-Character] [-IgnoreWhiteSpace] [-Verbose] [-Debu | |
6906 | + g] [-ErrorAction <ActionPreference>] [-WarningAction <Act | |
6907 | + ionPreference>] [-ErrorVariable <String>] [-WarningVariab | |
6908 | + le <String>] [-OutVariable <String>] [-OutBuffer <Int32>] | |
6909 | + } | |
6910 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113349 | |
6911 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
6912 | + s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell. | |
6913 | + Commands.Utility.dll | |
6914 | + | |
6915 | +Name : mi | |
6916 | +CommandType : Alias | |
6917 | +Definition : Move-Item | |
6918 | +ReferencedCommand : Move-Item | |
6919 | +ResolvedCommand : Move-Item | |
6920 | + | |
6921 | + | |
6922 | +ScriptBlock : | |
6923 | + <# | |
6924 | + .FORWARDHELPTARGETNAME New-Item | |
6925 | + .FORWARDHELPCATEGORY Cmdlet | |
6926 | + #> | |
6927 | + [CmdletBinding(DefaultParameterSetName='pathSet', | |
6928 | + SupportsShouldProcess=$true, | |
6929 | + SupportsTransactions=$true, | |
6930 | + ConfirmImpact='Medium')] | |
6931 | + param( | |
6932 | + [Parameter(ParameterSetName='nameSet', Position=0, Va | |
6933 | + lueFromPipelineByPropertyName=$true)] | |
6934 | + [Parameter(ParameterSetName='pathSet', Mandatory=$tru | |
6935 | + e, Position=0, ValueFromPipelineByPropertyName=$true)] | |
6936 | + [System.String[]] | |
6937 | + ${Path}, | |
6938 | + | |
6939 | + [Parameter(ParameterSetName='nameSet', Mandatory=$tru | |
6940 | + e, ValueFromPipelineByPropertyName=$true)] | |
6941 | + [AllowNull()] | |
6942 | + [AllowEmptyString()] | |
6943 | + [System.String] | |
6944 | + ${Name}, | |
6945 | + | |
6946 | + [Parameter(ValueFromPipeline=$true, ValueFromPipeline | |
6947 | + ByPropertyName=$true)] | |
6948 | + [System.Object] | |
6949 | + ${Value}, | |
6950 | + | |
6951 | + [Switch] | |
6952 | + ${Force}, | |
6953 | + | |
6954 | + [Parameter(ValueFromPipelineByPropertyName=$true)] | |
6955 | + [System.Management.Automation.PSCredential] | |
6956 | + ${Credential} | |
6957 | + ) | |
6958 | + begin { | |
6959 | + | |
6960 | + | |
6961 | + try { | |
6962 | + $wrappedCmd = $ExecutionContext.InvokeCommand.Get | |
6963 | + Command('New-Item', [System.Management.Automation.Command | |
6964 | + Types]::Cmdlet) | |
6965 | + $scriptCmd = {& $wrappedCmd -Type Directory @PSBo | |
6966 | + undParameters } | |
6967 | + $steppablePipeline = $scriptCmd.GetSteppablePipel | |
6968 | + ine() | |
6969 | + $steppablePipeline.Begin($PSCmdlet) | |
6970 | + } catch { | |
6971 | + throw | |
6972 | + } | |
6973 | + | |
6974 | + | |
6975 | + } | |
6976 | + process { | |
6977 | + | |
6978 | + | |
6979 | + try { | |
6980 | + $steppablePipeline.Process($_) | |
6981 | + } catch { | |
6982 | + throw | |
6983 | + } | |
6984 | + | |
6985 | + | |
6986 | + } | |
6987 | + end { | |
6988 | + | |
6989 | + | |
6990 | + try { | |
6991 | + $steppablePipeline.End() | |
6992 | + } catch { | |
6993 | + throw | |
6994 | + } | |
6995 | + | |
6996 | + | |
6997 | + } | |
6998 | + | |
6999 | +CmdletBinding : True | |
7000 | +DefaultParameterSet : pathSet | |
7001 | +Definition : | |
7002 | + <# | |
7003 | + .FORWARDHELPTARGETNAME New-Item | |
7004 | + .FORWARDHELPCATEGORY Cmdlet | |
7005 | + #> | |
7006 | + [CmdletBinding(DefaultParameterSetName='pathSet', | |
7007 | + SupportsShouldProcess=$true, | |
7008 | + SupportsTransactions=$true, | |
7009 | + ConfirmImpact='Medium')] | |
7010 | + param( | |
7011 | + [Parameter(ParameterSetName='nameSet', Position=0, Va | |
7012 | + lueFromPipelineByPropertyName=$true)] | |
7013 | + [Parameter(ParameterSetName='pathSet', Mandatory=$tru | |
7014 | + e, Position=0, ValueFromPipelineByPropertyName=$true)] | |
7015 | + [System.String[]] | |
7016 | + ${Path}, | |
7017 | + | |
7018 | + [Parameter(ParameterSetName='nameSet', Mandatory=$tru | |
7019 | + e, ValueFromPipelineByPropertyName=$true)] | |
7020 | + [AllowNull()] | |
7021 | + [AllowEmptyString()] | |
7022 | + [System.String] | |
7023 | + ${Name}, | |
7024 | + | |
7025 | + [Parameter(ValueFromPipeline=$true, ValueFromPipeline | |
7026 | + ByPropertyName=$true)] | |
7027 | + [System.Object] | |
7028 | + ${Value}, | |
7029 | + | |
7030 | + [Switch] | |
7031 | + ${Force}, | |
7032 | + | |
7033 | + [Parameter(ValueFromPipelineByPropertyName=$true)] | |
7034 | + [System.Management.Automation.PSCredential] | |
7035 | + ${Credential} | |
7036 | + ) | |
7037 | + begin { | |
7038 | + | |
7039 | + | |
7040 | + try { | |
7041 | + $wrappedCmd = $ExecutionContext.InvokeCommand.Get | |
7042 | + Command('New-Item', [System.Management.Automation.Command | |
7043 | + Types]::Cmdlet) | |
7044 | + $scriptCmd = {& $wrappedCmd -Type Directory @PSBo | |
7045 | + undParameters } | |
7046 | + $steppablePipeline = $scriptCmd.GetSteppablePipel | |
7047 | + ine() | |
7048 | + $steppablePipeline.Begin($PSCmdlet) | |
7049 | + } catch { | |
7050 | + throw | |
7051 | + } | |
7052 | + | |
7053 | + | |
7054 | + } | |
7055 | + process { | |
7056 | + | |
7057 | + | |
7058 | + try { | |
7059 | + $steppablePipeline.Process($_) | |
7060 | + } catch { | |
7061 | + throw | |
7062 | + } | |
7063 | + | |
7064 | + | |
7065 | + } | |
7066 | + end { | |
7067 | + | |
7068 | + | |
7069 | + try { | |
7070 | + $steppablePipeline.End() | |
7071 | + } catch { | |
7072 | + throw | |
7073 | + } | |
7074 | + | |
7075 | + | |
7076 | + } | |
7077 | + | |
7078 | +Options : None | |
7079 | +Description : | |
7080 | +OutputType : {} | |
7081 | +Name : mkdir | |
7082 | +CommandType : Function | |
7083 | +Visibility : Public | |
7084 | +ModuleName : | |
7085 | +Module : | |
7086 | +Parameters : {[Path, System.Management.Automation.ParameterMetadata], | |
7087 | + [Name, System.Management.Automation.ParameterMetadata], [ | |
7088 | + Value, System.Management.Automation.ParameterMetadata], [ | |
7089 | + Force, System.Management.Automation.ParameterMetadata]... | |
7090 | + } | |
7091 | +ParameterSets : {[-Path] <String[]> [-Value <Object>] [-Force] [-Credenti | |
7092 | + al <PSCredential>] [-Verbose] [-Debug] [-ErrorAction <Act | |
7093 | + ionPreference>] [-WarningAction <ActionPreference>] [-Err | |
7094 | + orVariable <String>] [-WarningVariable <String>] [-OutVar | |
7095 | + iable <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm] | |
7096 | + [-UseTransaction], [[-Path] <String[]>] -Name <String> [ | |
7097 | + -Value <Object>] [-Force] [-Credential <PSCredential>] [- | |
7098 | + Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-War | |
7099 | + ningAction <ActionPreference>] [-ErrorVariable <String>] | |
7100 | + [-WarningVariable <String>] [-OutVariable <String>] [-Out | |
7101 | + Buffer <Int32>] [-WhatIf] [-Confirm] [-UseTransaction]} | |
7102 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113353 | |
7103 | + | |
7104 | + | |
7105 | +ScriptBlock : param([string[]]$paths) | |
7106 | + $OutputEncoding = [System.Console]::OutputEncoding | |
7107 | + | |
7108 | + if($paths) | |
7109 | + { | |
7110 | + foreach ($file in $paths) | |
7111 | + { | |
7112 | + Get-Content $file | more.com | |
7113 | + } | |
7114 | + } | |
7115 | + else | |
7116 | + { | |
7117 | + $input | more.com | |
7118 | + } | |
7119 | + | |
7120 | +CmdletBinding : False | |
7121 | +DefaultParameterSet : | |
7122 | +Definition : param([string[]]$paths) | |
7123 | + $OutputEncoding = [System.Console]::OutputEncoding | |
7124 | + | |
7125 | + if($paths) | |
7126 | + { | |
7127 | + foreach ($file in $paths) | |
7128 | + { | |
7129 | + Get-Content $file | more.com | |
7130 | + } | |
7131 | + } | |
7132 | + else | |
7133 | + { | |
7134 | + $input | more.com | |
7135 | + } | |
7136 | + | |
7137 | +Options : None | |
7138 | +Description : | |
7139 | +OutputType : {} | |
7140 | +Name : more | |
7141 | +CommandType : Function | |
7142 | +Visibility : Public | |
7143 | +ModuleName : | |
7144 | +Module : | |
7145 | +Parameters : {[paths, System.Management.Automation.ParameterMetadata]} | |
7146 | +ParameterSets : {[[-paths] <String[]>]} | |
7147 | +HelpUri : | |
7148 | + | |
7149 | +Name : mount | |
7150 | +CommandType : Alias | |
7151 | +Definition : New-PSDrive | |
7152 | +ReferencedCommand : New-PSDrive | |
7153 | +ResolvedCommand : New-PSDrive | |
7154 | + | |
7155 | +Name : move | |
7156 | +CommandType : Alias | |
7157 | +Definition : Move-Item | |
7158 | +ReferencedCommand : Move-Item | |
7159 | +ResolvedCommand : Move-Item | |
7160 | + | |
7161 | + | |
7162 | +Verb : Move | |
7163 | +Noun : Item | |
7164 | +HelpFile : Microsoft.PowerShell.Commands.Management.dll-Help.xml | |
7165 | +PSSnapIn : Microsoft.PowerShell.Management | |
7166 | +ImplementingType : Microsoft.PowerShell.Commands.MoveItemCommand | |
7167 | +Definition : Move-Item [-Path] <String[]> [[-Destination] <String>] [- | |
7168 | + Force] [-Filter <String>] [-Include <String[]>] [-Exclude | |
7169 | + <String[]>] [-PassThru] [-Credential <PSCredential>] [-V | |
7170 | + erbose] [-Debug] [-ErrorAction <ActionPreference>] [-Warn | |
7171 | + ingAction <ActionPreference>] [-ErrorVariable <String>] [ | |
7172 | + -WarningVariable <String>] [-OutVariable <String>] [-OutB | |
7173 | + uffer <Int32>] [-WhatIf] [-Confirm] [-UseTransaction] | |
7174 | + Move-Item [-LiteralPath] <String[]> [[-Destination] <Stri | |
7175 | + ng>] [-Force] [-Filter <String>] [-Include <String[]>] [- | |
7176 | + Exclude <String[]>] [-PassThru] [-Credential <PSCredentia | |
7177 | + l>] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] | |
7178 | + [-WarningAction <ActionPreference>] [-ErrorVariable <Str | |
7179 | + ing>] [-WarningVariable <String>] [-OutVariable <String>] | |
7180 | + [-OutBuffer <Int32>] [-WhatIf] [-Confirm] [-UseTransacti | |
7181 | + on] | |
7182 | + | |
7183 | +DefaultParameterSet : Path | |
7184 | +OutputType : {} | |
7185 | +Name : Move-Item | |
7186 | +CommandType : Cmdlet | |
7187 | +Visibility : Public | |
7188 | +ModuleName : Microsoft.PowerShell.Management | |
7189 | +Module : | |
7190 | +Parameters : {[Path, System.Management.Automation.ParameterMetadata], | |
7191 | + [LiteralPath, System.Management.Automation.ParameterMetad | |
7192 | + ata], [Destination, System.Management.Automation.Paramete | |
7193 | + rMetadata], [Force, System.Management.Automation.Paramete | |
7194 | + rMetadata]...} | |
7195 | +ParameterSets : {[-Path] <String[]> [[-Destination] <String>] [-Force] [- | |
7196 | + Filter <String>] [-Include <String[]>] [-Exclude <String[ | |
7197 | + ]>] [-PassThru] [-Credential <PSCredential>] [-Verbose] [ | |
7198 | + -Debug] [-ErrorAction <ActionPreference>] [-WarningAction | |
7199 | + <ActionPreference>] [-ErrorVariable <String>] [-WarningV | |
7200 | + ariable <String>] [-OutVariable <String>] [-OutBuffer <In | |
7201 | + t32>] [-WhatIf] [-Confirm] [-UseTransaction], [-LiteralPa | |
7202 | + th] <String[]> [[-Destination] <String>] [-Force] [-Filte | |
7203 | + r <String>] [-Include <String[]>] [-Exclude <String[]>] [ | |
7204 | + -PassThru] [-Credential <PSCredential>] [-Verbose] [-Debu | |
7205 | + g] [-ErrorAction <ActionPreference>] [-WarningAction <Act | |
7206 | + ionPreference>] [-ErrorVariable <String>] [-WarningVariab | |
7207 | + le <String>] [-OutVariable <String>] [-OutBuffer <Int32>] | |
7208 | + [-WhatIf] [-Confirm] [-UseTransaction]} | |
7209 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113350 | |
7210 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
7211 | + s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe | |
7212 | + ll.Commands.Management.dll | |
7213 | + | |
7214 | + | |
7215 | +Verb : Move | |
7216 | +Noun : ItemProperty | |
7217 | +HelpFile : Microsoft.PowerShell.Commands.Management.dll-Help.xml | |
7218 | +PSSnapIn : Microsoft.PowerShell.Management | |
7219 | +ImplementingType : Microsoft.PowerShell.Commands.MoveItemPropertyCommand | |
7220 | +Definition : Move-ItemProperty [-Path] <String[]> [-Destination] <Stri | |
7221 | + ng> [-Name] <String[]> [-PassThru] [-Force] [-Filter <Str | |
7222 | + ing>] [-Include <String[]>] [-Exclude <String[]>] [-Crede | |
7223 | + ntial <PSCredential>] [-Verbose] [-Debug] [-ErrorAction < | |
7224 | + ActionPreference>] [-WarningAction <ActionPreference>] [- | |
7225 | + ErrorVariable <String>] [-WarningVariable <String>] [-Out | |
7226 | + Variable <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confi | |
7227 | + rm] [-UseTransaction] | |
7228 | + Move-ItemProperty [-LiteralPath] <String[]> [-Destination | |
7229 | + ] <String> [-Name] <String[]> [-PassThru] [-Force] [-Filt | |
7230 | + er <String>] [-Include <String[]>] [-Exclude <String[]>] | |
7231 | + [-Credential <PSCredential>] [-Verbose] [-Debug] [-ErrorA | |
7232 | + ction <ActionPreference>] [-WarningAction <ActionPreferen | |
7233 | + ce>] [-ErrorVariable <String>] [-WarningVariable <String> | |
7234 | + ] [-OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf] | |
7235 | + [-Confirm] [-UseTransaction] | |
7236 | + | |
7237 | +DefaultParameterSet : Path | |
7238 | +OutputType : {} | |
7239 | +Name : Move-ItemProperty | |
7240 | +CommandType : Cmdlet | |
7241 | +Visibility : Public | |
7242 | +ModuleName : Microsoft.PowerShell.Management | |
7243 | +Module : | |
7244 | +Parameters : {[Path, System.Management.Automation.ParameterMetadata], | |
7245 | + [LiteralPath, System.Management.Automation.ParameterMetad | |
7246 | + ata], [Name, System.Management.Automation.ParameterMetada | |
7247 | + ta], [Destination, System.Management.Automation.Parameter | |
7248 | + Metadata]...} | |
7249 | +ParameterSets : {[-Path] <String[]> [-Destination] <String> [-Name] <Stri | |
7250 | + ng[]> [-PassThru] [-Force] [-Filter <String>] [-Include < | |
7251 | + String[]>] [-Exclude <String[]>] [-Credential <PSCredenti | |
7252 | + al>] [-Verbose] [-Debug] [-ErrorAction <ActionPreference> | |
7253 | + ] [-WarningAction <ActionPreference>] [-ErrorVariable <St | |
7254 | + ring>] [-WarningVariable <String>] [-OutVariable <String> | |
7255 | + ] [-OutBuffer <Int32>] [-WhatIf] [-Confirm] [-UseTransact | |
7256 | + ion], [-LiteralPath] <String[]> [-Destination] <String> [ | |
7257 | + -Name] <String[]> [-PassThru] [-Force] [-Filter <String>] | |
7258 | + [-Include <String[]>] [-Exclude <String[]>] [-Credential | |
7259 | + <PSCredential>] [-Verbose] [-Debug] [-ErrorAction <Actio | |
7260 | + nPreference>] [-WarningAction <ActionPreference>] [-Error | |
7261 | + Variable <String>] [-WarningVariable <String>] [-OutVaria | |
7262 | + ble <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm] [ | |
7263 | + -UseTransaction]} | |
7264 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113351 | |
7265 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
7266 | + s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe | |
7267 | + ll.Commands.Management.dll | |
7268 | + | |
7269 | +Name : mp | |
7270 | +CommandType : Alias | |
7271 | +Definition : Move-ItemProperty | |
7272 | +ReferencedCommand : Move-ItemProperty | |
7273 | +ResolvedCommand : Move-ItemProperty | |
7274 | + | |
7275 | +Name : mv | |
7276 | +CommandType : Alias | |
7277 | +Definition : Move-Item | |
7278 | +ReferencedCommand : Move-Item | |
7279 | +ResolvedCommand : Move-Item | |
7280 | + | |
7281 | + | |
7282 | +ScriptBlock : Set-Location N: | |
7283 | +CmdletBinding : False | |
7284 | +DefaultParameterSet : | |
7285 | +Definition : Set-Location N: | |
7286 | +Options : None | |
7287 | +Description : | |
7288 | +OutputType : {} | |
7289 | +Name : N: | |
7290 | +CommandType : Function | |
7291 | +Visibility : Public | |
7292 | +ModuleName : | |
7293 | +Module : | |
7294 | +Parameters : {} | |
7295 | +ParameterSets : {} | |
7296 | +HelpUri : | |
7297 | + | |
7298 | +Name : nal | |
7299 | +CommandType : Alias | |
7300 | +Definition : New-Alias | |
7301 | +ReferencedCommand : New-Alias | |
7302 | +ResolvedCommand : New-Alias | |
7303 | + | |
7304 | +Name : ndr | |
7305 | +CommandType : Alias | |
7306 | +Definition : New-PSDrive | |
7307 | +ReferencedCommand : New-PSDrive | |
7308 | +ResolvedCommand : New-PSDrive | |
7309 | + | |
7310 | + | |
7311 | +Verb : New | |
7312 | +Noun : Alias | |
7313 | +HelpFile : Microsoft.PowerShell.Commands.Utility.dll-Help.xml | |
7314 | +PSSnapIn : Microsoft.PowerShell.Utility | |
7315 | +ImplementingType : Microsoft.PowerShell.Commands.NewAliasCommand | |
7316 | +Definition : New-Alias [-Name] <String> [-Value] <String> [-Descriptio | |
7317 | + n <String>] [-Option <ScopedItemOptions>] [-PassThru] [-S | |
7318 | + cope <String>] [-Force] [-Verbose] [-Debug] [-ErrorAction | |
7319 | + <ActionPreference>] [-WarningAction <ActionPreference>] | |
7320 | + [-ErrorVariable <String>] [-WarningVariable <String>] [-O | |
7321 | + utVariable <String>] [-OutBuffer <Int32>] [-WhatIf] [-Con | |
7322 | + firm] | |
7323 | + | |
7324 | +DefaultParameterSet : | |
7325 | +OutputType : {} | |
7326 | +Name : New-Alias | |
7327 | +CommandType : Cmdlet | |
7328 | +Visibility : Public | |
7329 | +ModuleName : Microsoft.PowerShell.Utility | |
7330 | +Module : | |
7331 | +Parameters : {[Name, System.Management.Automation.ParameterMetadata], | |
7332 | + [Value, System.Management.Automation.ParameterMetadata], | |
7333 | + [Description, System.Management.Automation.ParameterMetad | |
7334 | + ata], [Option, System.Management.Automation.ParameterMeta | |
7335 | + data]...} | |
7336 | +ParameterSets : {[-Name] <String> [-Value] <String> [-Description <String | |
7337 | + >] [-Option <ScopedItemOptions>] [-PassThru] [-Scope <Str | |
7338 | + ing>] [-Force] [-Verbose] [-Debug] [-ErrorAction <ActionP | |
7339 | + reference>] [-WarningAction <ActionPreference>] [-ErrorVa | |
7340 | + riable <String>] [-WarningVariable <String>] [-OutVariabl | |
7341 | + e <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm]} | |
7342 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113352 | |
7343 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
7344 | + s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell. | |
7345 | + Commands.Utility.dll | |
7346 | + | |
7347 | + | |
7348 | +Verb : New | |
7349 | +Noun : Event | |
7350 | +HelpFile : Microsoft.PowerShell.Commands.Utility.dll-Help.xml | |
7351 | +PSSnapIn : Microsoft.PowerShell.Utility | |
7352 | +ImplementingType : Microsoft.PowerShell.Commands.NewEventCommand | |
7353 | +Definition : New-Event [-SourceIdentifier] <String> [[-Sender] <PSObje | |
7354 | + ct>] [[-EventArguments] <PSObject[]>] [[-MessageData] <PS | |
7355 | + Object>] [-Verbose] [-Debug] [-ErrorAction <ActionPrefere | |
7356 | + nce>] [-WarningAction <ActionPreference>] [-ErrorVariable | |
7357 | + <String>] [-WarningVariable <String>] [-OutVariable <Str | |
7358 | + ing>] [-OutBuffer <Int32>] | |
7359 | + | |
7360 | +DefaultParameterSet : | |
7361 | +OutputType : {} | |
7362 | +Name : New-Event | |
7363 | +CommandType : Cmdlet | |
7364 | +Visibility : Public | |
7365 | +ModuleName : Microsoft.PowerShell.Utility | |
7366 | +Module : | |
7367 | +Parameters : {[SourceIdentifier, System.Management.Automation.Paramete | |
7368 | + rMetadata], [Sender, System.Management.Automation.Paramet | |
7369 | + erMetadata], [EventArguments, System.Management.Automatio | |
7370 | + n.ParameterMetadata], [MessageData, System.Management.Aut | |
7371 | + omation.ParameterMetadata]...} | |
7372 | +ParameterSets : {[-SourceIdentifier] <String> [[-Sender] <PSObject>] [[-E | |
7373 | + ventArguments] <PSObject[]>] [[-MessageData] <PSObject>] | |
7374 | + [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-W | |
7375 | + arningAction <ActionPreference>] [-ErrorVariable <String> | |
7376 | + ] [-WarningVariable <String>] [-OutVariable <String>] [-O | |
7377 | + utBuffer <Int32>]} | |
7378 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=135234 | |
7379 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
7380 | + s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell. | |
7381 | + Commands.Utility.dll | |
7382 | + | |
7383 | + | |
7384 | +Verb : New | |
7385 | +Noun : EventLog | |
7386 | +HelpFile : Microsoft.PowerShell.Commands.Management.dll-Help.xml | |
7387 | +PSSnapIn : Microsoft.PowerShell.Management | |
7388 | +ImplementingType : Microsoft.PowerShell.Commands.NewEventLogCommand | |
7389 | +Definition : New-EventLog [-LogName] <String> [-Source] <String[]> [[- | |
7390 | + ComputerName] <String[]>] [-CategoryResourceFile <String> | |
7391 | + ] [-MessageResourceFile <String>] [-ParameterResourceFile | |
7392 | + <String>] [-Verbose] [-Debug] [-ErrorAction <ActionPrefe | |
7393 | + rence>] [-WarningAction <ActionPreference>] [-ErrorVariab | |
7394 | + le <String>] [-WarningVariable <String>] [-OutVariable <S | |
7395 | + tring>] [-OutBuffer <Int32>] | |
7396 | + | |
7397 | +DefaultParameterSet : | |
7398 | +OutputType : {} | |
7399 | +Name : New-EventLog | |
7400 | +CommandType : Cmdlet | |
7401 | +Visibility : Public | |
7402 | +ModuleName : Microsoft.PowerShell.Management | |
7403 | +Module : | |
7404 | +Parameters : {[CategoryResourceFile, System.Management.Automation.Para | |
7405 | + meterMetadata], [ComputerName, System.Management.Automati | |
7406 | + on.ParameterMetadata], [LogName, System.Management.Automa | |
7407 | + tion.ParameterMetadata], [MessageResourceFile, System.Man | |
7408 | + agement.Automation.ParameterMetadata]...} | |
7409 | +ParameterSets : {[-LogName] <String> [-Source] <String[]> [[-ComputerName | |
7410 | + ] <String[]>] [-CategoryResourceFile <String>] [-MessageR | |
7411 | + esourceFile <String>] [-ParameterResourceFile <String>] [ | |
7412 | + -Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-Wa | |
7413 | + rningAction <ActionPreference>] [-ErrorVariable <String>] | |
7414 | + [-WarningVariable <String>] [-OutVariable <String>] [-Ou | |
7415 | + tBuffer <Int32>]} | |
7416 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=135235 | |
7417 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
7418 | + s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe | |
7419 | + ll.Commands.Management.dll | |
7420 | + | |
7421 | + | |
7422 | +Verb : New | |
7423 | +Noun : Item | |
7424 | +HelpFile : Microsoft.PowerShell.Commands.Management.dll-Help.xml | |
7425 | +PSSnapIn : Microsoft.PowerShell.Management | |
7426 | +ImplementingType : Microsoft.PowerShell.Commands.NewItemCommand | |
7427 | +Definition : New-Item [-Path] <String[]> [-ItemType <String>] [-Value | |
7428 | + <Object>] [-Force] [-Credential <PSCredential>] [-Verbose | |
7429 | + ] [-Debug] [-ErrorAction <ActionPreference>] [-WarningAct | |
7430 | + ion <ActionPreference>] [-ErrorVariable <String>] [-Warni | |
7431 | + ngVariable <String>] [-OutVariable <String>] [-OutBuffer | |
7432 | + <Int32>] [-WhatIf] [-Confirm] [-UseTransaction] | |
7433 | + New-Item [[-Path] <String[]>] -Name <String> [-ItemType < | |
7434 | + String>] [-Value <Object>] [-Force] [-Credential <PSCrede | |
7435 | + ntial>] [-Verbose] [-Debug] [-ErrorAction <ActionPreferen | |
7436 | + ce>] [-WarningAction <ActionPreference>] [-ErrorVariable | |
7437 | + <String>] [-WarningVariable <String>] [-OutVariable <Stri | |
7438 | + ng>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm] [-UseTrans | |
7439 | + action] | |
7440 | + | |
7441 | +DefaultParameterSet : pathSet | |
7442 | +OutputType : {} | |
7443 | +Name : New-Item | |
7444 | +CommandType : Cmdlet | |
7445 | +Visibility : Public | |
7446 | +ModuleName : Microsoft.PowerShell.Management | |
7447 | +Module : | |
7448 | +Parameters : {[Path, System.Management.Automation.ParameterMetadata], | |
7449 | + [Name, System.Management.Automation.ParameterMetadata], [ | |
7450 | + ItemType, System.Management.Automation.ParameterMetadata] | |
7451 | + , [Value, System.Management.Automation.ParameterMetadata] | |
7452 | + ...} | |
7453 | +ParameterSets : {[-Path] <String[]> [-ItemType <String>] [-Value <Object> | |
7454 | + ] [-Force] [-Credential <PSCredential>] [-Verbose] [-Debu | |
7455 | + g] [-ErrorAction <ActionPreference>] [-WarningAction <Act | |
7456 | + ionPreference>] [-ErrorVariable <String>] [-WarningVariab | |
7457 | + le <String>] [-OutVariable <String>] [-OutBuffer <Int32>] | |
7458 | + [-WhatIf] [-Confirm] [-UseTransaction], [[-Path] <String | |
7459 | + []>] -Name <String> [-ItemType <String>] [-Value <Object> | |
7460 | + ] [-Force] [-Credential <PSCredential>] [-Verbose] [-Debu | |
7461 | + g] [-ErrorAction <ActionPreference>] [-WarningAction <Act | |
7462 | + ionPreference>] [-ErrorVariable <String>] [-WarningVariab | |
7463 | + le <String>] [-OutVariable <String>] [-OutBuffer <Int32>] | |
7464 | + [-WhatIf] [-Confirm] [-UseTransaction]} | |
7465 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113353 | |
7466 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
7467 | + s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe | |
7468 | + ll.Commands.Management.dll | |
7469 | + | |
7470 | + | |
7471 | +Verb : New | |
7472 | +Noun : ItemProperty | |
7473 | +HelpFile : Microsoft.PowerShell.Commands.Management.dll-Help.xml | |
7474 | +PSSnapIn : Microsoft.PowerShell.Management | |
7475 | +ImplementingType : Microsoft.PowerShell.Commands.NewItemPropertyCommand | |
7476 | +Definition : New-ItemProperty [-Path] <String[]> [-Name] <String> [-Pr | |
7477 | + opertyType <String>] [-Value <Object>] [-Force] [-Filter | |
7478 | + <String>] [-Include <String[]>] [-Exclude <String[]>] [-C | |
7479 | + redential <PSCredential>] [-Verbose] [-Debug] [-ErrorActi | |
7480 | + on <ActionPreference>] [-WarningAction <ActionPreference> | |
7481 | + ] [-ErrorVariable <String>] [-WarningVariable <String>] [ | |
7482 | + -OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf] [-C | |
7483 | + onfirm] [-UseTransaction] | |
7484 | + New-ItemProperty [-LiteralPath] <String[]> [-Name] <Strin | |
7485 | + g> [-PropertyType <String>] [-Value <Object>] [-Force] [- | |
7486 | + Filter <String>] [-Include <String[]>] [-Exclude <String[ | |
7487 | + ]>] [-Credential <PSCredential>] [-Verbose] [-Debug] [-Er | |
7488 | + rorAction <ActionPreference>] [-WarningAction <ActionPref | |
7489 | + erence>] [-ErrorVariable <String>] [-WarningVariable <Str | |
7490 | + ing>] [-OutVariable <String>] [-OutBuffer <Int32>] [-What | |
7491 | + If] [-Confirm] [-UseTransaction] | |
7492 | + | |
7493 | +DefaultParameterSet : Path | |
7494 | +OutputType : {} | |
7495 | +Name : New-ItemProperty | |
7496 | +CommandType : Cmdlet | |
7497 | +Visibility : Public | |
7498 | +ModuleName : Microsoft.PowerShell.Management | |
7499 | +Module : | |
7500 | +Parameters : {[Path, System.Management.Automation.ParameterMetadata], | |
7501 | + [LiteralPath, System.Management.Automation.ParameterMetad | |
7502 | + ata], [Name, System.Management.Automation.ParameterMetada | |
7503 | + ta], [PropertyType, System.Management.Automation.Paramete | |
7504 | + rMetadata]...} | |
7505 | +ParameterSets : {[-Path] <String[]> [-Name] <String> [-PropertyType <Stri | |
7506 | + ng>] [-Value <Object>] [-Force] [-Filter <String>] [-Incl | |
7507 | + ude <String[]>] [-Exclude <String[]>] [-Credential <PSCre | |
7508 | + dential>] [-Verbose] [-Debug] [-ErrorAction <ActionPrefer | |
7509 | + ence>] [-WarningAction <ActionPreference>] [-ErrorVariabl | |
7510 | + e <String>] [-WarningVariable <String>] [-OutVariable <St | |
7511 | + ring>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm] [-UseTra | |
7512 | + nsaction], [-LiteralPath] <String[]> [-Name] <String> [-P | |
7513 | + ropertyType <String>] [-Value <Object>] [-Force] [-Filter | |
7514 | + <String>] [-Include <String[]>] [-Exclude <String[]>] [- | |
7515 | + Credential <PSCredential>] [-Verbose] [-Debug] [-ErrorAct | |
7516 | + ion <ActionPreference>] [-WarningAction <ActionPreference | |
7517 | + >] [-ErrorVariable <String>] [-WarningVariable <String>] | |
7518 | + [-OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf] [- | |
7519 | + Confirm] [-UseTransaction]} | |
7520 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113354 | |
7521 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
7522 | + s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe | |
7523 | + ll.Commands.Management.dll | |
7524 | + | |
7525 | + | |
7526 | +Verb : New | |
7527 | +Noun : Module | |
7528 | +HelpFile : System.Management.Automation.dll-Help.xml | |
7529 | +PSSnapIn : Microsoft.PowerShell.Core | |
7530 | +ImplementingType : Microsoft.PowerShell.Commands.NewModuleCommand | |
7531 | +Definition : New-Module [-ScriptBlock] <ScriptBlock> [-Function <Strin | |
7532 | + g[]>] [-Cmdlet <String[]>] [-ReturnResult] [-AsCustomObje | |
7533 | + ct] [-ArgumentList <Object[]>] [-Verbose] [-Debug] [-Erro | |
7534 | + rAction <ActionPreference>] [-WarningAction <ActionPrefer | |
7535 | + ence>] [-ErrorVariable <String>] [-WarningVariable <Strin | |
7536 | + g>] [-OutVariable <String>] [-OutBuffer <Int32>] | |
7537 | + New-Module [-Name] <String> [-ScriptBlock] <ScriptBlock> | |
7538 | + [-Function <String[]>] [-Cmdlet <String[]>] [-ReturnResul | |
7539 | + t] [-AsCustomObject] [-ArgumentList <Object[]>] [-Verbose | |
7540 | + ] [-Debug] [-ErrorAction <ActionPreference>] [-WarningAct | |
7541 | + ion <ActionPreference>] [-ErrorVariable <String>] [-Warni | |
7542 | + ngVariable <String>] [-OutVariable <String>] [-OutBuffer | |
7543 | + <Int32>] | |
7544 | + | |
7545 | +DefaultParameterSet : ScriptBlock | |
7546 | +OutputType : {System.Management.Automation.PSModuleInfo} | |
7547 | +Name : New-Module | |
7548 | +CommandType : Cmdlet | |
7549 | +Visibility : Public | |
7550 | +ModuleName : Microsoft.PowerShell.Core | |
7551 | +Module : | |
7552 | +Parameters : {[Name, System.Management.Automation.ParameterMetadata], | |
7553 | + [ScriptBlock, System.Management.Automation.ParameterMetad | |
7554 | + ata], [Function, System.Management.Automation.ParameterMe | |
7555 | + tadata], [Cmdlet, System.Management.Automation.ParameterM | |
7556 | + etadata]...} | |
7557 | +ParameterSets : {[-ScriptBlock] <ScriptBlock> [-Function <String[]>] [-Cm | |
7558 | + dlet <String[]>] [-ReturnResult] [-AsCustomObject] [-Argu | |
7559 | + mentList <Object[]>] [-Verbose] [-Debug] [-ErrorAction <A | |
7560 | + ctionPreference>] [-WarningAction <ActionPreference>] [-E | |
7561 | + rrorVariable <String>] [-WarningVariable <String>] [-OutV | |
7562 | + ariable <String>] [-OutBuffer <Int32>], [-Name] <String> | |
7563 | + [-ScriptBlock] <ScriptBlock> [-Function <String[]>] [-Cmd | |
7564 | + let <String[]>] [-ReturnResult] [-AsCustomObject] [-Argum | |
7565 | + entList <Object[]>] [-Verbose] [-Debug] [-ErrorAction <Ac | |
7566 | + tionPreference>] [-WarningAction <ActionPreference>] [-Er | |
7567 | + rorVariable <String>] [-WarningVariable <String>] [-OutVa | |
7568 | + riable <String>] [-OutBuffer <Int32>]} | |
7569 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=141554 | |
7570 | +DLL : C:\Windows\assembly\GAC_MSIL\System.Management.Automation | |
7571 | + \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d | |
7572 | + ll | |
7573 | + | |
7574 | + | |
7575 | +Verb : New | |
7576 | +Noun : ModuleManifest | |
7577 | +HelpFile : System.Management.Automation.dll-Help.xml | |
7578 | +PSSnapIn : Microsoft.PowerShell.Core | |
7579 | +ImplementingType : Microsoft.PowerShell.Commands.NewModuleManifestCommand | |
7580 | +Definition : New-ModuleManifest [-Path] <String> -NestedModules <Strin | |
7581 | + g[]> [-Guid <Guid>] -Author <String> -CompanyName <String | |
7582 | + > -Copyright <String> -ModuleToProcess <String> [-ModuleV | |
7583 | + ersion <Version>] -Description <String> [-ProcessorArchit | |
7584 | + ecture <ProcessorArchitecture>] [-PowerShellVersion <Vers | |
7585 | + ion>] [-ClrVersion <Version>] [-DotNetFrameworkVersion <V | |
7586 | + ersion>] [-PowerShellHostName <String>] [-PowerShellHostV | |
7587 | + ersion <Version>] [-RequiredModules <Object[]>] -TypesToP | |
7588 | + rocess <String[]> -FormatsToProcess <String[]> [-ScriptsT | |
7589 | + oProcess <String[]>] -RequiredAssemblies <String[]> -File | |
7590 | + List <String[]> [-ModuleList <Object[]>] [-FunctionsToExp | |
7591 | + ort <String[]>] [-AliasesToExport <String[]>] [-Variables | |
7592 | + ToExport <String[]>] [-CmdletsToExport <String[]>] [-Priv | |
7593 | + ateData <Object>] [-PassThru] [-Verbose] [-Debug] [-Error | |
7594 | + Action <ActionPreference>] [-WarningAction <ActionPrefere | |
7595 | + nce>] [-ErrorVariable <String>] [-WarningVariable <String | |
7596 | + >] [-OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf] | |
7597 | + [-Confirm] | |
7598 | + | |
7599 | +DefaultParameterSet : | |
7600 | +OutputType : {System.String} | |
7601 | +Name : New-ModuleManifest | |
7602 | +CommandType : Cmdlet | |
7603 | +Visibility : Public | |
7604 | +ModuleName : Microsoft.PowerShell.Core | |
7605 | +Module : | |
7606 | +Parameters : {[Path, System.Management.Automation.ParameterMetadata], | |
7607 | + [NestedModules, System.Management.Automation.ParameterMet | |
7608 | + adata], [Guid, System.Management.Automation.ParameterMeta | |
7609 | + data], [Author, System.Management.Automation.ParameterMet | |
7610 | + adata]...} | |
7611 | +ParameterSets : {[-Path] <String> -NestedModules <String[]> [-Guid <Guid> | |
7612 | + ] -Author <String> -CompanyName <String> -Copyright <Stri | |
7613 | + ng> -ModuleToProcess <String> [-ModuleVersion <Version>] | |
7614 | + -Description <String> [-ProcessorArchitecture <ProcessorA | |
7615 | + rchitecture>] [-PowerShellVersion <Version>] [-ClrVersion | |
7616 | + <Version>] [-DotNetFrameworkVersion <Version>] [-PowerSh | |
7617 | + ellHostName <String>] [-PowerShellHostVersion <Version>] | |
7618 | + [-RequiredModules <Object[]>] -TypesToProcess <String[]> | |
7619 | + -FormatsToProcess <String[]> [-ScriptsToProcess <String[] | |
7620 | + >] -RequiredAssemblies <String[]> -FileList <String[]> [- | |
7621 | + ModuleList <Object[]>] [-FunctionsToExport <String[]>] [- | |
7622 | + AliasesToExport <String[]>] [-VariablesToExport <String[] | |
7623 | + >] [-CmdletsToExport <String[]>] [-PrivateData <Object>] | |
7624 | + [-PassThru] [-Verbose] [-Debug] [-ErrorAction <ActionPref | |
7625 | + erence>] [-WarningAction <ActionPreference>] [-ErrorVaria | |
7626 | + ble <String>] [-WarningVariable <String>] [-OutVariable < | |
7627 | + String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm]} | |
7628 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=141555 | |
7629 | +DLL : C:\Windows\assembly\GAC_MSIL\System.Management.Automation | |
7630 | + \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d | |
7631 | + ll | |
7632 | + | |
7633 | + | |
7634 | +Verb : New | |
7635 | +Noun : Object | |
7636 | +HelpFile : Microsoft.PowerShell.Commands.Utility.dll-Help.xml | |
7637 | +PSSnapIn : Microsoft.PowerShell.Utility | |
7638 | +ImplementingType : Microsoft.PowerShell.Commands.NewObjectCommand | |
7639 | +Definition : New-Object [-TypeName] <String> [[-ArgumentList] <Object[ | |
7640 | + ]>] [-Property <Hashtable>] [-Verbose] [-Debug] [-ErrorAc | |
7641 | + tion <ActionPreference>] [-WarningAction <ActionPreferenc | |
7642 | + e>] [-ErrorVariable <String>] [-WarningVariable <String>] | |
7643 | + [-OutVariable <String>] [-OutBuffer <Int32>] | |
7644 | + New-Object [-ComObject] <String> [-Strict] [-Property <Ha | |
7645 | + shtable>] [-Verbose] [-Debug] [-ErrorAction <ActionPrefer | |
7646 | + ence>] [-WarningAction <ActionPreference>] [-ErrorVariabl | |
7647 | + e <String>] [-WarningVariable <String>] [-OutVariable <St | |
7648 | + ring>] [-OutBuffer <Int32>] | |
7649 | + | |
7650 | +DefaultParameterSet : Net | |
7651 | +OutputType : {} | |
7652 | +Name : New-Object | |
7653 | +CommandType : Cmdlet | |
7654 | +Visibility : Public | |
7655 | +ModuleName : Microsoft.PowerShell.Utility | |
7656 | +Module : | |
7657 | +Parameters : {[TypeName, System.Management.Automation.ParameterMetadat | |
7658 | + a], [ComObject, System.Management.Automation.ParameterMet | |
7659 | + adata], [ArgumentList, System.Management.Automation.Param | |
7660 | + eterMetadata], [Strict, System.Management.Automation.Para | |
7661 | + meterMetadata]...} | |
7662 | +ParameterSets : {[-TypeName] <String> [[-ArgumentList] <Object[]>] [-Prop | |
7663 | + erty <Hashtable>] [-Verbose] [-Debug] [-ErrorAction <Acti | |
7664 | + onPreference>] [-WarningAction <ActionPreference>] [-Erro | |
7665 | + rVariable <String>] [-WarningVariable <String>] [-OutVari | |
7666 | + able <String>] [-OutBuffer <Int32>], [-ComObject] <String | |
7667 | + > [-Strict] [-Property <Hashtable>] [-Verbose] [-Debug] [ | |
7668 | + -ErrorAction <ActionPreference>] [-WarningAction <ActionP | |
7669 | + reference>] [-ErrorVariable <String>] [-WarningVariable < | |
7670 | + String>] [-OutVariable <String>] [-OutBuffer <Int32>]} | |
7671 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113355 | |
7672 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
7673 | + s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell. | |
7674 | + Commands.Utility.dll | |
7675 | + | |
7676 | + | |
7677 | +Verb : New | |
7678 | +Noun : PSDrive | |
7679 | +HelpFile : Microsoft.PowerShell.Commands.Management.dll-Help.xml | |
7680 | +PSSnapIn : Microsoft.PowerShell.Management | |
7681 | +ImplementingType : Microsoft.PowerShell.Commands.NewPSDriveCommand | |
7682 | +Definition : New-PSDrive [-Name] <String> [-PSProvider] <String> [-Roo | |
7683 | + t] <String> [-Description <String>] [-Scope <String>] [-C | |
7684 | + redential <PSCredential>] [-Verbose] [-Debug] [-ErrorActi | |
7685 | + on <ActionPreference>] [-WarningAction <ActionPreference> | |
7686 | + ] [-ErrorVariable <String>] [-WarningVariable <String>] [ | |
7687 | + -OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf] [-C | |
7688 | + onfirm] [-UseTransaction] | |
7689 | + | |
7690 | +DefaultParameterSet : | |
7691 | +OutputType : {} | |
7692 | +Name : New-PSDrive | |
7693 | +CommandType : Cmdlet | |
7694 | +Visibility : Public | |
7695 | +ModuleName : Microsoft.PowerShell.Management | |
7696 | +Module : | |
7697 | +Parameters : {[Name, System.Management.Automation.ParameterMetadata], | |
7698 | + [PSProvider, System.Management.Automation.ParameterMetada | |
7699 | + ta], [Root, System.Management.Automation.ParameterMetadat | |
7700 | + a], [Description, System.Management.Automation.ParameterM | |
7701 | + etadata]...} | |
7702 | +ParameterSets : {[-Name] <String> [-PSProvider] <String> [-Root] <String> | |
7703 | + [-Description <String>] [-Scope <String>] [-Credential < | |
7704 | + PSCredential>] [-Verbose] [-Debug] [-ErrorAction <ActionP | |
7705 | + reference>] [-WarningAction <ActionPreference>] [-ErrorVa | |
7706 | + riable <String>] [-WarningVariable <String>] [-OutVariabl | |
7707 | + e <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm] [-U | |
7708 | + seTransaction]} | |
7709 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113357 | |
7710 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
7711 | + s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe | |
7712 | + ll.Commands.Management.dll | |
7713 | + | |
7714 | + | |
7715 | +Verb : New | |
7716 | +Noun : PSSession | |
7717 | +HelpFile : System.Management.Automation.dll-Help.xml | |
7718 | +PSSnapIn : Microsoft.PowerShell.Core | |
7719 | +ImplementingType : Microsoft.PowerShell.Commands.NewPSSessionCommand | |
7720 | +Definition : New-PSSession [[-ComputerName] <String[]>] [-Credential < | |
7721 | + PSCredential>] [-Name <String[]>] [-Port <Int32>] [-UseSS | |
7722 | + L] [-ConfigurationName <String>] [-ApplicationName <Strin | |
7723 | + g>] [-ThrottleLimit <Int32>] [-SessionOption <PSSessionOp | |
7724 | + tion>] [-Authentication <AuthenticationMechanism>] [-Cert | |
7725 | + ificateThumbprint <String>] [-Verbose] [-Debug] [-ErrorAc | |
7726 | + tion <ActionPreference>] [-WarningAction <ActionPreferenc | |
7727 | + e>] [-ErrorVariable <String>] [-WarningVariable <String>] | |
7728 | + [-OutVariable <String>] [-OutBuffer <Int32>] | |
7729 | + New-PSSession [-ConnectionUri] <Uri[]> [-Credential <PSCr | |
7730 | + edential>] [-Name <String[]>] [-ConfigurationName <String | |
7731 | + >] [-ThrottleLimit <Int32>] [-AllowRedirection] [-Session | |
7732 | + Option <PSSessionOption>] [-Authentication <Authenticatio | |
7733 | + nMechanism>] [-CertificateThumbprint <String>] [-Verbose] | |
7734 | + [-Debug] [-ErrorAction <ActionPreference>] [-WarningActi | |
7735 | + on <ActionPreference>] [-ErrorVariable <String>] [-Warnin | |
7736 | + gVariable <String>] [-OutVariable <String>] [-OutBuffer < | |
7737 | + Int32>] | |
7738 | + New-PSSession [[-Session] <PSSession[]>] [-Name <String[] | |
7739 | + >] [-ThrottleLimit <Int32>] [-Verbose] [-Debug] [-ErrorAc | |
7740 | + tion <ActionPreference>] [-WarningAction <ActionPreferenc | |
7741 | + e>] [-ErrorVariable <String>] [-WarningVariable <String>] | |
7742 | + [-OutVariable <String>] [-OutBuffer <Int32>] | |
7743 | + | |
7744 | +DefaultParameterSet : ComputerName | |
7745 | +OutputType : {} | |
7746 | +Name : New-PSSession | |
7747 | +CommandType : Cmdlet | |
7748 | +Visibility : Public | |
7749 | +ModuleName : Microsoft.PowerShell.Core | |
7750 | +Module : | |
7751 | +Parameters : {[ComputerName, System.Management.Automation.ParameterMet | |
7752 | + adata], [Credential, System.Management.Automation.Paramet | |
7753 | + erMetadata], [Session, System.Management.Automation.Param | |
7754 | + eterMetadata], [Name, System.Management.Automation.Parame | |
7755 | + terMetadata]...} | |
7756 | +ParameterSets : {[[-ComputerName] <String[]>] [-Credential <PSCredential> | |
7757 | + ] [-Name <String[]>] [-Port <Int32>] [-UseSSL] [-Configur | |
7758 | + ationName <String>] [-ApplicationName <String>] [-Throttl | |
7759 | + eLimit <Int32>] [-SessionOption <PSSessionOption>] [-Auth | |
7760 | + entication <AuthenticationMechanism>] [-CertificateThumbp | |
7761 | + rint <String>] [-Verbose] [-Debug] [-ErrorAction <ActionP | |
7762 | + reference>] [-WarningAction <ActionPreference>] [-ErrorVa | |
7763 | + riable <String>] [-WarningVariable <String>] [-OutVariabl | |
7764 | + e <String>] [-OutBuffer <Int32>], [-ConnectionUri] <Uri[] | |
7765 | + > [-Credential <PSCredential>] [-Name <String[]>] [-Confi | |
7766 | + gurationName <String>] [-ThrottleLimit <Int32>] [-AllowRe | |
7767 | + direction] [-SessionOption <PSSessionOption>] [-Authentic | |
7768 | + ation <AuthenticationMechanism>] [-CertificateThumbprint | |
7769 | + <String>] [-Verbose] [-Debug] [-ErrorAction <ActionPrefer | |
7770 | + ence>] [-WarningAction <ActionPreference>] [-ErrorVariabl | |
7771 | + e <String>] [-WarningVariable <String>] [-OutVariable <St | |
7772 | + ring>] [-OutBuffer <Int32>], [[-Session] <PSSession[]>] [ | |
7773 | + -Name <String[]>] [-ThrottleLimit <Int32>] [-Verbose] [-D | |
7774 | + ebug] [-ErrorAction <ActionPreference>] [-WarningAction < | |
7775 | + ActionPreference>] [-ErrorVariable <String>] [-WarningVar | |
7776 | + iable <String>] [-OutVariable <String>] [-OutBuffer <Int3 | |
7777 | + 2>]} | |
7778 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=135237 | |
7779 | +DLL : C:\Windows\assembly\GAC_MSIL\System.Management.Automation | |
7780 | + \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d | |
7781 | + ll | |
7782 | + | |
7783 | + | |
7784 | +Verb : New | |
7785 | +Noun : PSSessionOption | |
7786 | +HelpFile : System.Management.Automation.dll-Help.xml | |
7787 | +PSSnapIn : Microsoft.PowerShell.Core | |
7788 | +ImplementingType : Microsoft.PowerShell.Commands.NewPSSessionOptionCommand | |
7789 | +Definition : New-PSSessionOption [-MaximumRedirection <Int32>] [-NoCom | |
7790 | + pression] [-NoMachineProfile] [-Culture <CultureInfo>] [- | |
7791 | + UICulture <CultureInfo>] [-MaximumReceivedDataSizePerComm | |
7792 | + and <Int32>] [-MaximumReceivedObjectSize <Int32>] [-Appli | |
7793 | + cationArguments <PSPrimitiveDictionary>] [-OpenTimeout <I | |
7794 | + nt32>] [-CancelTimeout <Int32>] [-IdleTimeout <Int32>] [- | |
7795 | + ProxyAccessType <ProxyAccessType>] [-ProxyAuthentication | |
7796 | + <AuthenticationMechanism>] [-ProxyCredential <PSCredentia | |
7797 | + l>] [-SkipCACheck] [-SkipCNCheck] [-SkipRevocationCheck] | |
7798 | + [-OperationTimeout <Int32>] [-NoEncryption] [-UseUTF16] [ | |
7799 | + -Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-Wa | |
7800 | + rningAction <ActionPreference>] [-ErrorVariable <String>] | |
7801 | + [-WarningVariable <String>] [-OutVariable <String>] [-Ou | |
7802 | + tBuffer <Int32>] | |
7803 | + | |
7804 | +DefaultParameterSet : | |
7805 | +OutputType : {} | |
7806 | +Name : New-PSSessionOption | |
7807 | +CommandType : Cmdlet | |
7808 | +Visibility : Public | |
7809 | +ModuleName : Microsoft.PowerShell.Core | |
7810 | +Module : | |
7811 | +Parameters : {[MaximumRedirection, System.Management.Automation.Parame | |
7812 | + terMetadata], [NoCompression, System.Management.Automatio | |
7813 | + n.ParameterMetadata], [NoMachineProfile, System.Managemen | |
7814 | + t.Automation.ParameterMetadata], [Culture, System.Managem | |
7815 | + ent.Automation.ParameterMetadata]...} | |
7816 | +ParameterSets : {[-MaximumRedirection <Int32>] [-NoCompression] [-NoMachi | |
7817 | + neProfile] [-Culture <CultureInfo>] [-UICulture <CultureI | |
7818 | + nfo>] [-MaximumReceivedDataSizePerCommand <Int32>] [-Maxi | |
7819 | + mumReceivedObjectSize <Int32>] [-ApplicationArguments <PS | |
7820 | + PrimitiveDictionary>] [-OpenTimeout <Int32>] [-CancelTime | |
7821 | + out <Int32>] [-IdleTimeout <Int32>] [-ProxyAccessType <Pr | |
7822 | + oxyAccessType>] [-ProxyAuthentication <AuthenticationMech | |
7823 | + anism>] [-ProxyCredential <PSCredential>] [-SkipCACheck] | |
7824 | + [-SkipCNCheck] [-SkipRevocationCheck] [-OperationTimeout | |
7825 | + <Int32>] [-NoEncryption] [-UseUTF16] [-Verbose] [-Debug] | |
7826 | + [-ErrorAction <ActionPreference>] [-WarningAction <Action | |
7827 | + Preference>] [-ErrorVariable <String>] [-WarningVariable | |
7828 | + <String>] [-OutVariable <String>] [-OutBuffer <Int32>]} | |
7829 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=144305 | |
7830 | +DLL : C:\Windows\assembly\GAC_MSIL\System.Management.Automation | |
7831 | + \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d | |
7832 | + ll | |
7833 | + | |
7834 | + | |
7835 | +Verb : New | |
7836 | +Noun : Service | |
7837 | +HelpFile : Microsoft.PowerShell.Commands.Management.dll-Help.xml | |
7838 | +PSSnapIn : Microsoft.PowerShell.Management | |
7839 | +ImplementingType : Microsoft.PowerShell.Commands.NewServiceCommand | |
7840 | +Definition : New-Service [-Name] <String> [-BinaryPathName] <String> [ | |
7841 | + -DisplayName <String>] [-Description <String>] [-StartupT | |
7842 | + ype <ServiceStartMode>] [-Credential <PSCredential>] [-De | |
7843 | + pendsOn <String[]>] [-Verbose] [-Debug] [-ErrorAction <Ac | |
7844 | + tionPreference>] [-WarningAction <ActionPreference>] [-Er | |
7845 | + rorVariable <String>] [-WarningVariable <String>] [-OutVa | |
7846 | + riable <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm | |
7847 | + ] | |
7848 | + | |
7849 | +DefaultParameterSet : | |
7850 | +OutputType : {System.ServiceProcess.ServiceController} | |
7851 | +Name : New-Service | |
7852 | +CommandType : Cmdlet | |
7853 | +Visibility : Public | |
7854 | +ModuleName : Microsoft.PowerShell.Management | |
7855 | +Module : | |
7856 | +Parameters : {[Name, System.Management.Automation.ParameterMetadata], | |
7857 | + [BinaryPathName, System.Management.Automation.ParameterMe | |
7858 | + tadata], [DisplayName, System.Management.Automation.Param | |
7859 | + eterMetadata], [Description, System.Management.Automation | |
7860 | + .ParameterMetadata]...} | |
7861 | +ParameterSets : {[-Name] <String> [-BinaryPathName] <String> [-DisplayNam | |
7862 | + e <String>] [-Description <String>] [-StartupType <Servic | |
7863 | + eStartMode>] [-Credential <PSCredential>] [-DependsOn <St | |
7864 | + ring[]>] [-Verbose] [-Debug] [-ErrorAction <ActionPrefere | |
7865 | + nce>] [-WarningAction <ActionPreference>] [-ErrorVariable | |
7866 | + <String>] [-WarningVariable <String>] [-OutVariable <Str | |
7867 | + ing>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm]} | |
7868 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113359 | |
7869 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
7870 | + s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe | |
7871 | + ll.Commands.Management.dll | |
7872 | + | |
7873 | + | |
7874 | +Verb : New | |
7875 | +Noun : TimeSpan | |
7876 | +HelpFile : Microsoft.PowerShell.Commands.Utility.dll-Help.xml | |
7877 | +PSSnapIn : Microsoft.PowerShell.Utility | |
7878 | +ImplementingType : Microsoft.PowerShell.Commands.NewTimeSpanCommand | |
7879 | +Definition : New-TimeSpan [[-Start] <DateTime>] [[-End] <DateTime>] [- | |
7880 | + Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-War | |
7881 | + ningAction <ActionPreference>] [-ErrorVariable <String>] | |
7882 | + [-WarningVariable <String>] [-OutVariable <String>] [-Out | |
7883 | + Buffer <Int32>] | |
7884 | + New-TimeSpan [-Days <Int32>] [-Hours <Int32>] [-Minutes < | |
7885 | + Int32>] [-Seconds <Int32>] [-Verbose] [-Debug] [-ErrorAct | |
7886 | + ion <ActionPreference>] [-WarningAction <ActionPreference | |
7887 | + >] [-ErrorVariable <String>] [-WarningVariable <String>] | |
7888 | + [-OutVariable <String>] [-OutBuffer <Int32>] | |
7889 | + | |
7890 | +DefaultParameterSet : Date | |
7891 | +OutputType : {System.TimeSpan} | |
7892 | +Name : New-TimeSpan | |
7893 | +CommandType : Cmdlet | |
7894 | +Visibility : Public | |
7895 | +ModuleName : Microsoft.PowerShell.Utility | |
7896 | +Module : | |
7897 | +Parameters : {[Start, System.Management.Automation.ParameterMetadata], | |
7898 | + [End, System.Management.Automation.ParameterMetadata], [ | |
7899 | + Days, System.Management.Automation.ParameterMetadata], [H | |
7900 | + ours, System.Management.Automation.ParameterMetadata]...} | |
7901 | +ParameterSets : {[[-Start] <DateTime>] [[-End] <DateTime>] [-Verbose] [-D | |
7902 | + ebug] [-ErrorAction <ActionPreference>] [-WarningAction < | |
7903 | + ActionPreference>] [-ErrorVariable <String>] [-WarningVar | |
7904 | + iable <String>] [-OutVariable <String>] [-OutBuffer <Int3 | |
7905 | + 2>], [-Days <Int32>] [-Hours <Int32>] [-Minutes <Int32>] | |
7906 | + [-Seconds <Int32>] [-Verbose] [-Debug] [-ErrorAction <Act | |
7907 | + ionPreference>] [-WarningAction <ActionPreference>] [-Err | |
7908 | + orVariable <String>] [-WarningVariable <String>] [-OutVar | |
7909 | + iable <String>] [-OutBuffer <Int32>]} | |
7910 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113360 | |
7911 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
7912 | + s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell. | |
7913 | + Commands.Utility.dll | |
7914 | + | |
7915 | + | |
7916 | +Verb : New | |
7917 | +Noun : Variable | |
7918 | +HelpFile : Microsoft.PowerShell.Commands.Utility.dll-Help.xml | |
7919 | +PSSnapIn : Microsoft.PowerShell.Utility | |
7920 | +ImplementingType : Microsoft.PowerShell.Commands.NewVariableCommand | |
7921 | +Definition : New-Variable [-Name] <String> [[-Value] <Object>] [-Descr | |
7922 | + iption <String>] [-Option <ScopedItemOptions>] [-Visibili | |
7923 | + ty <SessionStateEntryVisibility>] [-Force] [-PassThru] [- | |
7924 | + Scope <String>] [-Verbose] [-Debug] [-ErrorAction <Action | |
7925 | + Preference>] [-WarningAction <ActionPreference>] [-ErrorV | |
7926 | + ariable <String>] [-WarningVariable <String>] [-OutVariab | |
7927 | + le <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm] | |
7928 | + | |
7929 | +DefaultParameterSet : | |
7930 | +OutputType : {} | |
7931 | +Name : New-Variable | |
7932 | +CommandType : Cmdlet | |
7933 | +Visibility : Public | |
7934 | +ModuleName : Microsoft.PowerShell.Utility | |
7935 | +Module : | |
7936 | +Parameters : {[Name, System.Management.Automation.ParameterMetadata], | |
7937 | + [Value, System.Management.Automation.ParameterMetadata], | |
7938 | + [Description, System.Management.Automation.ParameterMetad | |
7939 | + ata], [Option, System.Management.Automation.ParameterMeta | |
7940 | + data]...} | |
7941 | +ParameterSets : {[-Name] <String> [[-Value] <Object>] [-Description <Stri | |
7942 | + ng>] [-Option <ScopedItemOptions>] [-Visibility <SessionS | |
7943 | + tateEntryVisibility>] [-Force] [-PassThru] [-Scope <Strin | |
7944 | + g>] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] | |
7945 | + [-WarningAction <ActionPreference>] [-ErrorVariable <Str | |
7946 | + ing>] [-WarningVariable <String>] [-OutVariable <String>] | |
7947 | + [-OutBuffer <Int32>] [-WhatIf] [-Confirm]} | |
7948 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113361 | |
7949 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
7950 | + s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell. | |
7951 | + Commands.Utility.dll | |
7952 | + | |
7953 | + | |
7954 | +Verb : New | |
7955 | +Noun : WebServiceProxy | |
7956 | +HelpFile : Microsoft.PowerShell.Commands.Management.dll-Help.xml | |
7957 | +PSSnapIn : Microsoft.PowerShell.Management | |
7958 | +ImplementingType : Microsoft.PowerShell.Commands.NewWebServiceProxy | |
7959 | +Definition : New-WebServiceProxy [-Uri] <Uri> [[-Class] <String>] [[-N | |
7960 | + amespace] <String>] [-Verbose] [-Debug] [-ErrorAction <Ac | |
7961 | + tionPreference>] [-WarningAction <ActionPreference>] [-Er | |
7962 | + rorVariable <String>] [-WarningVariable <String>] [-OutVa | |
7963 | + riable <String>] [-OutBuffer <Int32>] | |
7964 | + New-WebServiceProxy [-Uri] <Uri> [[-Class] <String>] [[-N | |
7965 | + amespace] <String>] [-Credential <PSCredential>] [-Verbos | |
7966 | + e] [-Debug] [-ErrorAction <ActionPreference>] [-WarningAc | |
7967 | + tion <ActionPreference>] [-ErrorVariable <String>] [-Warn | |
7968 | + ingVariable <String>] [-OutVariable <String>] [-OutBuffer | |
7969 | + <Int32>] | |
7970 | + New-WebServiceProxy [-Uri] <Uri> [[-Class] <String>] [[-N | |
7971 | + amespace] <String>] [-UseDefaultCredential] [-Verbose] [- | |
7972 | + Debug] [-ErrorAction <ActionPreference>] [-WarningAction | |
7973 | + <ActionPreference>] [-ErrorVariable <String>] [-WarningVa | |
7974 | + riable <String>] [-OutVariable <String>] [-OutBuffer <Int | |
7975 | + 32>] | |
7976 | + | |
7977 | +DefaultParameterSet : NoCredentials | |
7978 | +OutputType : {} | |
7979 | +Name : New-WebServiceProxy | |
7980 | +CommandType : Cmdlet | |
7981 | +Visibility : Public | |
7982 | +ModuleName : Microsoft.PowerShell.Management | |
7983 | +Module : | |
7984 | +Parameters : {[Uri, System.Management.Automation.ParameterMetadata], [ | |
7985 | + Class, System.Management.Automation.ParameterMetadata], [ | |
7986 | + Namespace, System.Management.Automation.ParameterMetadata | |
7987 | + ], [Credential, System.Management.Automation.ParameterMet | |
7988 | + adata]...} | |
7989 | +ParameterSets : {[-Uri] <Uri> [[-Class] <String>] [[-Namespace] <String>] | |
7990 | + [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [- | |
7991 | + WarningAction <ActionPreference>] [-ErrorVariable <String | |
7992 | + >] [-WarningVariable <String>] [-OutVariable <String>] [- | |
7993 | + OutBuffer <Int32>], [-Uri] <Uri> [[-Class] <String>] [[-N | |
7994 | + amespace] <String>] [-Credential <PSCredential>] [-Verbos | |
7995 | + e] [-Debug] [-ErrorAction <ActionPreference>] [-WarningAc | |
7996 | + tion <ActionPreference>] [-ErrorVariable <String>] [-Warn | |
7997 | + ingVariable <String>] [-OutVariable <String>] [-OutBuffer | |
7998 | + <Int32>], [-Uri] <Uri> [[-Class] <String>] [[-Namespace] | |
7999 | + <String>] [-UseDefaultCredential] [-Verbose] [-Debug] [- | |
8000 | + ErrorAction <ActionPreference>] [-WarningAction <ActionPr | |
8001 | + eference>] [-ErrorVariable <String>] [-WarningVariable <S | |
8002 | + tring>] [-OutVariable <String>] [-OutBuffer <Int32>]} | |
8003 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=135238 | |
8004 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
8005 | + s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe | |
8006 | + ll.Commands.Management.dll | |
8007 | + | |
8008 | + | |
8009 | +Verb : New | |
8010 | +Noun : WSManInstance | |
8011 | +HelpFile : Microsoft.WSMan.Management.dll-Help.xml | |
8012 | +PSSnapIn : Microsoft.WSMan.Management | |
8013 | +ImplementingType : Microsoft.WSMan.Management.NewWSManInstanceCommand | |
8014 | +Definition : New-WSManInstance [-ResourceURI] <Uri> [-SelectorSet] <Ha | |
8015 | + shtable> [-ApplicationName <String>] [-ComputerName <Stri | |
8016 | + ng>] [-FilePath <String>] [-OptionSet <Hashtable>] [-Port | |
8017 | + <Int32>] [-SessionOption <SessionOption>] [-UseSSL] [-Va | |
8018 | + lueSet <Hashtable>] [-Credential <PSCredential>] [-Authen | |
8019 | + tication <AuthenticationMechanism>] [-CertificateThumbpri | |
8020 | + nt <String>] [-Verbose] [-Debug] [-ErrorAction <ActionPre | |
8021 | + ference>] [-WarningAction <ActionPreference>] [-ErrorVari | |
8022 | + able <String>] [-WarningVariable <String>] [-OutVariable | |
8023 | + <String>] [-OutBuffer <Int32>] | |
8024 | + New-WSManInstance [-ResourceURI] <Uri> [-SelectorSet] <Ha | |
8025 | + shtable> [-ConnectionURI <Uri>] [-FilePath <String>] [-Op | |
8026 | + tionSet <Hashtable>] [-SessionOption <SessionOption>] [-V | |
8027 | + alueSet <Hashtable>] [-Credential <PSCredential>] [-Authe | |
8028 | + ntication <AuthenticationMechanism>] [-CertificateThumbpr | |
8029 | + int <String>] [-Verbose] [-Debug] [-ErrorAction <ActionPr | |
8030 | + eference>] [-WarningAction <ActionPreference>] [-ErrorVar | |
8031 | + iable <String>] [-WarningVariable <String>] [-OutVariable | |
8032 | + <String>] [-OutBuffer <Int32>] | |
8033 | + | |
8034 | +DefaultParameterSet : ComputerName | |
8035 | +OutputType : {} | |
8036 | +Name : New-WSManInstance | |
8037 | +CommandType : Cmdlet | |
8038 | +Visibility : Public | |
8039 | +ModuleName : Microsoft.WSMan.Management | |
8040 | +Module : | |
8041 | +Parameters : {[ApplicationName, System.Management.Automation.Parameter | |
8042 | + Metadata], [ComputerName, System.Management.Automation.Pa | |
8043 | + rameterMetadata], [ConnectionURI, System.Management.Autom | |
8044 | + ation.ParameterMetadata], [FilePath, System.Management.Au | |
8045 | + tomation.ParameterMetadata]...} | |
8046 | +ParameterSets : {[-ResourceURI] <Uri> [-SelectorSet] <Hashtable> [-Applic | |
8047 | + ationName <String>] [-ComputerName <String>] [-FilePath < | |
8048 | + String>] [-OptionSet <Hashtable>] [-Port <Int32>] [-Sessi | |
8049 | + onOption <SessionOption>] [-UseSSL] [-ValueSet <Hashtable | |
8050 | + >] [-Credential <PSCredential>] [-Authentication <Authent | |
8051 | + icationMechanism>] [-CertificateThumbprint <String>] [-Ve | |
8052 | + rbose] [-Debug] [-ErrorAction <ActionPreference>] [-Warni | |
8053 | + ngAction <ActionPreference>] [-ErrorVariable <String>] [- | |
8054 | + WarningVariable <String>] [-OutVariable <String>] [-OutBu | |
8055 | + ffer <Int32>], [-ResourceURI] <Uri> [-SelectorSet] <Hasht | |
8056 | + able> [-ConnectionURI <Uri>] [-FilePath <String>] [-Optio | |
8057 | + nSet <Hashtable>] [-SessionOption <SessionOption>] [-Valu | |
8058 | + eSet <Hashtable>] [-Credential <PSCredential>] [-Authenti | |
8059 | + cation <AuthenticationMechanism>] [-CertificateThumbprint | |
8060 | + <String>] [-Verbose] [-Debug] [-ErrorAction <ActionPrefe | |
8061 | + rence>] [-WarningAction <ActionPreference>] [-ErrorVariab | |
8062 | + le <String>] [-WarningVariable <String>] [-OutVariable <S | |
8063 | + tring>] [-OutBuffer <Int32>]} | |
8064 | +HelpUri : http://go.microsoft.com/fwlink/?LinkId=141448 | |
8065 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.WSMan.Management\1 | |
8066 | + .0.0.0__31bf3856ad364e35\Microsoft.WSMan.Management.dll | |
8067 | + | |
8068 | + | |
8069 | +Verb : New | |
8070 | +Noun : WSManSessionOption | |
8071 | +HelpFile : Microsoft.WSMan.Management.dll-Help.xml | |
8072 | +PSSnapIn : Microsoft.WSMan.Management | |
8073 | +ImplementingType : Microsoft.WSMan.Management.NewWSManSessionOptionCommand | |
8074 | +Definition : New-WSManSessionOption [-ProxyAccessType <ProxyAccessType | |
8075 | + >] [-ProxyAuthentication <ProxyAuthentication>] [-ProxyCr | |
8076 | + edential <PSCredential>] [-SkipCACheck] [-SkipCNCheck] [- | |
8077 | + SkipRevocationCheck] [-SPNPort <Int32>] [-OperationTimeou | |
8078 | + t <Int32>] [-NoEncryption] [-UseUTF16] [-Verbose] [-Debug | |
8079 | + ] [-ErrorAction <ActionPreference>] [-WarningAction <Acti | |
8080 | + onPreference>] [-ErrorVariable <String>] [-WarningVariabl | |
8081 | + e <String>] [-OutVariable <String>] [-OutBuffer <Int32>] | |
8082 | + | |
8083 | +DefaultParameterSet : | |
8084 | +OutputType : {} | |
8085 | +Name : New-WSManSessionOption | |
8086 | +CommandType : Cmdlet | |
8087 | +Visibility : Public | |
8088 | +ModuleName : Microsoft.WSMan.Management | |
8089 | +Module : | |
8090 | +Parameters : {[ProxyAccessType, System.Management.Automation.Parameter | |
8091 | + Metadata], [ProxyAuthentication, System.Management.Automa | |
8092 | + tion.ParameterMetadata], [ProxyCredential, System.Managem | |
8093 | + ent.Automation.ParameterMetadata], [SkipCACheck, System.M | |
8094 | + anagement.Automation.ParameterMetadata]...} | |
8095 | +ParameterSets : {[-ProxyAccessType <ProxyAccessType>] [-ProxyAuthenticati | |
8096 | + on <ProxyAuthentication>] [-ProxyCredential <PSCredential | |
8097 | + >] [-SkipCACheck] [-SkipCNCheck] [-SkipRevocationCheck] [ | |
8098 | + -SPNPort <Int32>] [-OperationTimeout <Int32>] [-NoEncrypt | |
8099 | + ion] [-UseUTF16] [-Verbose] [-Debug] [-ErrorAction <Actio | |
8100 | + nPreference>] [-WarningAction <ActionPreference>] [-Error | |
8101 | + Variable <String>] [-WarningVariable <String>] [-OutVaria | |
8102 | + ble <String>] [-OutBuffer <Int32>]} | |
8103 | +HelpUri : http://go.microsoft.com/fwlink/?LinkId=141449 | |
8104 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.WSMan.Management\1 | |
8105 | + .0.0.0__31bf3856ad364e35\Microsoft.WSMan.Management.dll | |
8106 | + | |
8107 | +Name : ni | |
8108 | +CommandType : Alias | |
8109 | +Definition : New-Item | |
8110 | +ReferencedCommand : New-Item | |
8111 | +ResolvedCommand : New-Item | |
8112 | + | |
8113 | +Name : nmo | |
8114 | +CommandType : Alias | |
8115 | +Definition : New-Module | |
8116 | +ReferencedCommand : New-Module | |
8117 | +ResolvedCommand : New-Module | |
8118 | + | |
8119 | +Name : nsn | |
8120 | +CommandType : Alias | |
8121 | +Definition : New-PSSession | |
8122 | +ReferencedCommand : New-PSSession | |
8123 | +ResolvedCommand : New-PSSession | |
8124 | + | |
8125 | +Name : nv | |
8126 | +CommandType : Alias | |
8127 | +Definition : New-Variable | |
8128 | +ReferencedCommand : New-Variable | |
8129 | +ResolvedCommand : New-Variable | |
8130 | + | |
8131 | + | |
8132 | +ScriptBlock : Set-Location O: | |
8133 | +CmdletBinding : False | |
8134 | +DefaultParameterSet : | |
8135 | +Definition : Set-Location O: | |
8136 | +Options : None | |
8137 | +Description : | |
8138 | +OutputType : {} | |
8139 | +Name : O: | |
8140 | +CommandType : Function | |
8141 | +Visibility : Public | |
8142 | +ModuleName : | |
8143 | +Module : | |
8144 | +Parameters : {} | |
8145 | +ParameterSets : {} | |
8146 | +HelpUri : | |
8147 | + | |
8148 | +Name : ogv | |
8149 | +CommandType : Alias | |
8150 | +Definition : Out-GridView | |
8151 | +ReferencedCommand : Out-GridView | |
8152 | +ResolvedCommand : Out-GridView | |
8153 | + | |
8154 | +Name : oh | |
8155 | +CommandType : Alias | |
8156 | +Definition : Out-Host | |
8157 | +ReferencedCommand : Out-Host | |
8158 | +ResolvedCommand : Out-Host | |
8159 | + | |
8160 | + | |
8161 | +Verb : Out | |
8162 | +Noun : Default | |
8163 | +HelpFile : Microsoft.PowerShell.Commands.Utility.dll-Help.xml | |
8164 | +PSSnapIn : Microsoft.PowerShell.Utility | |
8165 | +ImplementingType : Microsoft.PowerShell.Commands.OutDefaultCommand | |
8166 | +Definition : Out-Default [-InputObject <PSObject>] [-Verbose] [-Debug] | |
8167 | + [-ErrorAction <ActionPreference>] [-WarningAction <Actio | |
8168 | + nPreference>] [-ErrorVariable <String>] [-WarningVariable | |
8169 | + <String>] [-OutVariable <String>] [-OutBuffer <Int32>] | |
8170 | + | |
8171 | +DefaultParameterSet : | |
8172 | +OutputType : {} | |
8173 | +Name : Out-Default | |
8174 | +CommandType : Cmdlet | |
8175 | +Visibility : Public | |
8176 | +ModuleName : Microsoft.PowerShell.Utility | |
8177 | +Module : | |
8178 | +Parameters : {[InputObject, System.Management.Automation.ParameterMeta | |
8179 | + data], [Verbose, System.Management.Automation.ParameterMe | |
8180 | + tadata], [Debug, System.Management.Automation.ParameterMe | |
8181 | + tadata], [ErrorAction, System.Management.Automation.Param | |
8182 | + eterMetadata]...} | |
8183 | +ParameterSets : {[-InputObject <PSObject>] [-Verbose] [-Debug] [-ErrorAct | |
8184 | + ion <ActionPreference>] [-WarningAction <ActionPreference | |
8185 | + >] [-ErrorVariable <String>] [-WarningVariable <String>] | |
8186 | + [-OutVariable <String>] [-OutBuffer <Int32>]} | |
8187 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113362 | |
8188 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
8189 | + s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell. | |
8190 | + Commands.Utility.dll | |
8191 | + | |
8192 | + | |
8193 | +Verb : Out | |
8194 | +Noun : File | |
8195 | +HelpFile : Microsoft.PowerShell.Commands.Utility.dll-Help.xml | |
8196 | +PSSnapIn : Microsoft.PowerShell.Utility | |
8197 | +ImplementingType : Microsoft.PowerShell.Commands.OutFileCommand | |
8198 | +Definition : Out-File [-FilePath] <String> [[-Encoding] <String>] [-Ap | |
8199 | + pend] [-Force] [-NoClobber] [-Width <Int32>] [-InputObjec | |
8200 | + t <PSObject>] [-Verbose] [-Debug] [-ErrorAction <ActionPr | |
8201 | + eference>] [-WarningAction <ActionPreference>] [-ErrorVar | |
8202 | + iable <String>] [-WarningVariable <String>] [-OutVariable | |
8203 | + <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm] | |
8204 | + | |
8205 | +DefaultParameterSet : | |
8206 | +OutputType : {} | |
8207 | +Name : Out-File | |
8208 | +CommandType : Cmdlet | |
8209 | +Visibility : Public | |
8210 | +ModuleName : Microsoft.PowerShell.Utility | |
8211 | +Module : | |
8212 | +Parameters : {[FilePath, System.Management.Automation.ParameterMetadat | |
8213 | + a], [Encoding, System.Management.Automation.ParameterMeta | |
8214 | + data], [Append, System.Management.Automation.ParameterMet | |
8215 | + adata], [Force, System.Management.Automation.ParameterMet | |
8216 | + adata]...} | |
8217 | +ParameterSets : {[-FilePath] <String> [[-Encoding] <String>] [-Append] [- | |
8218 | + Force] [-NoClobber] [-Width <Int32>] [-InputObject <PSObj | |
8219 | + ect>] [-Verbose] [-Debug] [-ErrorAction <ActionPreference | |
8220 | + >] [-WarningAction <ActionPreference>] [-ErrorVariable <S | |
8221 | + tring>] [-WarningVariable <String>] [-OutVariable <String | |
8222 | + >] [-OutBuffer <Int32>] [-WhatIf] [-Confirm]} | |
8223 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113363 | |
8224 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
8225 | + s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell. | |
8226 | + Commands.Utility.dll | |
8227 | + | |
8228 | + | |
8229 | +Verb : Out | |
8230 | +Noun : GridView | |
8231 | +HelpFile : Microsoft.PowerShell.Commands.Utility.dll-Help.xml | |
8232 | +PSSnapIn : Microsoft.PowerShell.Utility | |
8233 | +ImplementingType : Microsoft.PowerShell.Commands.OutGridViewCommand | |
8234 | +Definition : Out-GridView [-InputObject <PSObject>] [-Title <String>] | |
8235 | + [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-W | |
8236 | + arningAction <ActionPreference>] [-ErrorVariable <String> | |
8237 | + ] [-WarningVariable <String>] [-OutVariable <String>] [-O | |
8238 | + utBuffer <Int32>] | |
8239 | + | |
8240 | +DefaultParameterSet : | |
8241 | +OutputType : {} | |
8242 | +Name : Out-GridView | |
8243 | +CommandType : Cmdlet | |
8244 | +Visibility : Public | |
8245 | +ModuleName : Microsoft.PowerShell.Utility | |
8246 | +Module : | |
8247 | +Parameters : {[InputObject, System.Management.Automation.ParameterMeta | |
8248 | + data], [Title, System.Management.Automation.ParameterMeta | |
8249 | + data], [Verbose, System.Management.Automation.ParameterMe | |
8250 | + tadata], [Debug, System.Management.Automation.ParameterMe | |
8251 | + tadata]...} | |
8252 | +ParameterSets : {[-InputObject <PSObject>] [-Title <String>] [-Verbose] [ | |
8253 | + -Debug] [-ErrorAction <ActionPreference>] [-WarningAction | |
8254 | + <ActionPreference>] [-ErrorVariable <String>] [-WarningV | |
8255 | + ariable <String>] [-OutVariable <String>] [-OutBuffer <In | |
8256 | + t32>]} | |
8257 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113364 | |
8258 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
8259 | + s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell. | |
8260 | + Commands.Utility.dll | |
8261 | + | |
8262 | + | |
8263 | +Verb : Out | |
8264 | +Noun : Host | |
8265 | +HelpFile : Microsoft.PowerShell.Commands.Utility.dll-Help.xml | |
8266 | +PSSnapIn : Microsoft.PowerShell.Utility | |
8267 | +ImplementingType : Microsoft.PowerShell.Commands.OutHostCommand | |
8268 | +Definition : Out-Host [-Paging] [-InputObject <PSObject>] [-Verbose] [ | |
8269 | + -Debug] [-ErrorAction <ActionPreference>] [-WarningAction | |
8270 | + <ActionPreference>] [-ErrorVariable <String>] [-WarningV | |
8271 | + ariable <String>] [-OutVariable <String>] [-OutBuffer <In | |
8272 | + t32>] | |
8273 | + | |
8274 | +DefaultParameterSet : | |
8275 | +OutputType : {} | |
8276 | +Name : Out-Host | |
8277 | +CommandType : Cmdlet | |
8278 | +Visibility : Public | |
8279 | +ModuleName : Microsoft.PowerShell.Utility | |
8280 | +Module : | |
8281 | +Parameters : {[Paging, System.Management.Automation.ParameterMetadata] | |
8282 | + , [InputObject, System.Management.Automation.ParameterMet | |
8283 | + adata], [Verbose, System.Management.Automation.ParameterM | |
8284 | + etadata], [Debug, System.Management.Automation.ParameterM | |
8285 | + etadata]...} | |
8286 | +ParameterSets : {[-Paging] [-InputObject <PSObject>] [-Verbose] [-Debug] | |
8287 | + [-ErrorAction <ActionPreference>] [-WarningAction <Action | |
8288 | + Preference>] [-ErrorVariable <String>] [-WarningVariable | |
8289 | + <String>] [-OutVariable <String>] [-OutBuffer <Int32>]} | |
8290 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113365 | |
8291 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
8292 | + s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell. | |
8293 | + Commands.Utility.dll | |
8294 | + | |
8295 | + | |
8296 | +Verb : Out | |
8297 | +Noun : Null | |
8298 | +HelpFile : Microsoft.PowerShell.Commands.Utility.dll-Help.xml | |
8299 | +PSSnapIn : Microsoft.PowerShell.Utility | |
8300 | +ImplementingType : Microsoft.PowerShell.Commands.OutNullCommand | |
8301 | +Definition : Out-Null [-InputObject <PSObject>] [-Verbose] [-Debug] [- | |
8302 | + ErrorAction <ActionPreference>] [-WarningAction <ActionPr | |
8303 | + eference>] [-ErrorVariable <String>] [-WarningVariable <S | |
8304 | + tring>] [-OutVariable <String>] [-OutBuffer <Int32>] | |
8305 | + | |
8306 | +DefaultParameterSet : | |
8307 | +OutputType : {} | |
8308 | +Name : Out-Null | |
8309 | +CommandType : Cmdlet | |
8310 | +Visibility : Public | |
8311 | +ModuleName : Microsoft.PowerShell.Utility | |
8312 | +Module : | |
8313 | +Parameters : {[InputObject, System.Management.Automation.ParameterMeta | |
8314 | + data], [Verbose, System.Management.Automation.ParameterMe | |
8315 | + tadata], [Debug, System.Management.Automation.ParameterMe | |
8316 | + tadata], [ErrorAction, System.Management.Automation.Param | |
8317 | + eterMetadata]...} | |
8318 | +ParameterSets : {[-InputObject <PSObject>] [-Verbose] [-Debug] [-ErrorAct | |
8319 | + ion <ActionPreference>] [-WarningAction <ActionPreference | |
8320 | + >] [-ErrorVariable <String>] [-WarningVariable <String>] | |
8321 | + [-OutVariable <String>] [-OutBuffer <Int32>]} | |
8322 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113366 | |
8323 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
8324 | + s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell. | |
8325 | + Commands.Utility.dll | |
8326 | + | |
8327 | + | |
8328 | +Verb : Out | |
8329 | +Noun : Printer | |
8330 | +HelpFile : Microsoft.PowerShell.Commands.Utility.dll-Help.xml | |
8331 | +PSSnapIn : Microsoft.PowerShell.Utility | |
8332 | +ImplementingType : Microsoft.PowerShell.Commands.OutPrinterCommand | |
8333 | +Definition : Out-Printer [[-Name] <String>] [-InputObject <PSObject>] | |
8334 | + [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-W | |
8335 | + arningAction <ActionPreference>] [-ErrorVariable <String> | |
8336 | + ] [-WarningVariable <String>] [-OutVariable <String>] [-O | |
8337 | + utBuffer <Int32>] | |
8338 | + | |
8339 | +DefaultParameterSet : | |
8340 | +OutputType : {} | |
8341 | +Name : Out-Printer | |
8342 | +CommandType : Cmdlet | |
8343 | +Visibility : Public | |
8344 | +ModuleName : Microsoft.PowerShell.Utility | |
8345 | +Module : | |
8346 | +Parameters : {[Name, System.Management.Automation.ParameterMetadata], | |
8347 | + [InputObject, System.Management.Automation.ParameterMetad | |
8348 | + ata], [Verbose, System.Management.Automation.ParameterMet | |
8349 | + adata], [Debug, System.Management.Automation.ParameterMet | |
8350 | + adata]...} | |
8351 | +ParameterSets : {[[-Name] <String>] [-InputObject <PSObject>] [-Verbose] | |
8352 | + [-Debug] [-ErrorAction <ActionPreference>] [-WarningActio | |
8353 | + n <ActionPreference>] [-ErrorVariable <String>] [-Warning | |
8354 | + Variable <String>] [-OutVariable <String>] [-OutBuffer <I | |
8355 | + nt32>]} | |
8356 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113367 | |
8357 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
8358 | + s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell. | |
8359 | + Commands.Utility.dll | |
8360 | + | |
8361 | + | |
8362 | +Verb : Out | |
8363 | +Noun : String | |
8364 | +HelpFile : Microsoft.PowerShell.Commands.Utility.dll-Help.xml | |
8365 | +PSSnapIn : Microsoft.PowerShell.Utility | |
8366 | +ImplementingType : Microsoft.PowerShell.Commands.OutStringCommand | |
8367 | +Definition : Out-String [-Stream] [-Width <Int32>] [-InputObject <PSOb | |
8368 | + ject>] [-Verbose] [-Debug] [-ErrorAction <ActionPreferenc | |
8369 | + e>] [-WarningAction <ActionPreference>] [-ErrorVariable < | |
8370 | + String>] [-WarningVariable <String>] [-OutVariable <Strin | |
8371 | + g>] [-OutBuffer <Int32>] | |
8372 | + | |
8373 | +DefaultParameterSet : | |
8374 | +OutputType : {System.String} | |
8375 | +Name : Out-String | |
8376 | +CommandType : Cmdlet | |
8377 | +Visibility : Public | |
8378 | +ModuleName : Microsoft.PowerShell.Utility | |
8379 | +Module : | |
8380 | +Parameters : {[Stream, System.Management.Automation.ParameterMetadata] | |
8381 | + , [Width, System.Management.Automation.ParameterMetadata] | |
8382 | + , [InputObject, System.Management.Automation.ParameterMet | |
8383 | + adata], [Verbose, System.Management.Automation.ParameterM | |
8384 | + etadata]...} | |
8385 | +ParameterSets : {[-Stream] [-Width <Int32>] [-InputObject <PSObject>] [-V | |
8386 | + erbose] [-Debug] [-ErrorAction <ActionPreference>] [-Warn | |
8387 | + ingAction <ActionPreference>] [-ErrorVariable <String>] [ | |
8388 | + -WarningVariable <String>] [-OutVariable <String>] [-OutB | |
8389 | + uffer <Int32>]} | |
8390 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113368 | |
8391 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
8392 | + s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell. | |
8393 | + Commands.Utility.dll | |
8394 | + | |
8395 | + | |
8396 | +ScriptBlock : Set-Location P: | |
8397 | +CmdletBinding : False | |
8398 | +DefaultParameterSet : | |
8399 | +Definition : Set-Location P: | |
8400 | +Options : None | |
8401 | +Description : | |
8402 | +OutputType : {} | |
8403 | +Name : P: | |
8404 | +CommandType : Function | |
8405 | +Visibility : Public | |
8406 | +ModuleName : | |
8407 | +Module : | |
8408 | +Parameters : {} | |
8409 | +ParameterSets : {} | |
8410 | +HelpUri : | |
8411 | + | |
8412 | +Name : popd | |
8413 | +CommandType : Alias | |
8414 | +Definition : Pop-Location | |
8415 | +ReferencedCommand : Pop-Location | |
8416 | +ResolvedCommand : Pop-Location | |
8417 | + | |
8418 | + | |
8419 | +Verb : Pop | |
8420 | +Noun : Location | |
8421 | +HelpFile : Microsoft.PowerShell.Commands.Management.dll-Help.xml | |
8422 | +PSSnapIn : Microsoft.PowerShell.Management | |
8423 | +ImplementingType : Microsoft.PowerShell.Commands.PopLocationCommand | |
8424 | +Definition : Pop-Location [-PassThru] [-StackName <String>] [-Verbose] | |
8425 | + [-Debug] [-ErrorAction <ActionPreference>] [-WarningActi | |
8426 | + on <ActionPreference>] [-ErrorVariable <String>] [-Warnin | |
8427 | + gVariable <String>] [-OutVariable <String>] [-OutBuffer < | |
8428 | + Int32>] [-UseTransaction] | |
8429 | + | |
8430 | +DefaultParameterSet : | |
8431 | +OutputType : {} | |
8432 | +Name : Pop-Location | |
8433 | +CommandType : Cmdlet | |
8434 | +Visibility : Public | |
8435 | +ModuleName : Microsoft.PowerShell.Management | |
8436 | +Module : | |
8437 | +Parameters : {[PassThru, System.Management.Automation.ParameterMetadat | |
8438 | + a], [StackName, System.Management.Automation.ParameterMet | |
8439 | + adata], [Verbose, System.Management.Automation.ParameterM | |
8440 | + etadata], [Debug, System.Management.Automation.ParameterM | |
8441 | + etadata]...} | |
8442 | +ParameterSets : {[-PassThru] [-StackName <String>] [-Verbose] [-Debug] [- | |
8443 | + ErrorAction <ActionPreference>] [-WarningAction <ActionPr | |
8444 | + eference>] [-ErrorVariable <String>] [-WarningVariable <S | |
8445 | + tring>] [-OutVariable <String>] [-OutBuffer <Int32>] [-Us | |
8446 | + eTransaction]} | |
8447 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113369 | |
8448 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
8449 | + s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe | |
8450 | + ll.Commands.Management.dll | |
8451 | + | |
8452 | + | |
8453 | +ScriptBlock : $(if (test-path variable:/PSDebugContext) { '[DBG]: ' } e | |
8454 | + lse { '' }) + 'PS ' + $(Get-Location) + $(if ($nestedprom | |
8455 | + ptlevel -ge 1) { '>>' }) + '> ' | |
8456 | +CmdletBinding : False | |
8457 | +DefaultParameterSet : | |
8458 | +Definition : $(if (test-path variable:/PSDebugContext) { '[DBG]: ' } e | |
8459 | + lse { '' }) + 'PS ' + $(Get-Location) + $(if ($nestedprom | |
8460 | + ptlevel -ge 1) { '>>' }) + '> ' | |
8461 | +Options : None | |
8462 | +Description : | |
8463 | +OutputType : {} | |
8464 | +Name : prompt | |
8465 | +CommandType : Function | |
8466 | +Visibility : Public | |
8467 | +ModuleName : | |
8468 | +Module : | |
8469 | +Parameters : {} | |
8470 | +ParameterSets : {} | |
8471 | +HelpUri : | |
8472 | + | |
8473 | +Name : ps | |
8474 | +CommandType : Alias | |
8475 | +Definition : Get-Process | |
8476 | +ReferencedCommand : Get-Process | |
8477 | +ResolvedCommand : Get-Process | |
8478 | + | |
8479 | +Name : pushd | |
8480 | +CommandType : Alias | |
8481 | +Definition : Push-Location | |
8482 | +ReferencedCommand : Push-Location | |
8483 | +ResolvedCommand : Push-Location | |
8484 | + | |
8485 | + | |
8486 | +Verb : Push | |
8487 | +Noun : Location | |
8488 | +HelpFile : Microsoft.PowerShell.Commands.Management.dll-Help.xml | |
8489 | +PSSnapIn : Microsoft.PowerShell.Management | |
8490 | +ImplementingType : Microsoft.PowerShell.Commands.PushLocationCommand | |
8491 | +Definition : Push-Location [[-Path] <String>] [-PassThru] [-StackName | |
8492 | + <String>] [-Verbose] [-Debug] [-ErrorAction <ActionPrefer | |
8493 | + ence>] [-WarningAction <ActionPreference>] [-ErrorVariabl | |
8494 | + e <String>] [-WarningVariable <String>] [-OutVariable <St | |
8495 | + ring>] [-OutBuffer <Int32>] [-UseTransaction] | |
8496 | + Push-Location [[-LiteralPath] <String>] [-PassThru] [-Sta | |
8497 | + ckName <String>] [-Verbose] [-Debug] [-ErrorAction <Actio | |
8498 | + nPreference>] [-WarningAction <ActionPreference>] [-Error | |
8499 | + Variable <String>] [-WarningVariable <String>] [-OutVaria | |
8500 | + ble <String>] [-OutBuffer <Int32>] [-UseTransaction] | |
8501 | + | |
8502 | +DefaultParameterSet : Path | |
8503 | +OutputType : {} | |
8504 | +Name : Push-Location | |
8505 | +CommandType : Cmdlet | |
8506 | +Visibility : Public | |
8507 | +ModuleName : Microsoft.PowerShell.Management | |
8508 | +Module : | |
8509 | +Parameters : {[Path, System.Management.Automation.ParameterMetadata], | |
8510 | + [LiteralPath, System.Management.Automation.ParameterMetad | |
8511 | + ata], [PassThru, System.Management.Automation.ParameterMe | |
8512 | + tadata], [StackName, System.Management.Automation.Paramet | |
8513 | + erMetadata]...} | |
8514 | +ParameterSets : {[[-Path] <String>] [-PassThru] [-StackName <String>] [-V | |
8515 | + erbose] [-Debug] [-ErrorAction <ActionPreference>] [-Warn | |
8516 | + ingAction <ActionPreference>] [-ErrorVariable <String>] [ | |
8517 | + -WarningVariable <String>] [-OutVariable <String>] [-OutB | |
8518 | + uffer <Int32>] [-UseTransaction], [[-LiteralPath] <String | |
8519 | + >] [-PassThru] [-StackName <String>] [-Verbose] [-Debug] | |
8520 | + [-ErrorAction <ActionPreference>] [-WarningAction <Action | |
8521 | + Preference>] [-ErrorVariable <String>] [-WarningVariable | |
8522 | + <String>] [-OutVariable <String>] [-OutBuffer <Int32>] [- | |
8523 | + UseTransaction]} | |
8524 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113370 | |
8525 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
8526 | + s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe | |
8527 | + ll.Commands.Management.dll | |
8528 | + | |
8529 | +Name : pwd | |
8530 | +CommandType : Alias | |
8531 | +Definition : Get-Location | |
8532 | +ReferencedCommand : Get-Location | |
8533 | +ResolvedCommand : Get-Location | |
8534 | + | |
8535 | + | |
8536 | +ScriptBlock : Set-Location Q: | |
8537 | +CmdletBinding : False | |
8538 | +DefaultParameterSet : | |
8539 | +Definition : Set-Location Q: | |
8540 | +Options : None | |
8541 | +Description : | |
8542 | +OutputType : {} | |
8543 | +Name : Q: | |
8544 | +CommandType : Function | |
8545 | +Visibility : Public | |
8546 | +ModuleName : | |
8547 | +Module : | |
8548 | +Parameters : {} | |
8549 | +ParameterSets : {} | |
8550 | +HelpUri : | |
8551 | + | |
8552 | +Name : r | |
8553 | +CommandType : Alias | |
8554 | +Definition : Invoke-History | |
8555 | +ReferencedCommand : Invoke-History | |
8556 | +ResolvedCommand : Invoke-History | |
8557 | + | |
8558 | + | |
8559 | +ScriptBlock : Set-Location R: | |
8560 | +CmdletBinding : False | |
8561 | +DefaultParameterSet : | |
8562 | +Definition : Set-Location R: | |
8563 | +Options : None | |
8564 | +Description : | |
8565 | +OutputType : {} | |
8566 | +Name : R: | |
8567 | +CommandType : Function | |
8568 | +Visibility : Public | |
8569 | +ModuleName : | |
8570 | +Module : | |
8571 | +Parameters : {} | |
8572 | +ParameterSets : {} | |
8573 | +HelpUri : | |
8574 | + | |
8575 | +Name : rbp | |
8576 | +CommandType : Alias | |
8577 | +Definition : Remove-PSBreakpoint | |
8578 | +ReferencedCommand : Remove-PSBreakpoint | |
8579 | +ResolvedCommand : Remove-PSBreakpoint | |
8580 | + | |
8581 | +Name : rcjb | |
8582 | +CommandType : Alias | |
8583 | +Definition : Receive-Job | |
8584 | +ReferencedCommand : Receive-Job | |
8585 | +ResolvedCommand : Receive-Job | |
8586 | + | |
8587 | +Name : rd | |
8588 | +CommandType : Alias | |
8589 | +Definition : Remove-Item | |
8590 | +ReferencedCommand : Remove-Item | |
8591 | +ResolvedCommand : Remove-Item | |
8592 | + | |
8593 | +Name : rdr | |
8594 | +CommandType : Alias | |
8595 | +Definition : Remove-PSDrive | |
8596 | +ReferencedCommand : Remove-PSDrive | |
8597 | +ResolvedCommand : Remove-PSDrive | |
8598 | + | |
8599 | + | |
8600 | +Verb : Read | |
8601 | +Noun : Host | |
8602 | +HelpFile : Microsoft.PowerShell.Commands.Utility.dll-Help.xml | |
8603 | +PSSnapIn : Microsoft.PowerShell.Utility | |
8604 | +ImplementingType : Microsoft.PowerShell.Commands.ReadHostCommand | |
8605 | +Definition : Read-Host [[-Prompt] <Object>] [-AsSecureString] [-Verbos | |
8606 | + e] [-Debug] [-ErrorAction <ActionPreference>] [-WarningAc | |
8607 | + tion <ActionPreference>] [-ErrorVariable <String>] [-Warn | |
8608 | + ingVariable <String>] [-OutVariable <String>] [-OutBuffer | |
8609 | + <Int32>] | |
8610 | + | |
8611 | +DefaultParameterSet : | |
8612 | +OutputType : {} | |
8613 | +Name : Read-Host | |
8614 | +CommandType : Cmdlet | |
8615 | +Visibility : Public | |
8616 | +ModuleName : Microsoft.PowerShell.Utility | |
8617 | +Module : | |
8618 | +Parameters : {[Prompt, System.Management.Automation.ParameterMetadata] | |
8619 | + , [AsSecureString, System.Management.Automation.Parameter | |
8620 | + Metadata], [Verbose, System.Management.Automation.Paramet | |
8621 | + erMetadata], [Debug, System.Management.Automation.Paramet | |
8622 | + erMetadata]...} | |
8623 | +ParameterSets : {[[-Prompt] <Object>] [-AsSecureString] [-Verbose] [-Debu | |
8624 | + g] [-ErrorAction <ActionPreference>] [-WarningAction <Act | |
8625 | + ionPreference>] [-ErrorVariable <String>] [-WarningVariab | |
8626 | + le <String>] [-OutVariable <String>] [-OutBuffer <Int32>] | |
8627 | + } | |
8628 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113371 | |
8629 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
8630 | + s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell. | |
8631 | + Commands.Utility.dll | |
8632 | + | |
8633 | + | |
8634 | +Verb : Receive | |
8635 | +Noun : Job | |
8636 | +HelpFile : System.Management.Automation.dll-Help.xml | |
8637 | +PSSnapIn : Microsoft.PowerShell.Core | |
8638 | +ImplementingType : Microsoft.PowerShell.Commands.ReceiveJobCommand | |
8639 | +Definition : Receive-Job [-Job] <Job[]> [[-Location] <String[]>] [-Kee | |
8640 | + p] [-NoRecurse] [-Verbose] [-Debug] [-ErrorAction <Action | |
8641 | + Preference>] [-WarningAction <ActionPreference>] [-ErrorV | |
8642 | + ariable <String>] [-WarningVariable <String>] [-OutVariab | |
8643 | + le <String>] [-OutBuffer <Int32>] | |
8644 | + Receive-Job [-Job] <Job[]> [[-ComputerName] <String[]>] [ | |
8645 | + -Keep] [-NoRecurse] [-Verbose] [-Debug] [-ErrorAction <Ac | |
8646 | + tionPreference>] [-WarningAction <ActionPreference>] [-Er | |
8647 | + rorVariable <String>] [-WarningVariable <String>] [-OutVa | |
8648 | + riable <String>] [-OutBuffer <Int32>] | |
8649 | + Receive-Job [-Job] <Job[]> [[-Session] <PSSession[]>] [-K | |
8650 | + eep] [-NoRecurse] [-Verbose] [-Debug] [-ErrorAction <Acti | |
8651 | + onPreference>] [-WarningAction <ActionPreference>] [-Erro | |
8652 | + rVariable <String>] [-WarningVariable <String>] [-OutVari | |
8653 | + able <String>] [-OutBuffer <Int32>] | |
8654 | + Receive-Job [[-Name] <String[]>] [-Keep] [-NoRecurse] [-V | |
8655 | + erbose] [-Debug] [-ErrorAction <ActionPreference>] [-Warn | |
8656 | + ingAction <ActionPreference>] [-ErrorVariable <String>] [ | |
8657 | + -WarningVariable <String>] [-OutVariable <String>] [-OutB | |
8658 | + uffer <Int32>] | |
8659 | + Receive-Job [[-InstanceId] <Guid[]>] [-Keep] [-NoRecurse] | |
8660 | + [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [- | |
8661 | + WarningAction <ActionPreference>] [-ErrorVariable <String | |
8662 | + >] [-WarningVariable <String>] [-OutVariable <String>] [- | |
8663 | + OutBuffer <Int32>] | |
8664 | + Receive-Job [-Id] <Int32[]> [-Keep] [-NoRecurse] [-Verbos | |
8665 | + e] [-Debug] [-ErrorAction <ActionPreference>] [-WarningAc | |
8666 | + tion <ActionPreference>] [-ErrorVariable <String>] [-Warn | |
8667 | + ingVariable <String>] [-OutVariable <String>] [-OutBuffer | |
8668 | + <Int32>] | |
8669 | + | |
8670 | +DefaultParameterSet : Location | |
8671 | +OutputType : {} | |
8672 | +Name : Receive-Job | |
8673 | +CommandType : Cmdlet | |
8674 | +Visibility : Public | |
8675 | +ModuleName : Microsoft.PowerShell.Core | |
8676 | +Module : | |
8677 | +Parameters : {[Job, System.Management.Automation.ParameterMetadata], [ | |
8678 | + ComputerName, System.Management.Automation.ParameterMetad | |
8679 | + ata], [Location, System.Management.Automation.ParameterMe | |
8680 | + tadata], [Session, System.Management.Automation.Parameter | |
8681 | + Metadata]...} | |
8682 | +ParameterSets : {[-Job] <Job[]> [[-Location] <String[]>] [-Keep] [-NoRecu | |
8683 | + rse] [-Verbose] [-Debug] [-ErrorAction <ActionPreference> | |
8684 | + ] [-WarningAction <ActionPreference>] [-ErrorVariable <St | |
8685 | + ring>] [-WarningVariable <String>] [-OutVariable <String> | |
8686 | + ] [-OutBuffer <Int32>], [-Job] <Job[]> [[-ComputerName] < | |
8687 | + String[]>] [-Keep] [-NoRecurse] [-Verbose] [-Debug] [-Err | |
8688 | + orAction <ActionPreference>] [-WarningAction <ActionPrefe | |
8689 | + rence>] [-ErrorVariable <String>] [-WarningVariable <Stri | |
8690 | + ng>] [-OutVariable <String>] [-OutBuffer <Int32>], [-Job] | |
8691 | + <Job[]> [[-Session] <PSSession[]>] [-Keep] [-NoRecurse] | |
8692 | + [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [-W | |
8693 | + arningAction <ActionPreference>] [-ErrorVariable <String> | |
8694 | + ] [-WarningVariable <String>] [-OutVariable <String>] [-O | |
8695 | + utBuffer <Int32>], [[-Name] <String[]>] [-Keep] [-NoRecur | |
8696 | + se] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] | |
8697 | + [-WarningAction <ActionPreference>] [-ErrorVariable <Str | |
8698 | + ing>] [-WarningVariable <String>] [-OutVariable <String>] | |
8699 | + [-OutBuffer <Int32>]...} | |
8700 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113372 | |
8701 | +DLL : C:\Windows\assembly\GAC_MSIL\System.Management.Automation | |
8702 | + \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d | |
8703 | + ll | |
8704 | + | |
8705 | + | |
8706 | +Verb : Register | |
8707 | +Noun : EngineEvent | |
8708 | +HelpFile : Microsoft.PowerShell.Commands.Utility.dll-Help.xml | |
8709 | +PSSnapIn : Microsoft.PowerShell.Utility | |
8710 | +ImplementingType : Microsoft.PowerShell.Commands.RegisterEngineEventCommand | |
8711 | +Definition : Register-EngineEvent [-SourceIdentifier] <String> [[-Acti | |
8712 | + on] <ScriptBlock>] [-MessageData <PSObject>] [-SupportEve | |
8713 | + nt] [-Forward] [-Verbose] [-Debug] [-ErrorAction <ActionP | |
8714 | + reference>] [-WarningAction <ActionPreference>] [-ErrorVa | |
8715 | + riable <String>] [-WarningVariable <String>] [-OutVariabl | |
8716 | + e <String>] [-OutBuffer <Int32>] | |
8717 | + | |
8718 | +DefaultParameterSet : | |
8719 | +OutputType : {} | |
8720 | +Name : Register-EngineEvent | |
8721 | +CommandType : Cmdlet | |
8722 | +Visibility : Public | |
8723 | +ModuleName : Microsoft.PowerShell.Utility | |
8724 | +Module : | |
8725 | +Parameters : {[SourceIdentifier, System.Management.Automation.Paramete | |
8726 | + rMetadata], [Action, System.Management.Automation.Paramet | |
8727 | + erMetadata], [MessageData, System.Management.Automation.P | |
8728 | + arameterMetadata], [SupportEvent, System.Management.Autom | |
8729 | + ation.ParameterMetadata]...} | |
8730 | +ParameterSets : {[-SourceIdentifier] <String> [[-Action] <ScriptBlock>] [ | |
8731 | + -MessageData <PSObject>] [-SupportEvent] [-Forward] [-Ver | |
8732 | + bose] [-Debug] [-ErrorAction <ActionPreference>] [-Warnin | |
8733 | + gAction <ActionPreference>] [-ErrorVariable <String>] [-W | |
8734 | + arningVariable <String>] [-OutVariable <String>] [-OutBuf | |
8735 | + fer <Int32>]} | |
8736 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=135243 | |
8737 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
8738 | + s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell. | |
8739 | + Commands.Utility.dll | |
8740 | + | |
8741 | + | |
8742 | +Verb : Register | |
8743 | +Noun : ObjectEvent | |
8744 | +HelpFile : Microsoft.PowerShell.Commands.Utility.dll-Help.xml | |
8745 | +PSSnapIn : Microsoft.PowerShell.Utility | |
8746 | +ImplementingType : Microsoft.PowerShell.Commands.RegisterObjectEventCommand | |
8747 | +Definition : Register-ObjectEvent [-InputObject] <PSObject> [-EventNam | |
8748 | + e] <String> [[-SourceIdentifier] <String>] [[-Action] <Sc | |
8749 | + riptBlock>] [-MessageData <PSObject>] [-SupportEvent] [-F | |
8750 | + orward] [-Verbose] [-Debug] [-ErrorAction <ActionPreferen | |
8751 | + ce>] [-WarningAction <ActionPreference>] [-ErrorVariable | |
8752 | + <String>] [-WarningVariable <String>] [-OutVariable <Stri | |
8753 | + ng>] [-OutBuffer <Int32>] | |
8754 | + | |
8755 | +DefaultParameterSet : | |
8756 | +OutputType : {} | |
8757 | +Name : Register-ObjectEvent | |
8758 | +CommandType : Cmdlet | |
8759 | +Visibility : Public | |
8760 | +ModuleName : Microsoft.PowerShell.Utility | |
8761 | +Module : | |
8762 | +Parameters : {[InputObject, System.Management.Automation.ParameterMeta | |
8763 | + data], [EventName, System.Management.Automation.Parameter | |
8764 | + Metadata], [SourceIdentifier, System.Management.Automatio | |
8765 | + n.ParameterMetadata], [Action, System.Management.Automati | |
8766 | + on.ParameterMetadata]...} | |
8767 | +ParameterSets : {[-InputObject] <PSObject> [-EventName] <String> [[-Sourc | |
8768 | + eIdentifier] <String>] [[-Action] <ScriptBlock>] [-Messag | |
8769 | + eData <PSObject>] [-SupportEvent] [-Forward] [-Verbose] [ | |
8770 | + -Debug] [-ErrorAction <ActionPreference>] [-WarningAction | |
8771 | + <ActionPreference>] [-ErrorVariable <String>] [-WarningV | |
8772 | + ariable <String>] [-OutVariable <String>] [-OutBuffer <In | |
8773 | + t32>]} | |
8774 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=135244 | |
8775 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
8776 | + s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell. | |
8777 | + Commands.Utility.dll | |
8778 | + | |
8779 | + | |
8780 | +Verb : Register | |
8781 | +Noun : PSSessionConfiguration | |
8782 | +HelpFile : System.Management.Automation.dll-Help.xml | |
8783 | +PSSnapIn : Microsoft.PowerShell.Core | |
8784 | +ImplementingType : Microsoft.PowerShell.Commands.RegisterPSSessionConfigurat | |
8785 | + ionCommand | |
8786 | +Definition : Register-PSSessionConfiguration [-Name] <String> [-Proces | |
8787 | + sorArchitecture <String>] [-ApplicationBase <String>] [-T | |
8788 | + hreadApartmentState <ApartmentState>] [-ThreadOptions <PS | |
8789 | + ThreadOptions>] [-StartupScript <String>] [-MaximumReceiv | |
8790 | + edDataSizePerCommandMB <Nullable`1>] [-MaximumReceivedObj | |
8791 | + ectSizeMB <Nullable`1>] [-SecurityDescriptorSddl <String> | |
8792 | + ] [-ShowSecurityDescriptorUI] [-Force] [-NoServiceRestart | |
8793 | + ] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [ | |
8794 | + -WarningAction <ActionPreference>] [-ErrorVariable <Strin | |
8795 | + g>] [-WarningVariable <String>] [-OutVariable <String>] [ | |
8796 | + -OutBuffer <Int32>] [-WhatIf] [-Confirm] | |
8797 | + Register-PSSessionConfiguration [-Name] <String> [-Assemb | |
8798 | + lyName] <String> [-ConfigurationTypeName] <String> [-Proc | |
8799 | + essorArchitecture <String>] [-ApplicationBase <String>] [ | |
8800 | + -ThreadApartmentState <ApartmentState>] [-ThreadOptions < | |
8801 | + PSThreadOptions>] [-StartupScript <String>] [-MaximumRece | |
8802 | + ivedDataSizePerCommandMB <Nullable`1>] [-MaximumReceivedO | |
8803 | + bjectSizeMB <Nullable`1>] [-SecurityDescriptorSddl <Strin | |
8804 | + g>] [-ShowSecurityDescriptorUI] [-Force] [-NoServiceResta | |
8805 | + rt] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] | |
8806 | + [-WarningAction <ActionPreference>] [-ErrorVariable <Str | |
8807 | + ing>] [-WarningVariable <String>] [-OutVariable <String>] | |
8808 | + [-OutBuffer <Int32>] [-WhatIf] [-Confirm] | |
8809 | + | |
8810 | +DefaultParameterSet : __AllParameterSets | |
8811 | +OutputType : {} | |
8812 | +Name : Register-PSSessionConfiguration | |
8813 | +CommandType : Cmdlet | |
8814 | +Visibility : Public | |
8815 | +ModuleName : Microsoft.PowerShell.Core | |
8816 | +Module : | |
8817 | +Parameters : {[ProcessorArchitecture, System.Management.Automation.Par | |
8818 | + ameterMetadata], [Name, System.Management.Automation.Para | |
8819 | + meterMetadata], [AssemblyName, System.Management.Automati | |
8820 | + on.ParameterMetadata], [ApplicationBase, System.Managemen | |
8821 | + t.Automation.ParameterMetadata]...} | |
8822 | +ParameterSets : {[-Name] <String> [-ProcessorArchitecture <String>] [-App | |
8823 | + licationBase <String>] [-ThreadApartmentState <ApartmentS | |
8824 | + tate>] [-ThreadOptions <PSThreadOptions>] [-StartupScript | |
8825 | + <String>] [-MaximumReceivedDataSizePerCommandMB <Nullabl | |
8826 | + e`1>] [-MaximumReceivedObjectSizeMB <Nullable`1>] [-Secur | |
8827 | + ityDescriptorSddl <String>] [-ShowSecurityDescriptorUI] [ | |
8828 | + -Force] [-NoServiceRestart] [-Verbose] [-Debug] [-ErrorAc | |
8829 | + tion <ActionPreference>] [-WarningAction <ActionPreferenc | |
8830 | + e>] [-ErrorVariable <String>] [-WarningVariable <String>] | |
8831 | + [-OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf] [ | |
8832 | + -Confirm], [-Name] <String> [-AssemblyName] <String> [-Co | |
8833 | + nfigurationTypeName] <String> [-ProcessorArchitecture <St | |
8834 | + ring>] [-ApplicationBase <String>] [-ThreadApartmentState | |
8835 | + <ApartmentState>] [-ThreadOptions <PSThreadOptions>] [-S | |
8836 | + tartupScript <String>] [-MaximumReceivedDataSizePerComman | |
8837 | + dMB <Nullable`1>] [-MaximumReceivedObjectSizeMB <Nullable | |
8838 | + `1>] [-SecurityDescriptorSddl <String>] [-ShowSecurityDes | |
8839 | + criptorUI] [-Force] [-NoServiceRestart] [-Verbose] [-Debu | |
8840 | + g] [-ErrorAction <ActionPreference>] [-WarningAction <Act | |
8841 | + ionPreference>] [-ErrorVariable <String>] [-WarningVariab | |
8842 | + le <String>] [-OutVariable <String>] [-OutBuffer <Int32>] | |
8843 | + [-WhatIf] [-Confirm]} | |
8844 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=144306 | |
8845 | +DLL : C:\Windows\assembly\GAC_MSIL\System.Management.Automation | |
8846 | + \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d | |
8847 | + ll | |
8848 | + | |
8849 | + | |
8850 | +Verb : Register | |
8851 | +Noun : WmiEvent | |
8852 | +HelpFile : Microsoft.PowerShell.Commands.Management.dll-Help.xml | |
8853 | +PSSnapIn : Microsoft.PowerShell.Management | |
8854 | +ImplementingType : Microsoft.PowerShell.Commands.RegisterWmiEventCommand | |
8855 | +Definition : Register-WmiEvent [-Class] <String> [[-SourceIdentifier] | |
8856 | + <String>] [[-Action] <ScriptBlock>] [-Namespace <String>] | |
8857 | + [-Credential <PSCredential>] [-ComputerName <String>] [- | |
8858 | + Timeout <Int64>] [-MessageData <PSObject>] [-SupportEvent | |
8859 | + ] [-Forward] [-Verbose] [-Debug] [-ErrorAction <ActionPre | |
8860 | + ference>] [-WarningAction <ActionPreference>] [-ErrorVari | |
8861 | + able <String>] [-WarningVariable <String>] [-OutVariable | |
8862 | + <String>] [-OutBuffer <Int32>] | |
8863 | + Register-WmiEvent [-Query] <String> [[-SourceIdentifier] | |
8864 | + <String>] [[-Action] <ScriptBlock>] [-Namespace <String>] | |
8865 | + [-Credential <PSCredential>] [-ComputerName <String>] [- | |
8866 | + Timeout <Int64>] [-MessageData <PSObject>] [-SupportEvent | |
8867 | + ] [-Forward] [-Verbose] [-Debug] [-ErrorAction <ActionPre | |
8868 | + ference>] [-WarningAction <ActionPreference>] [-ErrorVari | |
8869 | + able <String>] [-WarningVariable <String>] [-OutVariable | |
8870 | + <String>] [-OutBuffer <Int32>] | |
8871 | + | |
8872 | +DefaultParameterSet : class | |
8873 | +OutputType : {} | |
8874 | +Name : Register-WmiEvent | |
8875 | +CommandType : Cmdlet | |
8876 | +Visibility : Public | |
8877 | +ModuleName : Microsoft.PowerShell.Management | |
8878 | +Module : | |
8879 | +Parameters : {[Namespace, System.Management.Automation.ParameterMetada | |
8880 | + ta], [Credential, System.Management.Automation.ParameterM | |
8881 | + etadata], [ComputerName, System.Management.Automation.Par | |
8882 | + ameterMetadata], [Class, System.Management.Automation.Par | |
8883 | + ameterMetadata]...} | |
8884 | +ParameterSets : {[-Class] <String> [[-SourceIdentifier] <String>] [[-Acti | |
8885 | + on] <ScriptBlock>] [-Namespace <String>] [-Credential <PS | |
8886 | + Credential>] [-ComputerName <String>] [-Timeout <Int64>] | |
8887 | + [-MessageData <PSObject>] [-SupportEvent] [-Forward] [-Ve | |
8888 | + rbose] [-Debug] [-ErrorAction <ActionPreference>] [-Warni | |
8889 | + ngAction <ActionPreference>] [-ErrorVariable <String>] [- | |
8890 | + WarningVariable <String>] [-OutVariable <String>] [-OutBu | |
8891 | + ffer <Int32>], [-Query] <String> [[-SourceIdentifier] <St | |
8892 | + ring>] [[-Action] <ScriptBlock>] [-Namespace <String>] [- | |
8893 | + Credential <PSCredential>] [-ComputerName <String>] [-Tim | |
8894 | + eout <Int64>] [-MessageData <PSObject>] [-SupportEvent] [ | |
8895 | + -Forward] [-Verbose] [-Debug] [-ErrorAction <ActionPrefer | |
8896 | + ence>] [-WarningAction <ActionPreference>] [-ErrorVariabl | |
8897 | + e <String>] [-WarningVariable <String>] [-OutVariable <St | |
8898 | + ring>] [-OutBuffer <Int32>]} | |
8899 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=135245 | |
8900 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
8901 | + s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe | |
8902 | + ll.Commands.Management.dll | |
8903 | + | |
8904 | + | |
8905 | +Verb : Remove | |
8906 | +Noun : Computer | |
8907 | +HelpFile : Microsoft.PowerShell.Commands.Management.dll-Help.xml | |
8908 | +PSSnapIn : Microsoft.PowerShell.Management | |
8909 | +ImplementingType : Microsoft.PowerShell.Commands.RemoveComputerCommand | |
8910 | +Definition : Remove-Computer [[-Credential] <PSCredential>] [-Force] [ | |
8911 | + -PassThru] [-Verbose] [-Debug] [-ErrorAction <ActionPrefe | |
8912 | + rence>] [-WarningAction <ActionPreference>] [-ErrorVariab | |
8913 | + le <String>] [-WarningVariable <String>] [-OutVariable <S | |
8914 | + tring>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm] | |
8915 | + | |
8916 | +DefaultParameterSet : | |
8917 | +OutputType : {} | |
8918 | +Name : Remove-Computer | |
8919 | +CommandType : Cmdlet | |
8920 | +Visibility : Public | |
8921 | +ModuleName : Microsoft.PowerShell.Management | |
8922 | +Module : | |
8923 | +Parameters : {[Credential, System.Management.Automation.ParameterMetad | |
8924 | + ata], [Force, System.Management.Automation.ParameterMetad | |
8925 | + ata], [PassThru, System.Management.Automation.ParameterMe | |
8926 | + tadata], [Verbose, System.Management.Automation.Parameter | |
8927 | + Metadata]...} | |
8928 | +ParameterSets : {[[-Credential] <PSCredential>] [-Force] [-PassThru] [-Ve | |
8929 | + rbose] [-Debug] [-ErrorAction <ActionPreference>] [-Warni | |
8930 | + ngAction <ActionPreference>] [-ErrorVariable <String>] [- | |
8931 | + WarningVariable <String>] [-OutVariable <String>] [-OutBu | |
8932 | + ffer <Int32>] [-WhatIf] [-Confirm]} | |
8933 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=135246 | |
8934 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
8935 | + s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe | |
8936 | + ll.Commands.Management.dll | |
8937 | + | |
8938 | + | |
8939 | +Verb : Remove | |
8940 | +Noun : Event | |
8941 | +HelpFile : Microsoft.PowerShell.Commands.Utility.dll-Help.xml | |
8942 | +PSSnapIn : Microsoft.PowerShell.Utility | |
8943 | +ImplementingType : Microsoft.PowerShell.Commands.RemoveEventCommand | |
8944 | +Definition : Remove-Event [-SourceIdentifier] <String> [-Verbose] [-De | |
8945 | + bug] [-ErrorAction <ActionPreference>] [-WarningAction <A | |
8946 | + ctionPreference>] [-ErrorVariable <String>] [-WarningVari | |
8947 | + able <String>] [-OutVariable <String>] [-OutBuffer <Int32 | |
8948 | + >] [-WhatIf] [-Confirm] | |
8949 | + Remove-Event [-EventIdentifier] <Int32> [-Verbose] [-Debu | |
8950 | + g] [-ErrorAction <ActionPreference>] [-WarningAction <Act | |
8951 | + ionPreference>] [-ErrorVariable <String>] [-WarningVariab | |
8952 | + le <String>] [-OutVariable <String>] [-OutBuffer <Int32>] | |
8953 | + [-WhatIf] [-Confirm] | |
8954 | + | |
8955 | +DefaultParameterSet : BySource | |
8956 | +OutputType : {} | |
8957 | +Name : Remove-Event | |
8958 | +CommandType : Cmdlet | |
8959 | +Visibility : Public | |
8960 | +ModuleName : Microsoft.PowerShell.Utility | |
8961 | +Module : | |
8962 | +Parameters : {[SourceIdentifier, System.Management.Automation.Paramete | |
8963 | + rMetadata], [EventIdentifier, System.Management.Automatio | |
8964 | + n.ParameterMetadata], [Verbose, System.Management.Automat | |
8965 | + ion.ParameterMetadata], [Debug, System.Management.Automat | |
8966 | + ion.ParameterMetadata]...} | |
8967 | +ParameterSets : {[-SourceIdentifier] <String> [-Verbose] [-Debug] [-Error | |
8968 | + Action <ActionPreference>] [-WarningAction <ActionPrefere | |
8969 | + nce>] [-ErrorVariable <String>] [-WarningVariable <String | |
8970 | + >] [-OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf] | |
8971 | + [-Confirm], [-EventIdentifier] <Int32> [-Verbose] [-Debu | |
8972 | + g] [-ErrorAction <ActionPreference>] [-WarningAction <Act | |
8973 | + ionPreference>] [-ErrorVariable <String>] [-WarningVariab | |
8974 | + le <String>] [-OutVariable <String>] [-OutBuffer <Int32>] | |
8975 | + [-WhatIf] [-Confirm]} | |
8976 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=135247 | |
8977 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
8978 | + s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell. | |
8979 | + Commands.Utility.dll | |
8980 | + | |
8981 | + | |
8982 | +Verb : Remove | |
8983 | +Noun : EventLog | |
8984 | +HelpFile : Microsoft.PowerShell.Commands.Management.dll-Help.xml | |
8985 | +PSSnapIn : Microsoft.PowerShell.Management | |
8986 | +ImplementingType : Microsoft.PowerShell.Commands.RemoveEventLogCommand | |
8987 | +Definition : Remove-EventLog [-LogName] <String[]> [[-ComputerName] <S | |
8988 | + tring[]>] [-Verbose] [-Debug] [-ErrorAction <ActionPrefer | |
8989 | + ence>] [-WarningAction <ActionPreference>] [-ErrorVariabl | |
8990 | + e <String>] [-WarningVariable <String>] [-OutVariable <St | |
8991 | + ring>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm] | |
8992 | + Remove-EventLog [[-ComputerName] <String[]>] [-Source <St | |
8993 | + ring[]>] [-Verbose] [-Debug] [-ErrorAction <ActionPrefere | |
8994 | + nce>] [-WarningAction <ActionPreference>] [-ErrorVariable | |
8995 | + <String>] [-WarningVariable <String>] [-OutVariable <Str | |
8996 | + ing>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm] | |
8997 | + | |
8998 | +DefaultParameterSet : Default | |
8999 | +OutputType : {} | |
9000 | +Name : Remove-EventLog | |
9001 | +CommandType : Cmdlet | |
9002 | +Visibility : Public | |
9003 | +ModuleName : Microsoft.PowerShell.Management | |
9004 | +Module : | |
9005 | +Parameters : {[ComputerName, System.Management.Automation.ParameterMet | |
9006 | + adata], [LogName, System.Management.Automation.ParameterM | |
9007 | + etadata], [Source, System.Management.Automation.Parameter | |
9008 | + Metadata], [Verbose, System.Management.Automation.Paramet | |
9009 | + erMetadata]...} | |
9010 | +ParameterSets : {[-LogName] <String[]> [[-ComputerName] <String[]>] [-Ver | |
9011 | + bose] [-Debug] [-ErrorAction <ActionPreference>] [-Warnin | |
9012 | + gAction <ActionPreference>] [-ErrorVariable <String>] [-W | |
9013 | + arningVariable <String>] [-OutVariable <String>] [-OutBuf | |
9014 | + fer <Int32>] [-WhatIf] [-Confirm], [[-ComputerName] <Stri | |
9015 | + ng[]>] [-Source <String[]>] [-Verbose] [-Debug] [-ErrorAc | |
9016 | + tion <ActionPreference>] [-WarningAction <ActionPreferenc | |
9017 | + e>] [-ErrorVariable <String>] [-WarningVariable <String>] | |
9018 | + [-OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf] [ | |
9019 | + -Confirm]} | |
9020 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=135248 | |
9021 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
9022 | + s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe | |
9023 | + ll.Commands.Management.dll | |
9024 | + | |
9025 | + | |
9026 | +Verb : Remove | |
9027 | +Noun : Item | |
9028 | +HelpFile : Microsoft.PowerShell.Commands.Management.dll-Help.xml | |
9029 | +PSSnapIn : Microsoft.PowerShell.Management | |
9030 | +ImplementingType : Microsoft.PowerShell.Commands.RemoveItemCommand | |
9031 | +Definition : Remove-Item [-Path] <String[]> [-Filter <String>] [-Inclu | |
9032 | + de <String[]>] [-Exclude <String[]>] [-Recurse] [-Force] | |
9033 | + [-Credential <PSCredential>] [-Verbose] [-Debug] [-ErrorA | |
9034 | + ction <ActionPreference>] [-WarningAction <ActionPreferen | |
9035 | + ce>] [-ErrorVariable <String>] [-WarningVariable <String> | |
9036 | + ] [-OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf] | |
9037 | + [-Confirm] [-UseTransaction] | |
9038 | + Remove-Item [-LiteralPath] <String[]> [-Filter <String>] | |
9039 | + [-Include <String[]>] [-Exclude <String[]>] [-Recurse] [- | |
9040 | + Force] [-Credential <PSCredential>] [-Verbose] [-Debug] [ | |
9041 | + -ErrorAction <ActionPreference>] [-WarningAction <ActionP | |
9042 | + reference>] [-ErrorVariable <String>] [-WarningVariable < | |
9043 | + String>] [-OutVariable <String>] [-OutBuffer <Int32>] [-W | |
9044 | + hatIf] [-Confirm] [-UseTransaction] | |
9045 | + | |
9046 | +DefaultParameterSet : Path | |
9047 | +OutputType : {} | |
9048 | +Name : Remove-Item | |
9049 | +CommandType : Cmdlet | |
9050 | +Visibility : Public | |
9051 | +ModuleName : Microsoft.PowerShell.Management | |
9052 | +Module : | |
9053 | +Parameters : {[Path, System.Management.Automation.ParameterMetadata], | |
9054 | + [LiteralPath, System.Management.Automation.ParameterMetad | |
9055 | + ata], [Filter, System.Management.Automation.ParameterMeta | |
9056 | + data], [Include, System.Management.Automation.ParameterMe | |
9057 | + tadata]...} | |
9058 | +ParameterSets : {[-Path] <String[]> [-Filter <String>] [-Include <String[ | |
9059 | + ]>] [-Exclude <String[]>] [-Recurse] [-Force] [-Credentia | |
9060 | + l <PSCredential>] [-Verbose] [-Debug] [-ErrorAction <Acti | |
9061 | + onPreference>] [-WarningAction <ActionPreference>] [-Erro | |
9062 | + rVariable <String>] [-WarningVariable <String>] [-OutVari | |
9063 | + able <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm] | |
9064 | + [-UseTransaction], [-LiteralPath] <String[]> [-Filter <St | |
9065 | + ring>] [-Include <String[]>] [-Exclude <String[]>] [-Recu | |
9066 | + rse] [-Force] [-Credential <PSCredential>] [-Verbose] [-D | |
9067 | + ebug] [-ErrorAction <ActionPreference>] [-WarningAction < | |
9068 | + ActionPreference>] [-ErrorVariable <String>] [-WarningVar | |
9069 | + iable <String>] [-OutVariable <String>] [-OutBuffer <Int3 | |
9070 | + 2>] [-WhatIf] [-Confirm] [-UseTransaction]} | |
9071 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113373 | |
9072 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
9073 | + s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe | |
9074 | + ll.Commands.Management.dll | |
9075 | + | |
9076 | + | |
9077 | +Verb : Remove | |
9078 | +Noun : ItemProperty | |
9079 | +HelpFile : Microsoft.PowerShell.Commands.Management.dll-Help.xml | |
9080 | +PSSnapIn : Microsoft.PowerShell.Management | |
9081 | +ImplementingType : Microsoft.PowerShell.Commands.RemoveItemPropertyCommand | |
9082 | +Definition : Remove-ItemProperty [-Path] <String[]> [-Name] <String[]> | |
9083 | + [-Force] [-Filter <String>] [-Include <String[]>] [-Excl | |
9084 | + ude <String[]>] [-Credential <PSCredential>] [-Verbose] [ | |
9085 | + -Debug] [-ErrorAction <ActionPreference>] [-WarningAction | |
9086 | + <ActionPreference>] [-ErrorVariable <String>] [-WarningV | |
9087 | + ariable <String>] [-OutVariable <String>] [-OutBuffer <In | |
9088 | + t32>] [-WhatIf] [-Confirm] [-UseTransaction] | |
9089 | + Remove-ItemProperty [-LiteralPath] <String[]> [-Name] <St | |
9090 | + ring[]> [-Force] [-Filter <String>] [-Include <String[]>] | |
9091 | + [-Exclude <String[]>] [-Credential <PSCredential>] [-Ver | |
9092 | + bose] [-Debug] [-ErrorAction <ActionPreference>] [-Warnin | |
9093 | + gAction <ActionPreference>] [-ErrorVariable <String>] [-W | |
9094 | + arningVariable <String>] [-OutVariable <String>] [-OutBuf | |
9095 | + fer <Int32>] [-WhatIf] [-Confirm] [-UseTransaction] | |
9096 | + | |
9097 | +DefaultParameterSet : Path | |
9098 | +OutputType : {} | |
9099 | +Name : Remove-ItemProperty | |
9100 | +CommandType : Cmdlet | |
9101 | +Visibility : Public | |
9102 | +ModuleName : Microsoft.PowerShell.Management | |
9103 | +Module : | |
9104 | +Parameters : {[Path, System.Management.Automation.ParameterMetadata], | |
9105 | + [LiteralPath, System.Management.Automation.ParameterMetad | |
9106 | + ata], [Name, System.Management.Automation.ParameterMetada | |
9107 | + ta], [Force, System.Management.Automation.ParameterMetada | |
9108 | + ta]...} | |
9109 | +ParameterSets : {[-Path] <String[]> [-Name] <String[]> [-Force] [-Filter | |
9110 | + <String>] [-Include <String[]>] [-Exclude <String[]>] [-C | |
9111 | + redential <PSCredential>] [-Verbose] [-Debug] [-ErrorActi | |
9112 | + on <ActionPreference>] [-WarningAction <ActionPreference> | |
9113 | + ] [-ErrorVariable <String>] [-WarningVariable <String>] [ | |
9114 | + -OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf] [-C | |
9115 | + onfirm] [-UseTransaction], [-LiteralPath] <String[]> [-Na | |
9116 | + me] <String[]> [-Force] [-Filter <String>] [-Include <Str | |
9117 | + ing[]>] [-Exclude <String[]>] [-Credential <PSCredential> | |
9118 | + ] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [ | |
9119 | + -WarningAction <ActionPreference>] [-ErrorVariable <Strin | |
9120 | + g>] [-WarningVariable <String>] [-OutVariable <String>] [ | |
9121 | + -OutBuffer <Int32>] [-WhatIf] [-Confirm] [-UseTransaction | |
9122 | + ]} | |
9123 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113374 | |
9124 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
9125 | + s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe | |
9126 | + ll.Commands.Management.dll | |
9127 | + | |
9128 | + | |
9129 | +Verb : Remove | |
9130 | +Noun : Job | |
9131 | +HelpFile : System.Management.Automation.dll-Help.xml | |
9132 | +PSSnapIn : Microsoft.PowerShell.Core | |
9133 | +ImplementingType : Microsoft.PowerShell.Commands.RemoveJobCommand | |
9134 | +Definition : Remove-Job [-Id] <Int32[]> [-Force] [-Verbose] [-Debug] [ | |
9135 | + -ErrorAction <ActionPreference>] [-WarningAction <ActionP | |
9136 | + reference>] [-ErrorVariable <String>] [-WarningVariable < | |
9137 | + String>] [-OutVariable <String>] [-OutBuffer <Int32>] [-W | |
9138 | + hatIf] [-Confirm] | |
9139 | + Remove-Job [-Job] <Job[]> [-Force] [-Verbose] [-Debug] [- | |
9140 | + ErrorAction <ActionPreference>] [-WarningAction <ActionPr | |
9141 | + eference>] [-ErrorVariable <String>] [-WarningVariable <S | |
9142 | + tring>] [-OutVariable <String>] [-OutBuffer <Int32>] [-Wh | |
9143 | + atIf] [-Confirm] | |
9144 | + Remove-Job [[-Name] <String[]>] [-Force] [-Verbose] [-Deb | |
9145 | + ug] [-ErrorAction <ActionPreference>] [-WarningAction <Ac | |
9146 | + tionPreference>] [-ErrorVariable <String>] [-WarningVaria | |
9147 | + ble <String>] [-OutVariable <String>] [-OutBuffer <Int32> | |
9148 | + ] [-WhatIf] [-Confirm] | |
9149 | + Remove-Job [[-InstanceId] <Guid[]>] [-Force] [-Verbose] [ | |
9150 | + -Debug] [-ErrorAction <ActionPreference>] [-WarningAction | |
9151 | + <ActionPreference>] [-ErrorVariable <String>] [-WarningV | |
9152 | + ariable <String>] [-OutVariable <String>] [-OutBuffer <In | |
9153 | + t32>] [-WhatIf] [-Confirm] | |
9154 | + Remove-Job [-State <JobState>] [-Verbose] [-Debug] [-Erro | |
9155 | + rAction <ActionPreference>] [-WarningAction <ActionPrefer | |
9156 | + ence>] [-ErrorVariable <String>] [-WarningVariable <Strin | |
9157 | + g>] [-OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf | |
9158 | + ] [-Confirm] | |
9159 | + Remove-Job [-Command <String[]>] [-Verbose] [-Debug] [-Er | |
9160 | + rorAction <ActionPreference>] [-WarningAction <ActionPref | |
9161 | + erence>] [-ErrorVariable <String>] [-WarningVariable <Str | |
9162 | + ing>] [-OutVariable <String>] [-OutBuffer <Int32>] [-What | |
9163 | + If] [-Confirm] | |
9164 | + | |
9165 | +DefaultParameterSet : SessionIdParameterSet | |
9166 | +OutputType : {} | |
9167 | +Name : Remove-Job | |
9168 | +CommandType : Cmdlet | |
9169 | +Visibility : Public | |
9170 | +ModuleName : Microsoft.PowerShell.Core | |
9171 | +Module : | |
9172 | +Parameters : {[Job, System.Management.Automation.ParameterMetadata], [ | |
9173 | + Force, System.Management.Automation.ParameterMetadata], [ | |
9174 | + Name, System.Management.Automation.ParameterMetadata], [I | |
9175 | + nstanceId, System.Management.Automation.ParameterMetadata | |
9176 | + ]...} | |
9177 | +ParameterSets : {[-Id] <Int32[]> [-Force] [-Verbose] [-Debug] [-ErrorActi | |
9178 | + on <ActionPreference>] [-WarningAction <ActionPreference> | |
9179 | + ] [-ErrorVariable <String>] [-WarningVariable <String>] [ | |
9180 | + -OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf] [-C | |
9181 | + onfirm], [-Job] <Job[]> [-Force] [-Verbose] [-Debug] [-Er | |
9182 | + rorAction <ActionPreference>] [-WarningAction <ActionPref | |
9183 | + erence>] [-ErrorVariable <String>] [-WarningVariable <Str | |
9184 | + ing>] [-OutVariable <String>] [-OutBuffer <Int32>] [-What | |
9185 | + If] [-Confirm], [[-Name] <String[]>] [-Force] [-Verbose] | |
9186 | + [-Debug] [-ErrorAction <ActionPreference>] [-WarningActio | |
9187 | + n <ActionPreference>] [-ErrorVariable <String>] [-Warning | |
9188 | + Variable <String>] [-OutVariable <String>] [-OutBuffer <I | |
9189 | + nt32>] [-WhatIf] [-Confirm], [[-InstanceId] <Guid[]>] [-F | |
9190 | + orce] [-Verbose] [-Debug] [-ErrorAction <ActionPreference | |
9191 | + >] [-WarningAction <ActionPreference>] [-ErrorVariable <S | |
9192 | + tring>] [-WarningVariable <String>] [-OutVariable <String | |
9193 | + >] [-OutBuffer <Int32>] [-WhatIf] [-Confirm]...} | |
9194 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113377 | |
9195 | +DLL : C:\Windows\assembly\GAC_MSIL\System.Management.Automation | |
9196 | + \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d | |
9197 | + ll | |
9198 | + | |
9199 | + | |
9200 | +Verb : Remove | |
9201 | +Noun : Module | |
9202 | +HelpFile : System.Management.Automation.dll-Help.xml | |
9203 | +PSSnapIn : Microsoft.PowerShell.Core | |
9204 | +ImplementingType : Microsoft.PowerShell.Commands.RemoveModuleCommand | |
9205 | +Definition : Remove-Module [-Name] <String[]> [-Force] [-Verbose] [-De | |
9206 | + bug] [-ErrorAction <ActionPreference>] [-WarningAction <A | |
9207 | + ctionPreference>] [-ErrorVariable <String>] [-WarningVari | |
9208 | + able <String>] [-OutVariable <String>] [-OutBuffer <Int32 | |
9209 | + >] [-WhatIf] [-Confirm] | |
9210 | + Remove-Module [-ModuleInfo] <PSModuleInfo[]> [-Force] [-V | |
9211 | + erbose] [-Debug] [-ErrorAction <ActionPreference>] [-Warn | |
9212 | + ingAction <ActionPreference>] [-ErrorVariable <String>] [ | |
9213 | + -WarningVariable <String>] [-OutVariable <String>] [-OutB | |
9214 | + uffer <Int32>] [-WhatIf] [-Confirm] | |
9215 | + | |
9216 | +DefaultParameterSet : | |
9217 | +OutputType : {} | |
9218 | +Name : Remove-Module | |
9219 | +CommandType : Cmdlet | |
9220 | +Visibility : Public | |
9221 | +ModuleName : Microsoft.PowerShell.Core | |
9222 | +Module : | |
9223 | +Parameters : {[Name, System.Management.Automation.ParameterMetadata], | |
9224 | + [ModuleInfo, System.Management.Automation.ParameterMetada | |
9225 | + ta], [Force, System.Management.Automation.ParameterMetada | |
9226 | + ta], [Verbose, System.Management.Automation.ParameterMeta | |
9227 | + data]...} | |
9228 | +ParameterSets : {[-Name] <String[]> [-Force] [-Verbose] [-Debug] [-ErrorA | |
9229 | + ction <ActionPreference>] [-WarningAction <ActionPreferen | |
9230 | + ce>] [-ErrorVariable <String>] [-WarningVariable <String> | |
9231 | + ] [-OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf] | |
9232 | + [-Confirm], [-ModuleInfo] <PSModuleInfo[]> [-Force] [-Ver | |
9233 | + bose] [-Debug] [-ErrorAction <ActionPreference>] [-Warnin | |
9234 | + gAction <ActionPreference>] [-ErrorVariable <String>] [-W | |
9235 | + arningVariable <String>] [-OutVariable <String>] [-OutBuf | |
9236 | + fer <Int32>] [-WhatIf] [-Confirm]} | |
9237 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=141556 | |
9238 | +DLL : C:\Windows\assembly\GAC_MSIL\System.Management.Automation | |
9239 | + \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d | |
9240 | + ll | |
9241 | + | |
9242 | + | |
9243 | +Verb : Remove | |
9244 | +Noun : PSBreakpoint | |
9245 | +HelpFile : Microsoft.PowerShell.Commands.Utility.dll-Help.xml | |
9246 | +PSSnapIn : Microsoft.PowerShell.Utility | |
9247 | +ImplementingType : Microsoft.PowerShell.Commands.RemovePSBreakpointCommand | |
9248 | +Definition : Remove-PSBreakpoint [-Breakpoint] <Breakpoint[]> [-Verbos | |
9249 | + e] [-Debug] [-ErrorAction <ActionPreference>] [-WarningAc | |
9250 | + tion <ActionPreference>] [-ErrorVariable <String>] [-Warn | |
9251 | + ingVariable <String>] [-OutVariable <String>] [-OutBuffer | |
9252 | + <Int32>] [-WhatIf] [-Confirm] | |
9253 | + Remove-PSBreakpoint [-Id] <Int32[]> [-Verbose] [-Debug] [ | |
9254 | + -ErrorAction <ActionPreference>] [-WarningAction <ActionP | |
9255 | + reference>] [-ErrorVariable <String>] [-WarningVariable < | |
9256 | + String>] [-OutVariable <String>] [-OutBuffer <Int32>] [-W | |
9257 | + hatIf] [-Confirm] | |
9258 | + | |
9259 | +DefaultParameterSet : Breakpoint | |
9260 | +OutputType : {} | |
9261 | +Name : Remove-PSBreakpoint | |
9262 | +CommandType : Cmdlet | |
9263 | +Visibility : Public | |
9264 | +ModuleName : Microsoft.PowerShell.Utility | |
9265 | +Module : | |
9266 | +Parameters : {[Breakpoint, System.Management.Automation.ParameterMetad | |
9267 | + ata], [Id, System.Management.Automation.ParameterMetadata | |
9268 | + ], [Verbose, System.Management.Automation.ParameterMetada | |
9269 | + ta], [Debug, System.Management.Automation.ParameterMetada | |
9270 | + ta]...} | |
9271 | +ParameterSets : {[-Breakpoint] <Breakpoint[]> [-Verbose] [-Debug] [-Error | |
9272 | + Action <ActionPreference>] [-WarningAction <ActionPrefere | |
9273 | + nce>] [-ErrorVariable <String>] [-WarningVariable <String | |
9274 | + >] [-OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf] | |
9275 | + [-Confirm], [-Id] <Int32[]> [-Verbose] [-Debug] [-ErrorA | |
9276 | + ction <ActionPreference>] [-WarningAction <ActionPreferen | |
9277 | + ce>] [-ErrorVariable <String>] [-WarningVariable <String> | |
9278 | + ] [-OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf] | |
9279 | + [-Confirm]} | |
9280 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113375 | |
9281 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
9282 | + s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell. | |
9283 | + Commands.Utility.dll | |
9284 | + | |
9285 | + | |
9286 | +Verb : Remove | |
9287 | +Noun : PSDrive | |
9288 | +HelpFile : Microsoft.PowerShell.Commands.Management.dll-Help.xml | |
9289 | +PSSnapIn : Microsoft.PowerShell.Management | |
9290 | +ImplementingType : Microsoft.PowerShell.Commands.RemovePSDriveCommand | |
9291 | +Definition : Remove-PSDrive [-Name] <String[]> [-PSProvider <String[]> | |
9292 | + ] [-Scope <String>] [-Force] [-Verbose] [-Debug] [-ErrorA | |
9293 | + ction <ActionPreference>] [-WarningAction <ActionPreferen | |
9294 | + ce>] [-ErrorVariable <String>] [-WarningVariable <String> | |
9295 | + ] [-OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf] | |
9296 | + [-Confirm] [-UseTransaction] | |
9297 | + Remove-PSDrive [-LiteralName] <String[]> [-PSProvider <St | |
9298 | + ring[]>] [-Scope <String>] [-Force] [-Verbose] [-Debug] [ | |
9299 | + -ErrorAction <ActionPreference>] [-WarningAction <ActionP | |
9300 | + reference>] [-ErrorVariable <String>] [-WarningVariable < | |
9301 | + String>] [-OutVariable <String>] [-OutBuffer <Int32>] [-W | |
9302 | + hatIf] [-Confirm] [-UseTransaction] | |
9303 | + | |
9304 | +DefaultParameterSet : Name | |
9305 | +OutputType : {} | |
9306 | +Name : Remove-PSDrive | |
9307 | +CommandType : Cmdlet | |
9308 | +Visibility : Public | |
9309 | +ModuleName : Microsoft.PowerShell.Management | |
9310 | +Module : | |
9311 | +Parameters : {[Name, System.Management.Automation.ParameterMetadata], | |
9312 | + [LiteralName, System.Management.Automation.ParameterMetad | |
9313 | + ata], [PSProvider, System.Management.Automation.Parameter | |
9314 | + Metadata], [Scope, System.Management.Automation.Parameter | |
9315 | + Metadata]...} | |
9316 | +ParameterSets : {[-Name] <String[]> [-PSProvider <String[]>] [-Scope <Str | |
9317 | + ing>] [-Force] [-Verbose] [-Debug] [-ErrorAction <ActionP | |
9318 | + reference>] [-WarningAction <ActionPreference>] [-ErrorVa | |
9319 | + riable <String>] [-WarningVariable <String>] [-OutVariabl | |
9320 | + e <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm] [-U | |
9321 | + seTransaction], [-LiteralName] <String[]> [-PSProvider <S | |
9322 | + tring[]>] [-Scope <String>] [-Force] [-Verbose] [-Debug] | |
9323 | + [-ErrorAction <ActionPreference>] [-WarningAction <Action | |
9324 | + Preference>] [-ErrorVariable <String>] [-WarningVariable | |
9325 | + <String>] [-OutVariable <String>] [-OutBuffer <Int32>] [- | |
9326 | + WhatIf] [-Confirm] [-UseTransaction]} | |
9327 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113376 | |
9328 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
9329 | + s.Management\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShe | |
9330 | + ll.Commands.Management.dll | |
9331 | + | |
9332 | + | |
9333 | +Verb : Remove | |
9334 | +Noun : PSSession | |
9335 | +HelpFile : System.Management.Automation.dll-Help.xml | |
9336 | +PSSnapIn : Microsoft.PowerShell.Core | |
9337 | +ImplementingType : Microsoft.PowerShell.Commands.RemovePSSessionCommand | |
9338 | +Definition : Remove-PSSession [-Id] <Int32[]> [-Verbose] [-Debug] [-Er | |
9339 | + rorAction <ActionPreference>] [-WarningAction <ActionPref | |
9340 | + erence>] [-ErrorVariable <String>] [-WarningVariable <Str | |
9341 | + ing>] [-OutVariable <String>] [-OutBuffer <Int32>] [-What | |
9342 | + If] [-Confirm] | |
9343 | + Remove-PSSession [-Session] <PSSession[]> [-Verbose] [-De | |
9344 | + bug] [-ErrorAction <ActionPreference>] [-WarningAction <A | |
9345 | + ctionPreference>] [-ErrorVariable <String>] [-WarningVari | |
9346 | + able <String>] [-OutVariable <String>] [-OutBuffer <Int32 | |
9347 | + >] [-WhatIf] [-Confirm] | |
9348 | + Remove-PSSession [-InstanceId <Guid[]>] [-Verbose] [-Debu | |
9349 | + g] [-ErrorAction <ActionPreference>] [-WarningAction <Act | |
9350 | + ionPreference>] [-ErrorVariable <String>] [-WarningVariab | |
9351 | + le <String>] [-OutVariable <String>] [-OutBuffer <Int32>] | |
9352 | + [-WhatIf] [-Confirm] | |
9353 | + Remove-PSSession [-Name <String[]>] [-Verbose] [-Debug] [ | |
9354 | + -ErrorAction <ActionPreference>] [-WarningAction <ActionP | |
9355 | + reference>] [-ErrorVariable <String>] [-WarningVariable < | |
9356 | + String>] [-OutVariable <String>] [-OutBuffer <Int32>] [-W | |
9357 | + hatIf] [-Confirm] | |
9358 | + Remove-PSSession [[-ComputerName] <String[]>] [-Verbose] | |
9359 | + [-Debug] [-ErrorAction <ActionPreference>] [-WarningActio | |
9360 | + n <ActionPreference>] [-ErrorVariable <String>] [-Warning | |
9361 | + Variable <String>] [-OutVariable <String>] [-OutBuffer <I | |
9362 | + nt32>] [-WhatIf] [-Confirm] | |
9363 | + | |
9364 | +DefaultParameterSet : Id | |
9365 | +OutputType : {} | |
9366 | +Name : Remove-PSSession | |
9367 | +CommandType : Cmdlet | |
9368 | +Visibility : Public | |
9369 | +ModuleName : Microsoft.PowerShell.Core | |
9370 | +Module : | |
9371 | +Parameters : {[Session, System.Management.Automation.ParameterMetadata | |
9372 | + ], [InstanceId, System.Management.Automation.ParameterMet | |
9373 | + adata], [Id, System.Management.Automation.ParameterMetada | |
9374 | + ta], [Name, System.Management.Automation.ParameterMetadat | |
9375 | + a]...} | |
9376 | +ParameterSets : {[-Id] <Int32[]> [-Verbose] [-Debug] [-ErrorAction <Actio | |
9377 | + nPreference>] [-WarningAction <ActionPreference>] [-Error | |
9378 | + Variable <String>] [-WarningVariable <String>] [-OutVaria | |
9379 | + ble <String>] [-OutBuffer <Int32>] [-WhatIf] [-Confirm], | |
9380 | + [-Session] <PSSession[]> [-Verbose] [-Debug] [-ErrorActio | |
9381 | + n <ActionPreference>] [-WarningAction <ActionPreference>] | |
9382 | + [-ErrorVariable <String>] [-WarningVariable <String>] [- | |
9383 | + OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf] [-Co | |
9384 | + nfirm], [-InstanceId <Guid[]>] [-Verbose] [-Debug] [-Erro | |
9385 | + rAction <ActionPreference>] [-WarningAction <ActionPrefer | |
9386 | + ence>] [-ErrorVariable <String>] [-WarningVariable <Strin | |
9387 | + g>] [-OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf | |
9388 | + ] [-Confirm], [-Name <String[]>] [-Verbose] [-Debug] [-Er | |
9389 | + rorAction <ActionPreference>] [-WarningAction <ActionPref | |
9390 | + erence>] [-ErrorVariable <String>] [-WarningVariable <Str | |
9391 | + ing>] [-OutVariable <String>] [-OutBuffer <Int32>] [-What | |
9392 | + If] [-Confirm]...} | |
9393 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=135250 | |
9394 | +DLL : C:\Windows\assembly\GAC_MSIL\System.Management.Automation | |
9395 | + \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d | |
9396 | + ll | |
9397 | + | |
9398 | + | |
9399 | +Verb : Remove | |
9400 | +Noun : PSSnapin | |
9401 | +HelpFile : System.Management.Automation.dll-Help.xml | |
9402 | +PSSnapIn : Microsoft.PowerShell.Core | |
9403 | +ImplementingType : Microsoft.PowerShell.Commands.RemovePSSnapinCommand | |
9404 | +Definition : Remove-PSSnapin [-Name] <String[]> [-PassThru] [-Verbose] | |
9405 | + [-Debug] [-ErrorAction <ActionPreference>] [-WarningActi | |
9406 | + on <ActionPreference>] [-ErrorVariable <String>] [-Warnin | |
9407 | + gVariable <String>] [-OutVariable <String>] [-OutBuffer < | |
9408 | + Int32>] [-WhatIf] [-Confirm] | |
9409 | + | |
9410 | +DefaultParameterSet : | |
9411 | +OutputType : {} | |
9412 | +Name : Remove-PSSnapin | |
9413 | +CommandType : Cmdlet | |
9414 | +Visibility : Public | |
9415 | +ModuleName : Microsoft.PowerShell.Core | |
9416 | +Module : | |
9417 | +Parameters : {[Name, System.Management.Automation.ParameterMetadata], | |
9418 | + [PassThru, System.Management.Automation.ParameterMetadata | |
9419 | + ], [Verbose, System.Management.Automation.ParameterMetada | |
9420 | + ta], [Debug, System.Management.Automation.ParameterMetada | |
9421 | + ta]...} | |
9422 | +ParameterSets : {[-Name] <String[]> [-PassThru] [-Verbose] [-Debug] [-Err | |
9423 | + orAction <ActionPreference>] [-WarningAction <ActionPrefe | |
9424 | + rence>] [-ErrorVariable <String>] [-WarningVariable <Stri | |
9425 | + ng>] [-OutVariable <String>] [-OutBuffer <Int32>] [-WhatI | |
9426 | + f] [-Confirm]} | |
9427 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113378 | |
9428 | +DLL : C:\Windows\assembly\GAC_MSIL\System.Management.Automation | |
9429 | + \1.0.0.0__31bf3856ad364e35\System.Management.Automation.d | |
9430 | + ll | |
9431 | + | |
9432 | + | |
9433 | +Verb : Remove | |
9434 | +Noun : Variable | |
9435 | +HelpFile : Microsoft.PowerShell.Commands.Utility.dll-Help.xml | |
9436 | +PSSnapIn : Microsoft.PowerShell.Utility | |
9437 | +ImplementingType : Microsoft.PowerShell.Commands.RemoveVariableCommand | |
9438 | +Definition : Remove-Variable [-Name] <String[]> [-Include <String[]>] | |
9439 | + [-Exclude <String[]>] [-Force] [-Scope <String>] [-Verbos | |
9440 | + e] [-Debug] [-ErrorAction <ActionPreference>] [-WarningAc | |
9441 | + tion <ActionPreference>] [-ErrorVariable <String>] [-Warn | |
9442 | + ingVariable <String>] [-OutVariable <String>] [-OutBuffer | |
9443 | + <Int32>] [-WhatIf] [-Confirm] | |
9444 | + | |
9445 | +DefaultParameterSet : | |
9446 | +OutputType : {} | |
9447 | +Name : Remove-Variable | |
9448 | +CommandType : Cmdlet | |
9449 | +Visibility : Public | |
9450 | +ModuleName : Microsoft.PowerShell.Utility | |
9451 | +Module : | |
9452 | +Parameters : {[Name, System.Management.Automation.ParameterMetadata], | |
9453 | + [Include, System.Management.Automation.ParameterMetadata] | |
9454 | + , [Exclude, System.Management.Automation.ParameterMetadat | |
9455 | + a], [Force, System.Management.Automation.ParameterMetadat | |
9456 | + a]...} | |
9457 | +ParameterSets : {[-Name] <String[]> [-Include <String[]>] [-Exclude <Stri | |
9458 | + ng[]>] [-Force] [-Scope <String>] [-Verbose] [-Debug] [-E | |
9459 | + rrorAction <ActionPreference>] [-WarningAction <ActionPre | |
9460 | + ference>] [-ErrorVariable <String>] [-WarningVariable <St | |
9461 | + ring>] [-OutVariable <String>] [-OutBuffer <Int32>] [-Wha | |
9462 | + tIf] [-Confirm]} | |
9463 | +HelpUri : http://go.microsoft.com/fwlink/?LinkID=113380 | |
9464 | +DLL : C:\Windows\assembly\GAC_MSIL\Microsoft.PowerShell.Command | |
9465 | + s.Utility\1.0.0.0__31bf3856ad364e35\Microsoft.PowerShell. | |
9466 | + Commands.Utility.dll | |
9467 | + | |
9468 | + | |
9469 | +Verb : Remove | |
9470 | +Noun : WmiObject | |
9471 | +HelpFile : Microsoft.PowerShell.Commands.Management.dll-Help.xml | |
9472 | +PSSnapIn : Microsoft.PowerShell.Management | |
9473 | +ImplementingType : Microsoft.PowerShell.Commands.RemoveWmiObject | |
9474 | +Definition : Remove-WmiObject [-Class] <String> [-AsJob] [-Impersonati | |
9475 | + on <ImpersonationLevel>] [-Authentication <Authentication | |
9476 | + Level>] [-Locale <String>] [-EnableAllPrivileges] [-Autho | |
9477 | + rity <String>] [-Credential <PSCredential>] [-ThrottleLim | |
9478 | + it <Int32>] [-ComputerName <String[]>] [-Namespace <Strin | |
9479 | + g>] [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] | |
9480 | + [-WarningAction <ActionPreference>] [-ErrorVariable <Str | |
9481 | + ing>] [-WarningVariable <String>] [-OutVariable <String>] | |
9482 | + [-OutBuffer <Int32>] [-WhatIf] [-Confirm] | |
9483 | + Remove-WmiObject -InputObject <ManagementObject> [-AsJob] | |
9484 | + [-ThrottleLimit <Int32>] [-Verbose] [-Debug] [-ErrorActi | |
9485 | + on <ActionPreference>] [-WarningAction <ActionPreference> | |
9486 | + ] [-ErrorVariable <String>] [-WarningVariable <String>] [ | |
9487 | + -OutVariable <String>] [-OutBuffer <Int32>] [-WhatIf] [-C | |
9488 | + onfirm] | |
9489 | + Remove-WmiObject -Path <String> [-AsJob] [-Impersonation | |
9490 | + <ImpersonationLevel>] [-Authentication <AuthenticationLev | |
9491 | + el>] [-Locale <String>] [-EnableAllPrivileges] [-Authorit | |
9492 | + y <String>] [-Credential <PSCredential>] [-ThrottleLimit | |
9493 | + <Int32>] [-ComputerName <String[]>] [-Namespace <String>] | |
9494 | + [-Verbose] [-Debug] [-ErrorAction <ActionPreference>] [- | |
9495 | + WarningAction <ActionPreference>] [-ErrorVariable <String | |
9496 | + >] [-WarningVariable <String>] [-OutVariable <String>] [- | |
9497 | + OutBuffer <Int32>] [-WhatIf] [-Confirm] | |
9498 | + Remove-WmiObject [-AsJob] [-Impersonation <ImpersonationL | |
9499 | + evel>] [-Authentication <AuthenticationLevel>] [-Locale < | |
9500 | + String>] [-EnableAllPrivileges] [-Authority <String>] [-C | |
9501 | + redential <PSCredential>] [-ThrottleLimit <Int32>] [-Comp | |
9502 | + uterName <String[]>] [-Namespace <String>] [-Verbose] [-D | |
9503 | + ebug] [-ErrorAction |
Ein Teil der Diff wurde aufgrund der Größenbeschränkung abgeschnitten. Verwenden Sie Ihren lokalen Client, um die vollständige Diff.