PowerShell
PowerShell
PowerShellは,Windowsの高度な自動化や管理を目的としたシェル環境で,コマンドプロンプトの後継的な存在です.PowerShellの特徴は,コマンドの出力が文字列ではなく,.NETオブジェクトであることです.これにより,複雑な処理や条件分岐,ファイル操作,ネットワーク管理などが柔軟に行えます.スクリプト言語としても強力で,Windows管理者や開発者に広く使われています.Windows 11に標準搭載されているPowerShellはバージョン5で,文字コード周りが古い仕様となっていてUTF-8で作成された日本語文字列データを扱う際に文字化けすることが多々あります.一方で,新しいPowerShell 7はWindowsだけでなく,macOSやLinuxでも利用可能で,UTF-8に対応しており文字化けの問題が解消されています.
PowerShellを起動すると次のような画面が画面に表示されます.最後の行の PS
と >
の間にある「C:\Users\rinsaka
」がカレントディレクトリ(現在のディレクトリ)です.なお,ディレクトリはWindows GUI(グラフィカル・ユーザ・インタフェース)のフォルダと同じものと考えてもおおむね問題ありません.PowerShellでもコマンドプロンプトと同様に >
の直後に様々なコマンドをキーボードから入力して実行します.
Windows PowerShell
Copyright (C) Microsoft Corporation. All rights reserved.
新機能と改善のために最新の PowerShell をインストールしてください!https://aka.ms/PSWindows
PS C:\Users\rinsaka>
ヘルプの表示 (Get-Help)
まずは「Get-Help
」コマンドを実行して,ヘルプ画面を表示してみましょう.
PS C:\Users\rinsaka> Get-Help ⏎
トピック
Windows PowerShell のヘルプ システム
概要
Windows PowerShell のコマンドレットと概念に関するヘルプを表示します。
詳細説明
Windows PowerShell ヘルプでは、Windows PowerShell コマンドレット、
関数、スクリプト、およびモジュールと、Windows PowerShell 言語の
要素などの概念について説明します。
Windows PowerShell にヘルプ ファイルが含まれていなくても、オンラインでヘルプ トピックを
参照できます。また、Update-Help コマンドレットを使用してヘルプ ファイルを
コンピューターにダウンロードし、Get-Help コマンドレットを使用してコマンド ラインで
ヘルプ トピックを表示できます。
Update-Help コマンドレットを使用すると、更新されたヘルプ ファイルをリリース時に
ダウンロードして、ローカルのヘルプ コンテンツが古くならないようにすることもできます。
ヘルプ ファイルがない場合は、Get-Help を実行すると、コマンドレット、関数、
およびスクリプトについて、自動生成されたヘルプが表示されます。
オンライン ヘルプ
Windows PowerShell のオンライン ヘルプは、TechNet ライブラリにあります。
まずは、http://go.microsoft.com/fwlink/?LinkID=108518 を参照してください。
任意のコマンドレッドまたは関数のオンライン ヘルプを表示するには、次のように入力します。
Get-Help <コマンドレット名> -Online
UPDATE-HELP
コンピューターにヘルプ ファイルをダウンロードしてインストールするには、次の手順を実行します。
1.[管理者として実行] オプションを使用して Windows PowerShell を起動します。
2.次のように入力します。
Update-Help
ヘルプ ファイルがインストールされたら、Get-Help コマンドレットを使用して、
ヘルプ トピックを表示できます。また、Update-Help コマンドレットを使用すると、
ローカルのヘルプ ファイルが常に最新の状態で保たれるように、更新された
ヘルプ ファイルをダウンロードできます。
Update-Help コマンドレットの詳細を確認するには、次のように入力します。
Get-Help Update-Help -Online
または、http://go.microsoft.com/fwlink/?LinkID=210614 を参照してください。
GET-HELP
Get-Help コマンドレットを実行すると、コンピューターに保存されているヘルプ ファイルのコンテンツから、
コマンド ラインにヘルプが表示されます。ヘルプ ファイルがない場合に Get-Help を実行すると、
コマンドレットと関数について基本的なヘルプが表示されます。また、Get-Help を使用して、
コマンドレットと関数についてオンライン ヘルプを表示することもできます。
コマンドレットのヘルプを表示するには、次のように入力します。
Get-Help <コマンドレット名>
オンライン ヘルプを表示するには、次のように入力します。
Get-Help <コマンドレット名> -Online
概念説明のトピックのタイトルは "About_" で始まります。
概念または言語要素のヘルプを表示するには、次のように入力します。
Get-Help About_<トピック名>
すべてのヘルプ ファイルで単語や語句を検索するには、次のように入力します。
Get-Help <検索用語>
Get-Help コマンドレットの詳細を確認するには、次のように入力します。
Get-Help Get-Help -Online
または、http://go.microsoft.com/fwlink/?LinkID=113316 を参照してください。
例:
Save-Help : インターネットからヘルプ ファイルをダウンロードして、
ファイル共有に保存します。
Update-Help : インターネットまたはファイル共有からヘルプ ファイルを
ダウンロードしてインストールします。
Get-Help Get-Process : Get-Process コマンドレットに関するヘルプを表示します。
Get-Help Get-Process -Online
: Get-Process コマンドレットのオンライン ヘルプを開きます。
Help Get-Process : Get-Process に関するヘルプを 1 ページずつ表示します。
Get-Process -? : Get-Process コマンドレットに関するヘルプを表示します。
Get-Help About_Modules : Windows PowerShell モジュールに関するヘルプを表示します。
Get-Help remoting : ヘルプ トピックで "リモート処理" という単語を検索します。
関連項目:
about_Updatable_Help
Get-Help
Save-Help
Update-Help
PS C:\Users\rinsaka>
コマンドの取得 (Get-Command)
コマンドの一覧は「Get-Command
」で確認できます.実行すると数多くのコマンドが準備されていることが分かります.これらは「Alias(別名)」,「Function(機能・関数)」,「Cmdlet(コマンドレット)」という3種類のCommandtypeに分類されている(実際にはさらに「ExternalScript」と「Application」もある)ことに注意してください.厳密には「コマンド」と「コマンドレット」という用語は使い分けるべきですが,PowerShellコマンドの多くがコマンドレットであることから,まずは便宜的に同じものとしてコマンドレットを使って説明します(実際にMicrosoftが提供するヘルプなどでもコマンドして説明すべきところをコマンドレットとして説明しています).また,ほぼすべてのコマンドレットは「Get-Help
」や「Get-Command
」のような「動詞-名詞」の形式になっていることに注意してください.
PS C:\Users\rinsaka> Get-Command ⏎ CommandType Name Version Source ----------- ---- ------- ------ Alias Add-AppPackage 2.0.1.0 Appx Alias Add-AppPackageVolume 2.0.1.0 Appx Alias Add-AppProvisionedPackage 3.0 Dism Alias Add-MsixPackage 2.0.1.0 Appx Alias Add-MsixPackageVolume 2.0.1.0 Appx Alias Add-MsixVolume 2.0.1.0 Appx Alias Add-ProvisionedAppPackage 3.0 Dism Alias Add-ProvisionedAppSharedPackageContainer 3.0 Dism Alias Add-ProvisionedAppxPackage 3.0 Dism Alias Add-ProvisioningPackage 3.0 Provisioning Alias Add-TrustedProvisioningCertificate 3.0 Provisioning Alias Apply-WindowsUnattend 3.0 Dism Alias Disable-PhysicalDiskIndication 2.0.0.0 Storage Alias Disable-PhysicalDiskIndication 1.0.0.0 VMDirectStorage Alias Disable-StorageDiagnosticLog 2.0.0.0 Storage Alias Disable-StorageDiagnosticLog 1.0.0.0 VMDirectStorage Alias Dismount-AppPackageVolume 2.0.1.0 Appx Alias Dismount-MsixPackageVolume 2.0.1.0 Appx Alias Dismount-MsixVolume 2.0.1.0 Appx Alias Enable-PhysicalDiskIndication 2.0.0.0 Storage Alias Enable-PhysicalDiskIndication 1.0.0.0 VMDirectStorage Alias Enable-StorageDiagnosticLog 2.0.0.0 Storage Alias Enable-StorageDiagnosticLog 1.0.0.0 VMDirectStorage Alias Flush-Volume 2.0.0.0 Storage Alias Flush-Volume 1.0.0.0 VMDirectStorage Alias Get-AppPackage 2.0.1.0 Appx Alias Get-AppPackageAutoUpdateSettings 2.0.1.0 Appx Alias Get-AppPackageDefaultVolume 2.0.1.0 Appx Alias Get-AppPackageLastError 2.0.1.0 Appx Alias Get-AppPackageLog 2.0.1.0 Appx Alias Get-AppPackageManifest 2.0.1.0 Appx Alias Get-AppPackageVolume 2.0.1.0 Appx Alias Get-AppProvisionedPackage 3.0 Dism Alias Get-DiskSNV 2.0.0.0 Storage Alias Get-DiskSNV 1.0.0.0 VMDirectStorage Alias Get-Language 1.0 LanguagePackManagement Alias Get-MsixDefaultVolume 2.0.1.0 Appx Alias Get-MsixLastError 2.0.1.0 Appx Alias Get-MsixLog 2.0.1.0 Appx Alias Get-MsixPackage 2.0.1.0 Appx Alias Get-MsixPackageAutoUpdateSettings 2.0.1.0 Appx Alias Get-MsixPackageDefaultVolume 2.0.1.0 Appx Alias Get-MsixPackageLastError 2.0.1.0 Appx Alias Get-MsixPackageLog 2.0.1.0 Appx Alias Get-MsixPackageManifest 2.0.1.0 Appx Alias Get-MsixPackageVolume 2.0.1.0 Appx Alias Get-MsixVolume 2.0.1.0 Appx Alias Get-PhysicalDiskSNV 2.0.0.0 Storage Alias Get-PhysicalDiskSNV 1.0.0.0 VMDirectStorage Alias Get-PreferredLanguage 1.0 LanguagePackManagement Alias Get-ProvisionedAppPackage 3.0 Dism Alias Get-ProvisionedAppSharedPackageContainer 3.0 Dism Alias Get-ProvisionedAppxPackage 3.0 Dism Alias Get-StorageEnclosureSNV 2.0.0.0 Storage Alias Get-StorageEnclosureSNV 1.0.0.0 VMDirectStorage Alias Get-SystemLanguage 1.0 LanguagePackManagement Alias Initialize-Volume 2.0.0.0 Storage Alias Initialize-Volume 1.0.0.0 VMDirectStorage Alias Mount-AppPackageVolume 2.0.1.0 Appx Alias Mount-MsixPackageVolume 2.0.1.0 Appx Alias Mount-MsixVolume 2.0.1.0 Appx Alias Move-AppPackage 2.0.1.0 Appx Alias Move-MsixPackage 2.0.1.0 Appx Alias Move-SmbClient 2.0.0.0 SmbWitness Alias Optimize-AppProvisionedPackages 3.0 Dism Alias Optimize-ProvisionedAppPackages 3.0 Dism Alias Optimize-ProvisionedAppxPackages 3.0 Dism Alias Remove-AppPackage 2.0.1.0 Appx Alias Remove-AppPackageAutoUpdateSettings 2.0.1.0 Appx Alias Remove-AppPackageVolume 2.0.1.0 Appx Alias Remove-AppProvisionedPackage 3.0 Dism Alias Remove-EtwTraceSession 1.0.0.0 EventTracingManagement Alias Remove-MsixPackage 2.0.1.0 Appx Alias Remove-MsixPackageAutoUpdateSettings 2.0.1.0 Appx Alias Remove-MsixPackageVolume 2.0.1.0 Appx Alias Remove-MsixVolume 2.0.1.0 Appx Alias Remove-ProvisionedAppPackage 3.0 Dism Alias Remove-ProvisionedAppSharedPackageContainer 3.0 Dism Alias Remove-ProvisionedAppxPackage 3.0 Dism Alias Remove-ProvisioningPackage 3.0 Provisioning Alias Remove-TrustedProvisioningCertificate 3.0 Provisioning Alias Reset-AppPackage 2.0.1.0 Appx Alias Reset-MsixPackage 2.0.1.0 Appx Alias Set-AppPackageAutoUpdateSettings 2.0.1.0 Appx Alias Set-AppPackageDefaultVolume 2.0.1.0 Appx Alias Set-AppPackageProvisionedDataFile 3.0 Dism Alias Set-AutologgerConfig 1.0.0.0 EventTracingManagement Alias Set-EtwTraceSession 1.0.0.0 EventTracingManagement Alias Set-MsixDefaultVolume 2.0.1.0 Appx Alias Set-MsixPackageAutoUpdateSettings 2.0.1.0 Appx Alias Set-MsixPackageDefaultVolume 2.0.1.0 Appx Alias Set-PreferredLanguage 1.0 LanguagePackManagement Alias Set-ProvisionedAppPackageDataFile 3.0 Dism Alias Set-ProvisionedAppXDataFile 3.0 Dism Alias Set-SystemLanguage 1.0 LanguagePackManagement Alias Write-FileSystemCache 2.0.0.0 Storage Alias Write-FileSystemCache 1.0.0.0 VMDirectStorage Function A: Function Add-BCDataCacheExtension 1.0.0.0 BranchCache Function Add-BitLockerKeyProtector 1.0.0.0 BitLocker Function Add-DnsClientDohServerAddress 1.0.0.0 DnsClient Function Add-DnsClientNrptRule 1.0.0.0 DnsClient Function Add-DtcClusterTMMapping 1.0.0.0 MsDtc Function Add-EtwTraceProvider 1.0.0.0 EventTracingManagement Function Add-InitiatorIdToMaskingSet 2.0.0.0 Storage Function Add-MpPreference 1.0 ConfigDefender Function Add-MpPreference 1.0 Defender Function Add-NetEventNetworkAdapter 1.0.0.0 NetEventPacketCapture Function Add-NetEventPacketCaptureProvider 1.0.0.0 NetEventPacketCapture Function Add-NetEventProvider 1.0.0.0 NetEventPacketCapture Function Add-NetEventVFPProvider 1.0.0.0 NetEventPacketCapture Function Add-NetEventVmNetworkAdapter 1.0.0.0 NetEventPacketCapture Function Add-NetEventVmSwitch 1.0.0.0 NetEventPacketCapture Function Add-NetEventVmSwitchProvider 1.0.0.0 NetEventPacketCapture Function Add-NetEventWFPCaptureProvider 1.0.0.0 NetEventPacketCapture Function Add-NetIPHttpsCertBinding 1.0.0.0 NetworkTransition Function Add-NetLbfoTeamMember 2.0.0.0 NetLbfo Function Add-NetLbfoTeamNic 2.0.0.0 NetLbfo Function Add-NetNatExternalAddress 1.0.0.0 NetNat Function Add-NetNatStaticMapping 1.0.0.0 NetNat Function Add-NetSwitchTeamMember 1.0.0.0 NetSwitchTeam Function Add-OdbcDsn 1.0.0.0 Wdac Function Add-PartitionAccessPath 2.0.0.0 Storage Function Add-PhysicalDisk 2.0.0.0 Storage Function Add-Printer 1.1 PrintManagement Function Add-PrinterDriver 1.1 PrintManagement Function Add-PrinterPort 1.1 PrintManagement Function Add-StorageFaultDomain 2.0.0.0 Storage Function Add-TargetPortToMaskingSet 2.0.0.0 Storage Function Add-VirtualDiskToMaskingSet 2.0.0.0 Storage Function Add-VMDirectVirtualDisk 1.0.0.0 VMDirectStorage Function Add-VpnConnection 2.0.0.0 VpnClient Function Add-VpnConnectionRoute 2.0.0.0 VpnClient Function Add-VpnConnectionTriggerApplication 2.0.0.0 VpnClient Function Add-VpnConnectionTriggerDnsConfiguration 2.0.0.0 VpnClient Function Add-VpnConnectionTriggerTrustedNetwork 2.0.0.0 VpnClient Function AfterAll 3.4.0 Pester Function AfterEach 3.4.0 Pester Function Assert-MockCalled 3.4.0 Pester Function Assert-VerifiableMocks 3.4.0 Pester Function B: Function Backup-BitLockerKeyProtector 1.0.0.0 BitLocker Function BackupToAAD-BitLockerKeyProtector 1.0.0.0 BitLocker Function BackupToMSA-BitLockerKeyProtector 1.0.0.0 BitLocker Function BeforeAll 3.4.0 Pester Function BeforeEach 3.4.0 Pester Function Block-FileShareAccess 2.0.0.0 Storage Function Block-SmbClientAccessToServer 2.0.0.0 SmbShare Function Block-SmbShareAccess 2.0.0.0 SmbShare Function C: Function cd.. Function cd\ Function Clear-AssignedAccess 1.0.0.0 AssignedAccess Function Clear-BCCache 1.0.0.0 BranchCache Function Clear-BitLockerAutoUnlock 1.0.0.0 BitLocker Function Clear-Disk 2.0.0.0 Storage Function Clear-DnsClientCache 1.0.0.0 DnsClient Function Clear-FileStorageTier 2.0.0.0 Storage Function Clear-Host Function Clear-PcsvDeviceLog 1.0.0.0 PcsvDevice Function Clear-StorageBusDisk 1.0.0.0 StorageBusCache Function Clear-StorageDiagnosticInfo 2.0.0.0 Storage Function Close-SmbOpenFile 2.0.0.0 SmbShare Function Close-SmbSession 2.0.0.0 SmbShare Function Compress-Archive 1.0.1.0 Microsoft.PowerShell.Archive Function Configuration 1.1 PSDesiredStateConfiguration Function Connect-IscsiTarget 1.0.0.0 iSCSI Function Connect-VirtualDisk 2.0.0.0 Storage Function Context 3.4.0 Pester Function ConvertFrom-SddlString 3.1.0.0 Microsoft.PowerShell.Utility Function Convert-PhysicalDisk 2.0.0.0 Storage Function Copy-NetFirewallRule 2.0.0.0 NetSecurity Function Copy-NetIPsecMainModeCryptoSet 2.0.0.0 NetSecurity Function Copy-NetIPsecMainModeRule 2.0.0.0 NetSecurity Function Copy-NetIPsecPhase1AuthSet 2.0.0.0 NetSecurity Function Copy-NetIPsecPhase2AuthSet 2.0.0.0 NetSecurity Function Copy-NetIPsecQuickModeCryptoSet 2.0.0.0 NetSecurity Function Copy-NetIPsecRule 2.0.0.0 NetSecurity Function D: Function Debug-FileShare 2.0.0.0 Storage Function Debug-MMAppPrelaunch 1.0 MMAgent Function Debug-StorageSubSystem 2.0.0.0 Storage Function Debug-Volume 2.0.0.0 Storage Function Delete-DeliveryOptimizationCache 1.0.3.0 DeliveryOptimization Function Describe 3.4.0 Pester Function Disable-BC 1.0.0.0 BranchCache Function Disable-BCDowngrading 1.0.0.0 BranchCache Function Disable-BCServeOnBattery 1.0.0.0 BranchCache Function Disable-BitLocker 1.0.0.0 BitLocker Function Disable-BitLockerAutoUnlock 1.0.0.0 BitLocker Function Disable-DAManualEntryPointSelection 1.0.0.0 DirectAccessClientComponents Function Disable-DeliveryOptimizationVerboseLogs 1.0.3.0 DeliveryOptimization Function Disable-DscDebug 1.1 PSDesiredStateConfiguration Function Disable-MMAgent 1.0 MMAgent Function Disable-NetAdapter 2.0.0.0 NetAdapter Function Disable-NetAdapterBinding 2.0.0.0 NetAdapter Function Disable-NetAdapterChecksumOffload 2.0.0.0 NetAdapter Function Disable-NetAdapterEncapsulatedPacketTaskOffload 2.0.0.0 NetAdapter Function Disable-NetAdapterIPsecOffload 2.0.0.0 NetAdapter Function Disable-NetAdapterLso 2.0.0.0 NetAdapter Function Disable-NetAdapterPacketDirect 2.0.0.0 NetAdapter Function Disable-NetAdapterPowerManagement 2.0.0.0 NetAdapter Function Disable-NetAdapterQos 2.0.0.0 NetAdapter Function Disable-NetAdapterRdma 2.0.0.0 NetAdapter Function Disable-NetAdapterRsc 2.0.0.0 NetAdapter Function Disable-NetAdapterRss 2.0.0.0 NetAdapter Function Disable-NetAdapterSriov 2.0.0.0 NetAdapter Function Disable-NetAdapterUro 2.0.0.0 NetAdapter Function Disable-NetAdapterUso 2.0.0.0 NetAdapter Function Disable-NetAdapterVmq 2.0.0.0 NetAdapter Function Disable-NetDnsTransitionConfiguration 1.0.0.0 NetworkTransition Function Disable-NetFirewallHyperVRule 2.0.0.0 NetSecurity Function Disable-NetFirewallRule 2.0.0.0 NetSecurity Function Disable-NetIPHttpsProfile 1.0.0.0 NetworkTransition Function Disable-NetIPsecMainModeRule 2.0.0.0 NetSecurity Function Disable-NetIPsecRule 2.0.0.0 NetSecurity Function Disable-NetNatTransitionConfiguration 1.0.0.0 NetworkTransition Function Disable-NetworkSwitchEthernetPort 1.0.0.0 NetworkSwitchManager Function Disable-NetworkSwitchFeature 1.0.0.0 NetworkSwitchManager Function Disable-NetworkSwitchVlan 1.0.0.0 NetworkSwitchManager Function Disable-OdbcPerfCounter 1.0.0.0 Wdac Function Disable-PhysicalDiskIdentification 2.0.0.0 Storage Function Disable-PnpDevice 1.0.0.0 PnpDevice Function Disable-PSTrace 1.0.0.0 PSDiagnostics Function Disable-PSWSManCombinedTrace 1.0.0.0 PSDiagnostics Function Disable-ScheduledTask 1.0.0.0 ScheduledTasks Function Disable-SmbDelegation 2.0.0.0 SmbShare Function Disable-StorageBusCache 1.0.0.0 StorageBusCache Function Disable-StorageBusDisk 1.0.0.0 StorageBusCache Function Disable-StorageDataCollection 2.0.0.0 Storage Function Disable-StorageEnclosureIdentification 2.0.0.0 Storage Function Disable-StorageEnclosurePower 2.0.0.0 Storage Function Disable-StorageHighAvailability 2.0.0.0 Storage Function Disable-StorageMaintenanceMode 2.0.0.0 Storage Function Disable-WdacBidTrace 1.0.0.0 Wdac Function Disable-WSManTrace 1.0.0.0 PSDiagnostics Function Disconnect-IscsiTarget 1.0.0.0 iSCSI Function Disconnect-VirtualDisk 2.0.0.0 Storage Function Dismount-DiskImage 2.0.0.0 Storage Function E: Function Enable-BCDistributed 1.0.0.0 BranchCache Function Enable-BCDowngrading 1.0.0.0 BranchCache Function Enable-BCHostedClient 1.0.0.0 BranchCache Function Enable-BCHostedServer 1.0.0.0 BranchCache Function Enable-BCLocal 1.0.0.0 BranchCache Function Enable-BCServeOnBattery 1.0.0.0 BranchCache Function Enable-BitLocker 1.0.0.0 BitLocker Function Enable-BitLockerAutoUnlock 1.0.0.0 BitLocker Function Enable-DAManualEntryPointSelection 1.0.0.0 DirectAccessClientComponents Function Enable-DeliveryOptimizationVerboseLogs 1.0.3.0 DeliveryOptimization Function Enable-DscDebug 1.1 PSDesiredStateConfiguration Function Enable-MMAgent 1.0 MMAgent Function Enable-NetAdapter 2.0.0.0 NetAdapter Function Enable-NetAdapterBinding 2.0.0.0 NetAdapter Function Enable-NetAdapterChecksumOffload 2.0.0.0 NetAdapter Function Enable-NetAdapterEncapsulatedPacketTaskOffload 2.0.0.0 NetAdapter Function Enable-NetAdapterIPsecOffload 2.0.0.0 NetAdapter Function Enable-NetAdapterLso 2.0.0.0 NetAdapter Function Enable-NetAdapterPacketDirect 2.0.0.0 NetAdapter Function Enable-NetAdapterPowerManagement 2.0.0.0 NetAdapter Function Enable-NetAdapterQos 2.0.0.0 NetAdapter Function Enable-NetAdapterRdma 2.0.0.0 NetAdapter Function Enable-NetAdapterRsc 2.0.0.0 NetAdapter Function Enable-NetAdapterRss 2.0.0.0 NetAdapter Function Enable-NetAdapterSriov 2.0.0.0 NetAdapter Function Enable-NetAdapterUro 2.0.0.0 NetAdapter Function Enable-NetAdapterUso 2.0.0.0 NetAdapter Function Enable-NetAdapterVmq 2.0.0.0 NetAdapter Function Enable-NetDnsTransitionConfiguration 1.0.0.0 NetworkTransition Function Enable-NetFirewallHyperVRule 2.0.0.0 NetSecurity Function Enable-NetFirewallRule 2.0.0.0 NetSecurity Function Enable-NetIPHttpsProfile 1.0.0.0 NetworkTransition Function Enable-NetIPsecMainModeRule 2.0.0.0 NetSecurity Function Enable-NetIPsecRule 2.0.0.0 NetSecurity Function Enable-NetNatTransitionConfiguration 1.0.0.0 NetworkTransition Function Enable-NetworkSwitchEthernetPort 1.0.0.0 NetworkSwitchManager Function Enable-NetworkSwitchFeature 1.0.0.0 NetworkSwitchManager Function Enable-NetworkSwitchVlan 1.0.0.0 NetworkSwitchManager Function Enable-OdbcPerfCounter 1.0.0.0 Wdac Function Enable-PhysicalDiskIdentification 2.0.0.0 Storage Function Enable-PnpDevice 1.0.0.0 PnpDevice Function Enable-PSTrace 1.0.0.0 PSDiagnostics Function Enable-PSWSManCombinedTrace 1.0.0.0 PSDiagnostics Function Enable-ScheduledTask 1.0.0.0 ScheduledTasks Function Enable-SmbDelegation 2.0.0.0 SmbShare Function Enable-StorageBusCache 1.0.0.0 StorageBusCache Function Enable-StorageBusDisk 1.0.0.0 StorageBusCache Function Enable-StorageDataCollection 2.0.0.0 Storage Function Enable-StorageEnclosureIdentification 2.0.0.0 Storage Function Enable-StorageEnclosurePower 2.0.0.0 Storage Function Enable-StorageHighAvailability 2.0.0.0 Storage Function Enable-StorageMaintenanceMode 2.0.0.0 Storage Function Enable-WdacBidTrace 1.0.0.0 Wdac Function Enable-WSManTrace 1.0.0.0 PSDiagnostics Function Expand-Archive 1.0.1.0 Microsoft.PowerShell.Archive Function Export-BCCachePackage 1.0.0.0 BranchCache Function Export-BCSecretKey 1.0.0.0 BranchCache Function Export-ODataEndpointProxy 1.0 Microsoft.PowerShell.ODataUtils Function Export-ScheduledTask 1.0.0.0 ScheduledTasks Function Export-WinhttpProxy 1.0.0.0 WinHttpProxy Function F: Function Find-Command 1.0.0.1 PowerShellGet Function Find-DscResource 1.0.0.1 PowerShellGet Function Find-Module 1.0.0.1 PowerShellGet Function Find-NetIPsecRule 2.0.0.0 NetSecurity Function Find-NetRoute 1.0.0.0 NetTCPIP Function Find-RoleCapability 1.0.0.1 PowerShellGet Function Find-Script 1.0.0.1 PowerShellGet Function Flush-EtwTraceSession 1.0.0.0 EventTracingManagement Function Format-Hex 3.1.0.0 Microsoft.PowerShell.Utility Function Format-Volume 2.0.0.0 Storage Function G: Function Get-AppBackgroundTask 1.0.0.0 AppBackgroundTask Function Get-AppvVirtualProcess 1.0.0.0 AppvClient Function Get-AppxLastError 2.0.1.0 Appx Function Get-AppxLog 2.0.1.0 Appx Function Get-AssignedAccess 1.0.0.0 AssignedAccess Function Get-AutologgerConfig 1.0.0.0 EventTracingManagement Function Get-BCClientConfiguration 1.0.0.0 BranchCache Function Get-BCContentServerConfiguration 1.0.0.0 BranchCache Function Get-BCDataCache 1.0.0.0 BranchCache Function Get-BCDataCacheExtension 1.0.0.0 BranchCache Function Get-BCHashCache 1.0.0.0 BranchCache Function Get-BCHostedCacheServerConfiguration 1.0.0.0 BranchCache Function Get-BCNetworkConfiguration 1.0.0.0 BranchCache Function Get-BCStatus 1.0.0.0 BranchCache Function Get-BitLockerVolume 1.0.0.0 BitLocker Function Get-ClusteredScheduledTask 1.0.0.0 ScheduledTasks Function Get-DAClientExperienceConfiguration 1.0.0.0 DirectAccessClientComponents Function Get-DAConnectionStatus 1.0.0.0 NetworkConnectivityStatus Function Get-DAEntryPointTableItem 1.0.0.0 DirectAccessClientComponents Function Get-DedupProperties 2.0.0.0 Storage Function Get-DeliveryOptimizationPerfSnap 1.0.3.0 DeliveryOptimization Function Get-DeliveryOptimizationPerfSnapThisMonth 1.0.3.0 DeliveryOptimization Function Get-DeliveryOptimizationStatus 1.0.3.0 DeliveryOptimization Function Get-Disk 2.0.0.0 Storage Function Get-DiskImage 2.0.0.0 Storage Function Get-DiskStorageNodeView 2.0.0.0 Storage Function Get-DnsClient 1.0.0.0 DnsClient Function Get-DnsClientCache 1.0.0.0 DnsClient Function Get-DnsClientDohServerAddress 1.0.0.0 DnsClient Function Get-DnsClientGlobalSetting 1.0.0.0 DnsClient Function Get-DnsClientNrptGlobal 1.0.0.0 DnsClient Function Get-DnsClientNrptPolicy 1.0.0.0 DnsClient Function Get-DnsClientNrptRule 1.0.0.0 DnsClient Function Get-DnsClientServerAddress 1.0.0.0 DnsClient Function Get-DOConfig 1.0.3.0 DeliveryOptimization Function Get-DODownloadMode 1.0.3.0 DeliveryOptimization Function Get-DOPercentageMaxBackgroundBandwidth 1.0.3.0 DeliveryOptimization Function Get-DOPercentageMaxForegroundBandwidth 1.0.3.0 DeliveryOptimization Function Get-DscConfiguration 1.1 PSDesiredStateConfiguration Function Get-DscConfigurationStatus 1.1 PSDesiredStateConfiguration Function Get-DscLocalConfigurationManager 1.1 PSDesiredStateConfiguration Function Get-DscResource 1.1 PSDesiredStateConfiguration Function Get-Dtc 1.0.0.0 MsDtc Function Get-DtcAdvancedHostSetting 1.0.0.0 MsDtc Function Get-DtcAdvancedSetting 1.0.0.0 MsDtc Function Get-DtcClusterDefault 1.0.0.0 MsDtc Function Get-DtcClusterTMMapping 1.0.0.0 MsDtc Function Get-DtcDefault 1.0.0.0 MsDtc Function Get-DtcLog 1.0.0.0 MsDtc Function Get-DtcNetworkSetting 1.0.0.0 MsDtc Function Get-DtcTransaction 1.0.0.0 MsDtc Function Get-DtcTransactionsStatistics 1.0.0.0 MsDtc Function Get-DtcTransactionsTraceSession 1.0.0.0 MsDtc Function Get-DtcTransactionsTraceSetting 1.0.0.0 MsDtc Function Get-EtwTraceProvider 1.0.0.0 EventTracingManagement Function Get-EtwTraceSession 1.0.0.0 EventTracingManagement Function Get-FileHash 3.1.0.0 Microsoft.PowerShell.Utility Function Get-FileIntegrity 2.0.0.0 Storage Function Get-FileShare 2.0.0.0 Storage Function Get-FileShareAccessControlEntry 2.0.0.0 Storage Function Get-FileStorageTier 2.0.0.0 Storage Function Get-InitiatorId 2.0.0.0 Storage Function Get-InitiatorPort 2.0.0.0 Storage Function Get-InstalledModule 1.0.0.1 PowerShellGet Function Get-InstalledScript 1.0.0.1 PowerShellGet Function Get-IscsiConnection 1.0.0.0 iSCSI Function Get-IscsiSession 1.0.0.0 iSCSI Function Get-IscsiTarget 1.0.0.0 iSCSI Function Get-IscsiTargetPortal 1.0.0.0 iSCSI Function Get-IseSnippet 1.0.0.0 ISE Function Get-LapsAADPassword 1.0.0.0 LAPS Function Get-LapsDiagnostics 1.0.0.0 LAPS Function Get-LogProperties 1.0.0.0 PSDiagnostics Function Get-MaskingSet 2.0.0.0 Storage Function Get-MMAgent 1.0 MMAgent Function Get-MockDynamicParameters 3.4.0 Pester Function Get-MpBehavioralNetworkBlockingRules 1.0 ConfigDefender Function Get-MpComputerStatus 1.0 ConfigDefender Function Get-MpComputerStatus 1.0 Defender Function Get-MpPerformanceReport 1.0 ConfigDefenderPerformance Function Get-MpPerformanceReport 1.0 DefenderPerformance Function Get-MpPreference 1.0 ConfigDefender Function Get-MpPreference 1.0 Defender Function Get-MpThreat 1.0 ConfigDefender Function Get-MpThreat 1.0 Defender Function Get-MpThreatCatalog 1.0 ConfigDefender Function Get-MpThreatCatalog 1.0 Defender Function Get-MpThreatDetection 1.0 ConfigDefender Function Get-MpThreatDetection 1.0 Defender Function Get-NCSIPolicyConfiguration 1.0.0.0 NetworkConnectivityStatus Function Get-Net6to4Configuration 1.0.0.0 NetworkTransition Function Get-NetAdapter 2.0.0.0 NetAdapter Function Get-NetAdapterAdvancedProperty 2.0.0.0 NetAdapter Function Get-NetAdapterBinding 2.0.0.0 NetAdapter Function Get-NetAdapterChecksumOffload 2.0.0.0 NetAdapter Function Get-NetAdapterDataPathConfiguration 2.0.0.0 NetAdapter Function Get-NetAdapterEncapsulatedPacketTaskOffload 2.0.0.0 NetAdapter Function Get-NetAdapterHardwareInfo 2.0.0.0 NetAdapter Function Get-NetAdapterIPsecOffload 2.0.0.0 NetAdapter Function Get-NetAdapterLso 2.0.0.0 NetAdapter Function Get-NetAdapterPacketDirect 2.0.0.0 NetAdapter Function Get-NetAdapterPowerManagement 2.0.0.0 NetAdapter Function Get-NetAdapterQos 2.0.0.0 NetAdapter Function Get-NetAdapterRdma 2.0.0.0 NetAdapter Function Get-NetAdapterRsc 2.0.0.0 NetAdapter Function Get-NetAdapterRss 2.0.0.0 NetAdapter Function Get-NetAdapterSriov 2.0.0.0 NetAdapter Function Get-NetAdapterSriovVf 2.0.0.0 NetAdapter Function Get-NetAdapterStatistics 2.0.0.0 NetAdapter Function Get-NetAdapterUro 2.0.0.0 NetAdapter Function Get-NetAdapterUso 2.0.0.0 NetAdapter Function Get-NetAdapterVmq 2.0.0.0 NetAdapter Function Get-NetAdapterVMQQueue 2.0.0.0 NetAdapter Function Get-NetAdapterVPort 2.0.0.0 NetAdapter Function Get-NetCompartment 1.0.0.0 NetTCPIP Function Get-NetConnectionProfile 2.0.0.0 NetConnection Function Get-NetDnsTransitionConfiguration 1.0.0.0 NetworkTransition Function Get-NetDnsTransitionMonitoring 1.0.0.0 NetworkTransition Function Get-NetEventNetworkAdapter 1.0.0.0 NetEventPacketCapture Function Get-NetEventPacketCaptureProvider 1.0.0.0 NetEventPacketCapture Function Get-NetEventProvider 1.0.0.0 NetEventPacketCapture Function Get-NetEventSession 1.0.0.0 NetEventPacketCapture Function Get-NetEventVFPProvider 1.0.0.0 NetEventPacketCapture Function Get-NetEventVmNetworkAdapter 1.0.0.0 NetEventPacketCapture Function Get-NetEventVmSwitch 1.0.0.0 NetEventPacketCapture Function Get-NetEventVmSwitchProvider 1.0.0.0 NetEventPacketCapture Function Get-NetEventWFPCaptureProvider 1.0.0.0 NetEventPacketCapture Function Get-NetFirewallAddressFilter 2.0.0.0 NetSecurity Function Get-NetFirewallApplicationFilter 2.0.0.0 NetSecurity Function Get-NetFirewallDynamicKeywordAddress 2.0.0.0 NetSecurity Function Get-NetFirewallHyperVPort 2.0.0.0 NetSecurity Function Get-NetFirewallHyperVProfile 2.0.0.0 NetSecurity Function Get-NetFirewallHyperVRule 2.0.0.0 NetSecurity Function Get-NetFirewallHyperVVMCreator 2.0.0.0 NetSecurity Function Get-NetFirewallHyperVVMSetting 2.0.0.0 NetSecurity Function Get-NetFirewallInterfaceFilter 2.0.0.0 NetSecurity Function Get-NetFirewallInterfaceTypeFilter 2.0.0.0 NetSecurity Function Get-NetFirewallPortFilter 2.0.0.0 NetSecurity Function Get-NetFirewallProfile 2.0.0.0 NetSecurity Function Get-NetFirewallRule 2.0.0.0 NetSecurity Function Get-NetFirewallSecurityFilter 2.0.0.0 NetSecurity Function Get-NetFirewallServiceFilter 2.0.0.0 NetSecurity Function Get-NetFirewallSetting 2.0.0.0 NetSecurity Function Get-NetIPAddress 1.0.0.0 NetTCPIP Function Get-NetIPConfiguration 1.0.0.0 NetTCPIP Function Get-NetIPHttpsConfiguration 1.0.0.0 NetworkTransition Function Get-NetIPHttpsState 1.0.0.0 NetworkTransition Function Get-NetIPInterface 1.0.0.0 NetTCPIP Function Get-NetIPsecDospSetting 2.0.0.0 NetSecurity Function Get-NetIPsecMainModeCryptoSet 2.0.0.0 NetSecurity Function Get-NetIPsecMainModeRule 2.0.0.0 NetSecurity Function Get-NetIPsecMainModeSA 2.0.0.0 NetSecurity Function Get-NetIPsecPhase1AuthSet 2.0.0.0 NetSecurity Function Get-NetIPsecPhase2AuthSet 2.0.0.0 NetSecurity Function Get-NetIPsecQuickModeCryptoSet 2.0.0.0 NetSecurity Function Get-NetIPsecQuickModeSA 2.0.0.0 NetSecurity Function Get-NetIPsecRule 2.0.0.0 NetSecurity Function Get-NetIPv4Protocol 1.0.0.0 NetTCPIP Function Get-NetIPv6Protocol 1.0.0.0 NetTCPIP Function Get-NetIsatapConfiguration 1.0.0.0 NetworkTransition Function Get-NetLbfoTeam 2.0.0.0 NetLbfo Function Get-NetLbfoTeamMember 2.0.0.0 NetLbfo Function Get-NetLbfoTeamNic 2.0.0.0 NetLbfo Function Get-NetNat 1.0.0.0 NetNat Function Get-NetNatExternalAddress 1.0.0.0 NetNat Function Get-NetNatGlobal 1.0.0.0 NetNat Function Get-NetNatSession 1.0.0.0 NetNat Function Get-NetNatStaticMapping 1.0.0.0 NetNat Function Get-NetNatTransitionConfiguration 1.0.0.0 NetworkTransition Function Get-NetNatTransitionMonitoring 1.0.0.0 NetworkTransition Function Get-NetNeighbor 1.0.0.0 NetTCPIP Function Get-NetOffloadGlobalSetting 1.0.0.0 NetTCPIP Function Get-NetPrefixPolicy 1.0.0.0 NetTCPIP Function Get-NetQosPolicy 2.0.0.0 NetQos Function Get-NetRoute 1.0.0.0 NetTCPIP Function Get-NetSwitchTeam 1.0.0.0 NetSwitchTeam Function Get-NetSwitchTeamMember 1.0.0.0 NetSwitchTeam Function Get-NetTCPConnection 1.0.0.0 NetTCPIP Function Get-NetTCPSetting 1.0.0.0 NetTCPIP Function Get-NetTeredoConfiguration 1.0.0.0 NetworkTransition Function Get-NetTeredoState 1.0.0.0 NetworkTransition Function Get-NetTransportFilter 1.0.0.0 NetTCPIP Function Get-NetUDPEndpoint 1.0.0.0 NetTCPIP Function Get-NetUDPSetting 1.0.0.0 NetTCPIP Function Get-NetView 2023.2.... Get-NetView Function Get-NetworkSwitchEthernetPort 1.0.0.0 NetworkSwitchManager Function Get-NetworkSwitchFeature 1.0.0.0 NetworkSwitchManager Function Get-NetworkSwitchGlobalData 1.0.0.0 NetworkSwitchManager Function Get-NetworkSwitchVlan 1.0.0.0 NetworkSwitchManager Function Get-OdbcDriver 1.0.0.0 Wdac Function Get-OdbcDsn 1.0.0.0 Wdac Function Get-OdbcPerfCounter 1.0.0.0 Wdac Function Get-OffloadDataTransferSetting 2.0.0.0 Storage Function Get-OperationValidation 1.0.1 Microsoft.PowerShell.Operation.Validation Function Get-Partition 2.0.0.0 Storage Function Get-PartitionSupportedSize 2.0.0.0 Storage Function Get-PcsvDevice 1.0.0.0 PcsvDevice Function Get-PcsvDeviceLog 1.0.0.0 PcsvDevice Function Get-PhysicalDisk 2.0.0.0 Storage Function Get-PhysicalDiskStorageNodeView 2.0.0.0 Storage Function Get-PhysicalExtent 2.0.0.0 Storage Function Get-PhysicalExtentAssociation 2.0.0.0 Storage Function Get-PnpDevice 1.0.0.0 PnpDevice Function Get-PnpDeviceProperty 1.0.0.0 PnpDevice Function Get-PrintConfiguration 1.1 PrintManagement Function Get-Printer 1.1 PrintManagement Function Get-PrinterDriver 1.1 PrintManagement Function Get-PrinterPort 1.1 PrintManagement Function Get-PrinterProperty 1.1 PrintManagement Function Get-PrintJob 1.1 PrintManagement Function Get-PSRepository 1.0.0.1 PowerShellGet Function Get-ResiliencySetting 2.0.0.0 Storage Function Get-ScheduledTask 1.0.0.0 ScheduledTasks Function Get-ScheduledTaskInfo 1.0.0.0 ScheduledTasks Function Get-SmbBandWidthLimit 2.0.0.0 SmbShare Function Get-SmbClientAccessToServer 2.0.0.0 SmbShare Function Get-SmbClientCertificateMapping 2.0.0.0 SmbShare Function Get-SmbClientConfiguration 2.0.0.0 SmbShare Function Get-SmbClientNetworkInterface 2.0.0.0 SmbShare Function Get-SmbConnection 2.0.0.0 SmbShare Function Get-SmbDelegation 2.0.0.0 SmbShare Function Get-SmbGlobalMapping 2.0.0.0 SmbShare Function Get-SmbMapping 2.0.0.0 SmbShare Function Get-SmbMultichannelConnection 2.0.0.0 SmbShare Function Get-SmbMultichannelConstraint 2.0.0.0 SmbShare Function Get-SmbOpenFile 2.0.0.0 SmbShare Function Get-SmbServerAlternativePort 2.0.0.0 SmbShare Function Get-SmbServerCertificateMapping 2.0.0.0 SmbShare Function Get-SmbServerCertProps 2.0.0.0 SmbShare Function Get-SmbServerConfiguration 2.0.0.0 SmbShare Function Get-SmbServerNetworkInterface 2.0.0.0 SmbShare Function Get-SmbSession 2.0.0.0 SmbShare Function Get-SmbShare 2.0.0.0 SmbShare Function Get-SmbShareAccess 2.0.0.0 SmbShare Function Get-SmbWitnessClient 2.0.0.0 SmbWitness Function Get-StartApps 1.0.0.1 StartLayout Function Get-StorageAdvancedProperty 2.0.0.0 Storage Function Get-StorageBusBinding 1.0.0.0 StorageBusCache Function Get-StorageBusCache 1.0.0.0 StorageBusCache Function Get-StorageBusClientDevice 1.0.0.0 StorageBusCache Function Get-StorageBusDisk 1.0.0.0 StorageBusCache Function Get-StorageBusTargetCacheStore 1.0.0.0 StorageBusCache Function Get-StorageBusTargetCacheStoresInstance 1.0.0.0 StorageBusCache Function Get-StorageBusTargetDevice 1.0.0.0 StorageBusCache Function Get-StorageBusTargetDeviceInstance 1.0.0.0 StorageBusCache Function Get-StorageChassis 2.0.0.0 Storage Function Get-StorageDataCollection 2.0.0.0 Storage Function Get-StorageDiagnosticInfo 2.0.0.0 Storage Function Get-StorageEnclosure 2.0.0.0 Storage Function Get-StorageEnclosureStorageNodeView 2.0.0.0 Storage Function Get-StorageEnclosureVendorData 2.0.0.0 Storage Function Get-StorageExtendedStatus 2.0.0.0 Storage Function Get-StorageFaultDomain 2.0.0.0 Storage Function Get-StorageFileServer 2.0.0.0 Storage Function Get-StorageFirmwareInformation 2.0.0.0 Storage Function Get-StorageHealthAction 2.0.0.0 Storage Function Get-StorageHealthReport 2.0.0.0 Storage Function Get-StorageHealthSetting 2.0.0.0 Storage Function Get-StorageHistory 2.0.0.0 Storage Function Get-StorageJob 2.0.0.0 Storage Function Get-StorageNode 2.0.0.0 Storage Function Get-StoragePool 2.0.0.0 Storage Function Get-StorageProvider 2.0.0.0 Storage Function Get-StorageRack 2.0.0.0 Storage Function Get-StorageReliabilityCounter 2.0.0.0 Storage Function Get-StorageScaleUnit 2.0.0.0 Storage Function Get-StorageSetting 2.0.0.0 Storage Function Get-StorageSite 2.0.0.0 Storage Function Get-StorageSubSystem 2.0.0.0 Storage Function Get-StorageTier 2.0.0.0 Storage Function Get-StorageTierSupportedSize 2.0.0.0 Storage Function Get-SupportedClusterSizes 2.0.0.0 Storage Function Get-SupportedFileSystems 2.0.0.0 Storage Function Get-TargetPort 2.0.0.0 Storage Function Get-TargetPortal 2.0.0.0 Storage Function Get-TestDriveItem 3.4.0 Pester Function Get-Verb Function Get-VirtualDisk 2.0.0.0 Storage Function Get-VirtualDiskSupportedSize 2.0.0.0 Storage Function Get-VMDirectVirtualDisk 1.0.0.0 VMDirectStorage Function Get-Volume 2.0.0.0 Storage Function Get-VolumeCorruptionCount 2.0.0.0 Storage Function Get-VolumeScrubPolicy 2.0.0.0 Storage Function Get-VpnConnection 2.0.0.0 VpnClient Function Get-VpnConnectionTrigger 2.0.0.0 VpnClient Function Get-WdacBidTrace 1.0.0.0 Wdac Function Get-WindowsUpdateLog 1.0.0.0 WindowsUpdate Function Get-WinhttpProxy 1.0.0.0 WinHttpProxy Function Grant-FileShareAccess 2.0.0.0 Storage Function Grant-SmbClientAccessToServer 2.0.0.0 SmbShare Function Grant-SmbShareAccess 2.0.0.0 SmbShare Function H: Function help Function Hide-VirtualDisk 2.0.0.0 Storage Function I: Function Import-BCCachePackage 1.0.0.0 BranchCache Function Import-BCSecretKey 1.0.0.0 BranchCache Function Import-IseSnippet 1.0.0.0 ISE Function Import-PowerShellDataFile 3.1.0.0 Microsoft.PowerShell.Utility Function ImportSystemModules Function Import-WinhttpProxy 1.0.0.0 WinHttpProxy Function In 3.4.0 Pester Function Initialize-Disk 2.0.0.0 Storage Function InModuleScope 3.4.0 Pester Function Install-Dtc 1.0.0.0 MsDtc Function Install-Module 1.0.0.1 PowerShellGet Function Install-Script 1.0.0.1 PowerShellGet Function Invoke-AsWorkflow 1.0.0.0 PSWorkflowUtility Function Invoke-Mock 3.4.0 Pester Function Invoke-OperationValidation 1.0.1 Microsoft.PowerShell.Operation.Validation Function Invoke-Pester 3.4.0 Pester Function It 3.4.0 Pester Function J: Function K: Function L: Function Lock-BitLocker 1.0.0.0 BitLocker Function M: Function mkdir Function Mock 3.4.0 Pester Function more Function Mount-DiskImage 2.0.0.0 Storage Function Move-SmbWitnessClient 2.0.0.0 SmbWitness Function N: Function New-AutologgerConfig 1.0.0.0 EventTracingManagement Function New-DAEntryPointTableItem 1.0.0.0 DirectAccessClientComponents Function New-DscChecksum 1.1 PSDesiredStateConfiguration Function New-EapConfiguration 2.0.0.0 VpnClient Function New-EtwTraceSession 1.0.0.0 EventTracingManagement Function New-FileShare 2.0.0.0 Storage Function New-Fixture 3.4.0 Pester Function New-Guid 3.1.0.0 Microsoft.PowerShell.Utility Function New-IscsiTargetPortal 1.0.0.0 iSCSI Function New-IseSnippet 1.0.0.0 ISE Function New-MaskingSet 2.0.0.0 Storage Function New-MpPerformanceRecording 1.0 ConfigDefenderPerformance Function New-MpPerformanceRecording 1.0 DefenderPerformance Function New-NetAdapterAdvancedProperty 2.0.0.0 NetAdapter Function New-NetEventSession 1.0.0.0 NetEventPacketCapture Function New-NetFirewallDynamicKeywordAddress 2.0.0.0 NetSecurity Function New-NetFirewallHyperVProfile 2.0.0.0 NetSecurity Function New-NetFirewallHyperVRule 2.0.0.0 NetSecurity Function New-NetFirewallHyperVVMSetting 2.0.0.0 NetSecurity Function New-NetFirewallRule 2.0.0.0 NetSecurity Function New-NetIPAddress 1.0.0.0 NetTCPIP Function New-NetIPHttpsConfiguration 1.0.0.0 NetworkTransition Function New-NetIPsecDospSetting 2.0.0.0 NetSecurity Function New-NetIPsecMainModeCryptoSet 2.0.0.0 NetSecurity Function New-NetIPsecMainModeRule 2.0.0.0 NetSecurity Function New-NetIPsecPhase1AuthSet 2.0.0.0 NetSecurity Function New-NetIPsecPhase2AuthSet 2.0.0.0 NetSecurity Function New-NetIPsecQuickModeCryptoSet 2.0.0.0 NetSecurity Function New-NetIPsecRule 2.0.0.0 NetSecurity Function New-NetLbfoTeam 2.0.0.0 NetLbfo Function New-NetNat 1.0.0.0 NetNat Function New-NetNatTransitionConfiguration 1.0.0.0 NetworkTransition Function New-NetNeighbor 1.0.0.0 NetTCPIP Function New-NetQosPolicy 2.0.0.0 NetQos Function New-NetRoute 1.0.0.0 NetTCPIP Function New-NetSwitchTeam 1.0.0.0 NetSwitchTeam Function New-NetTransportFilter 1.0.0.0 NetTCPIP Function New-NetworkSwitchVlan 1.0.0.0 NetworkSwitchManager Function New-Partition 2.0.0.0 Storage Function New-PesterOption 3.4.0 Pester Function New-PSWorkflowSession 2.0.0.0 PSWorkflow Function New-ScheduledTask 1.0.0.0 ScheduledTasks Function New-ScheduledTaskAction 1.0.0.0 ScheduledTasks Function New-ScheduledTaskPrincipal 1.0.0.0 ScheduledTasks Function New-ScheduledTaskSettingsSet 1.0.0.0 ScheduledTasks Function New-ScheduledTaskTrigger 1.0.0.0 ScheduledTasks Function New-ScriptFileInfo 1.0.0.1 PowerShellGet Function New-SmbClientCertificateMapping 2.0.0.0 SmbShare Function New-SmbGlobalMapping 2.0.0.0 SmbShare Function New-SmbMapping 2.0.0.0 SmbShare Function New-SmbMultichannelConstraint 2.0.0.0 SmbShare Function New-SmbServerAlternativePort 2.0.0.0 SmbShare Function New-SmbServerCertificateMapping 2.0.0.0 SmbShare Function New-SmbShare 2.0.0.0 SmbShare Function New-StorageBusBinding 1.0.0.0 StorageBusCache Function New-StorageBusCacheStore 1.0.0.0 StorageBusCache Function New-StorageFileServer 2.0.0.0 Storage Function New-StoragePool 2.0.0.0 Storage Function New-StorageSubsystemVirtualDisk 2.0.0.0 Storage Function New-StorageTier 2.0.0.0 Storage Function New-TemporaryFile 3.1.0.0 Microsoft.PowerShell.Utility Function New-VirtualDisk 2.0.0.0 Storage Function New-VirtualDiskClone 2.0.0.0 Storage Function New-VirtualDiskSnapshot 2.0.0.0 Storage Function New-Volume 2.0.0.0 Storage Function New-VpnServerAddress 2.0.0.0 VpnClient Function O: Function Open-NetGPO 2.0.0.0 NetSecurity Function Optimize-StoragePool 2.0.0.0 Storage Function Optimize-Volume 2.0.0.0 Storage Function oss Function P: Function Pause Function prompt Function PSConsoleHostReadLine 2.0.0 PSReadLine Function Publish-BCFileContent 1.0.0.0 BranchCache Function Publish-BCWebContent 1.0.0.0 BranchCache Function Publish-Module 1.0.0.1 PowerShellGet Function Publish-Script 1.0.0.1 PowerShellGet Function Q: Function R: Function Read-PrinterNfcTag 1.1 PrintManagement Function Register-ClusteredScheduledTask 1.0.0.0 ScheduledTasks Function Register-DnsClient 1.0.0.0 DnsClient Function Register-IscsiSession 1.0.0.0 iSCSI Function Register-PSRepository 1.0.0.1 PowerShellGet Function Register-ScheduledTask 1.0.0.0 ScheduledTasks Function Register-StorageSubsystem 2.0.0.0 Storage Function Remove-AutologgerConfig 1.0.0.0 EventTracingManagement Function Remove-BCDataCacheExtension 1.0.0.0 BranchCache Function Remove-BitLockerKeyProtector 1.0.0.0 BitLocker Function Remove-DAEntryPointTableItem 1.0.0.0 DirectAccessClientComponents Function Remove-DnsClientDohServerAddress 1.0.0.0 DnsClient Function Remove-DnsClientNrptRule 1.0.0.0 DnsClient Function Remove-DscConfigurationDocument 1.1 PSDesiredStateConfiguration Function Remove-DtcClusterTMMapping 1.0.0.0 MsDtc Function Remove-EtwTraceProvider 1.0.0.0 EventTracingManagement Function Remove-FileShare 2.0.0.0 Storage Function Remove-InitiatorId 2.0.0.0 Storage Function Remove-InitiatorIdFromMaskingSet 2.0.0.0 Storage Function Remove-IscsiTargetPortal 1.0.0.0 iSCSI Function Remove-MaskingSet 2.0.0.0 Storage Function Remove-MpBehavioralNetworkBlockingRules 1.0 ConfigDefender Function Remove-MpPreference 1.0 ConfigDefender Function Remove-MpPreference 1.0 Defender Function Remove-MpThreat 1.0 ConfigDefender Function Remove-MpThreat 1.0 Defender Function Remove-NetAdapterAdvancedProperty 2.0.0.0 NetAdapter Function Remove-NetEventNetworkAdapter 1.0.0.0 NetEventPacketCapture Function Remove-NetEventPacketCaptureProvider 1.0.0.0 NetEventPacketCapture Function Remove-NetEventProvider 1.0.0.0 NetEventPacketCapture Function Remove-NetEventSession 1.0.0.0 NetEventPacketCapture Function Remove-NetEventVFPProvider 1.0.0.0 NetEventPacketCapture Function Remove-NetEventVmNetworkAdapter 1.0.0.0 NetEventPacketCapture Function Remove-NetEventVmSwitch 1.0.0.0 NetEventPacketCapture Function Remove-NetEventVmSwitchProvider 1.0.0.0 NetEventPacketCapture Function Remove-NetEventWFPCaptureProvider 1.0.0.0 NetEventPacketCapture Function Remove-NetFirewallDynamicKeywordAddress 2.0.0.0 NetSecurity Function Remove-NetFirewallHyperVProfile 2.0.0.0 NetSecurity Function Remove-NetFirewallHyperVRule 2.0.0.0 NetSecurity Function Remove-NetFirewallHyperVVMSetting 2.0.0.0 NetSecurity Function Remove-NetFirewallRule 2.0.0.0 NetSecurity Function Remove-NetIPAddress 1.0.0.0 NetTCPIP Function Remove-NetIPHttpsCertBinding 1.0.0.0 NetworkTransition Function Remove-NetIPHttpsConfiguration 1.0.0.0 NetworkTransition Function Remove-NetIPsecDospSetting 2.0.0.0 NetSecurity Function Remove-NetIPsecMainModeCryptoSet 2.0.0.0 NetSecurity Function Remove-NetIPsecMainModeRule 2.0.0.0 NetSecurity Function Remove-NetIPsecMainModeSA 2.0.0.0 NetSecurity Function Remove-NetIPsecPhase1AuthSet 2.0.0.0 NetSecurity Function Remove-NetIPsecPhase2AuthSet 2.0.0.0 NetSecurity Function Remove-NetIPsecQuickModeCryptoSet 2.0.0.0 NetSecurity Function Remove-NetIPsecQuickModeSA 2.0.0.0 NetSecurity Function Remove-NetIPsecRule 2.0.0.0 NetSecurity Function Remove-NetLbfoTeam 2.0.0.0 NetLbfo Function Remove-NetLbfoTeamMember 2.0.0.0 NetLbfo Function Remove-NetLbfoTeamNic 2.0.0.0 NetLbfo Function Remove-NetNat 1.0.0.0 NetNat Function Remove-NetNatExternalAddress 1.0.0.0 NetNat Function Remove-NetNatStaticMapping 1.0.0.0 NetNat Function Remove-NetNatTransitionConfiguration 1.0.0.0 NetworkTransition Function Remove-NetNeighbor 1.0.0.0 NetTCPIP Function Remove-NetQosPolicy 2.0.0.0 NetQos Function Remove-NetRoute 1.0.0.0 NetTCPIP Function Remove-NetSwitchTeam 1.0.0.0 NetSwitchTeam Function Remove-NetSwitchTeamMember 1.0.0.0 NetSwitchTeam Function Remove-NetTransportFilter 1.0.0.0 NetTCPIP Function Remove-NetworkSwitchEthernetPortIPAddress 1.0.0.0 NetworkSwitchManager Function Remove-NetworkSwitchVlan 1.0.0.0 NetworkSwitchManager Function Remove-OdbcDsn 1.0.0.0 Wdac Function Remove-Partition 2.0.0.0 Storage Function Remove-PartitionAccessPath 2.0.0.0 Storage Function Remove-PhysicalDisk 2.0.0.0 Storage Function Remove-Printer 1.1 PrintManagement Function Remove-PrinterDriver 1.1 PrintManagement Function Remove-PrinterPort 1.1 PrintManagement Function Remove-PrintJob 1.1 PrintManagement Function Remove-SmbBandwidthLimit 2.0.0.0 SmbShare Function Remove-SmbClientCertificateMapping 2.0.0.0 SmbShare Function Remove-SMBComponent 2.0.0.0 SmbShare Function Remove-SmbGlobalMapping 2.0.0.0 SmbShare Function Remove-SmbMapping 2.0.0.0 SmbShare Function Remove-SmbMultichannelConstraint 2.0.0.0 SmbShare Function Remove-SmbServerAlternativePort 2.0.0.0 SmbShare Function Remove-SmbServerCertificateMapping 2.0.0.0 SmbShare Function Remove-SmbShare 2.0.0.0 SmbShare Function Remove-StorageBusBinding 1.0.0.0 StorageBusCache Function Remove-StorageFaultDomain 2.0.0.0 Storage Function Remove-StorageFileServer 2.0.0.0 Storage Function Remove-StorageHealthIntent 2.0.0.0 Storage Function Remove-StorageHealthSetting 2.0.0.0 Storage Function Remove-StoragePool 2.0.0.0 Storage Function Remove-StorageTier 2.0.0.0 Storage Function Remove-TargetPortFromMaskingSet 2.0.0.0 Storage Function Remove-VirtualDisk 2.0.0.0 Storage Function Remove-VirtualDiskFromMaskingSet 2.0.0.0 Storage Function Remove-VMDirectVirtualDisk 1.0.0.0 VMDirectStorage Function Remove-VpnConnection 2.0.0.0 VpnClient Function Remove-VpnConnectionRoute 2.0.0.0 VpnClient Function Remove-VpnConnectionTriggerApplication 2.0.0.0 VpnClient Function Remove-VpnConnectionTriggerDnsConfiguration 2.0.0.0 VpnClient Function Remove-VpnConnectionTriggerTrustedNetwork 2.0.0.0 VpnClient Function Rename-DAEntryPointTableItem 1.0.0.0 DirectAccessClientComponents Function Rename-MaskingSet 2.0.0.0 Storage Function Rename-NetAdapter 2.0.0.0 NetAdapter Function Rename-NetFirewallHyperVRule 2.0.0.0 NetSecurity Function Rename-NetFirewallRule 2.0.0.0 NetSecurity Function Rename-NetIPHttpsConfiguration 1.0.0.0 NetworkTransition Function Rename-NetIPsecMainModeCryptoSet 2.0.0.0 NetSecurity Function Rename-NetIPsecMainModeRule 2.0.0.0 NetSecurity Function Rename-NetIPsecPhase1AuthSet 2.0.0.0 NetSecurity Function Rename-NetIPsecPhase2AuthSet 2.0.0.0 NetSecurity Function Rename-NetIPsecQuickModeCryptoSet 2.0.0.0 NetSecurity Function Rename-NetIPsecRule 2.0.0.0 NetSecurity Function Rename-NetLbfoTeam 2.0.0.0 NetLbfo Function Rename-NetSwitchTeam 1.0.0.0 NetSwitchTeam Function Rename-Printer 1.1 PrintManagement Function Repair-FileIntegrity 2.0.0.0 Storage Function Repair-VirtualDisk 2.0.0.0 Storage Function Repair-Volume 2.0.0.0 Storage Function Reset-BC 1.0.0.0 BranchCache Function Reset-DAClientExperienceConfiguration 1.0.0.0 DirectAccessClientComponents Function Reset-DAEntryPointTableItem 1.0.0.0 DirectAccessClientComponents Function Reset-DtcLog 1.0.0.0 MsDtc Function Reset-NCSIPolicyConfiguration 1.0.0.0 NetworkConnectivityStatus Function Reset-Net6to4Configuration 1.0.0.0 NetworkTransition Function Reset-NetAdapterAdvancedProperty 2.0.0.0 NetAdapter Function Reset-NetDnsTransitionConfiguration 1.0.0.0 NetworkTransition Function Reset-NetIPHttpsConfiguration 1.0.0.0 NetworkTransition Function Reset-NetIsatapConfiguration 1.0.0.0 NetworkTransition Function Reset-NetTeredoConfiguration 1.0.0.0 NetworkTransition Function Reset-PhysicalDisk 2.0.0.0 Storage Function Reset-SmbClientConfiguration 2.0.0.0 SmbShare Function Reset-SmbServerConfiguration 2.0.0.0 SmbShare Function Reset-StorageReliabilityCounter 2.0.0.0 Storage Function Reset-WinhttpProxy 1.0.0.0 WinHttpProxy Function Resize-Partition 2.0.0.0 Storage Function Resize-StorageTier 2.0.0.0 Storage Function Resize-VirtualDisk 2.0.0.0 Storage Function Restart-NetAdapter 2.0.0.0 NetAdapter Function Restart-PcsvDevice 1.0.0.0 PcsvDevice Function Restart-PrintJob 1.1 PrintManagement Function Restore-DscConfiguration 1.1 PSDesiredStateConfiguration Function Restore-NetworkSwitchConfiguration 1.0.0.0 NetworkSwitchManager Function Resume-BitLocker 1.0.0.0 BitLocker Function Resume-PrintJob 1.1 PrintManagement Function Resume-StorageBusDisk 1.0.0.0 StorageBusCache Function Revoke-FileShareAccess 2.0.0.0 Storage Function Revoke-SmbClientAccessToServer 2.0.0.0 SmbShare Function Revoke-SmbShareAccess 2.0.0.0 SmbShare Function S: Function SafeGetCommand 3.4.0 Pester Function Save-EtwTraceSession 1.0.0.0 EventTracingManagement Function Save-Module 1.0.0.1 PowerShellGet Function Save-NetGPO 2.0.0.0 NetSecurity Function Save-NetworkSwitchConfiguration 1.0.0.0 NetworkSwitchManager Function Save-Script 1.0.0.1 PowerShellGet Function Save-StorageDataCollection 2.0.0.0 Storage Function Send-EtwTraceSession 1.0.0.0 EventTracingManagement Function Set-AssignedAccess 1.0.0.0 AssignedAccess Function Set-BCAuthentication 1.0.0.0 BranchCache Function Set-BCCache 1.0.0.0 BranchCache Function Set-BCDataCacheEntryMaxAge 1.0.0.0 BranchCache Function Set-BCMinSMBLatency 1.0.0.0 BranchCache Function Set-BCSecretKey 1.0.0.0 BranchCache Function Set-ClusteredScheduledTask 1.0.0.0 ScheduledTasks Function Set-DAClientExperienceConfiguration 1.0.0.0 DirectAccessClientComponents Function Set-DAEntryPointTableItem 1.0.0.0 DirectAccessClientComponents Function Set-DeliveryOptimizationStatus 1.0.3.0 DeliveryOptimization Function Set-Disk 2.0.0.0 Storage Function Set-DnsClient 1.0.0.0 DnsClient Function Set-DnsClientDohServerAddress 1.0.0.0 DnsClient Function Set-DnsClientGlobalSetting 1.0.0.0 DnsClient Function Set-DnsClientNrptGlobal 1.0.0.0 DnsClient Function Set-DnsClientNrptRule 1.0.0.0 DnsClient Function Set-DnsClientServerAddress 1.0.0.0 DnsClient Function Set-DODownloadMode 1.0.3.0 DeliveryOptimization Function Set-DOMaxBackgroundBandwidth 1.0.3.0 DeliveryOptimization Function Set-DOMaxForegroundBandwidth 1.0.3.0 DeliveryOptimization Function Set-DOPercentageMaxBackgroundBandwidth 1.0.3.0 DeliveryOptimization Function Set-DOPercentageMaxForegroundBandwidth 1.0.3.0 DeliveryOptimization Function Set-DtcAdvancedHostSetting 1.0.0.0 MsDtc Function Set-DtcAdvancedSetting 1.0.0.0 MsDtc Function Set-DtcClusterDefault 1.0.0.0 MsDtc Function Set-DtcClusterTMMapping 1.0.0.0 MsDtc Function Set-DtcDefault 1.0.0.0 MsDtc Function Set-DtcLog 1.0.0.0 MsDtc Function Set-DtcNetworkSetting 1.0.0.0 MsDtc Function Set-DtcTransaction 1.0.0.0 MsDtc Function Set-DtcTransactionsTraceSession 1.0.0.0 MsDtc Function Set-DtcTransactionsTraceSetting 1.0.0.0 MsDtc Function Set-DynamicParameterVariables 3.4.0 Pester Function Set-EtwTraceProvider 1.0.0.0 EventTracingManagement Function Set-FileIntegrity 2.0.0.0 Storage Function Set-FileShare 2.0.0.0 Storage Function Set-FileStorageTier 2.0.0.0 Storage Function Set-InitiatorPort 2.0.0.0 Storage Function Set-IscsiChapSecret 1.0.0.0 iSCSI Function Set-LogProperties 1.0.0.0 PSDiagnostics Function Set-MMAgent 1.0 MMAgent Function Set-MpPreference 1.0 ConfigDefender Function Set-MpPreference 1.0 Defender Function Set-NCSIPolicyConfiguration 1.0.0.0 NetworkConnectivityStatus Function Set-Net6to4Configuration 1.0.0.0 NetworkTransition Function Set-NetAdapter 2.0.0.0 NetAdapter Function Set-NetAdapterAdvancedProperty 2.0.0.0 NetAdapter Function Set-NetAdapterBinding 2.0.0.0 NetAdapter Function Set-NetAdapterChecksumOffload 2.0.0.0 NetAdapter Function Set-NetAdapterDataPathConfiguration 2.0.0.0 NetAdapter Function Set-NetAdapterEncapsulatedPacketTaskOffload 2.0.0.0 NetAdapter Function Set-NetAdapterIPsecOffload 2.0.0.0 NetAdapter Function Set-NetAdapterLso 2.0.0.0 NetAdapter Function Set-NetAdapterPacketDirect 2.0.0.0 NetAdapter Function Set-NetAdapterPowerManagement 2.0.0.0 NetAdapter Function Set-NetAdapterQos 2.0.0.0 NetAdapter Function Set-NetAdapterRdma 2.0.0.0 NetAdapter Function Set-NetAdapterRsc 2.0.0.0 NetAdapter Function Set-NetAdapterRss 2.0.0.0 NetAdapter Function Set-NetAdapterSriov 2.0.0.0 NetAdapter Function Set-NetAdapterUro 2.0.0.0 NetAdapter Function Set-NetAdapterUso 2.0.0.0 NetAdapter Function Set-NetAdapterVmq 2.0.0.0 NetAdapter Function Set-NetConnectionProfile 2.0.0.0 NetConnection Function Set-NetDnsTransitionConfiguration 1.0.0.0 NetworkTransition Function Set-NetEventPacketCaptureProvider 1.0.0.0 NetEventPacketCapture Function Set-NetEventProvider 1.0.0.0 NetEventPacketCapture Function Set-NetEventSession 1.0.0.0 NetEventPacketCapture Function Set-NetEventVFPProvider 1.0.0.0 NetEventPacketCapture Function Set-NetEventVmSwitchProvider 1.0.0.0 NetEventPacketCapture Function Set-NetEventWFPCaptureProvider 1.0.0.0 NetEventPacketCapture Function Set-NetFirewallAddressFilter 2.0.0.0 NetSecurity Function Set-NetFirewallApplicationFilter 2.0.0.0 NetSecurity Function Set-NetFirewallHyperVProfile 2.0.0.0 NetSecurity Function Set-NetFirewallHyperVRule 2.0.0.0 NetSecurity Function Set-NetFirewallHyperVVMSetting 2.0.0.0 NetSecurity Function Set-NetFirewallInterfaceFilter 2.0.0.0 NetSecurity Function Set-NetFirewallInterfaceTypeFilter 2.0.0.0 NetSecurity Function Set-NetFirewallPortFilter 2.0.0.0 NetSecurity Function Set-NetFirewallProfile 2.0.0.0 NetSecurity Function Set-NetFirewallRule 2.0.0.0 NetSecurity Function Set-NetFirewallSecurityFilter 2.0.0.0 NetSecurity Function Set-NetFirewallServiceFilter 2.0.0.0 NetSecurity Function Set-NetFirewallSetting 2.0.0.0 NetSecurity Function Set-NetIPAddress 1.0.0.0 NetTCPIP Function Set-NetIPHttpsConfiguration 1.0.0.0 NetworkTransition Function Set-NetIPInterface 1.0.0.0 NetTCPIP Function Set-NetIPsecDospSetting 2.0.0.0 NetSecurity Function Set-NetIPsecMainModeCryptoSet 2.0.0.0 NetSecurity Function Set-NetIPsecMainModeRule 2.0.0.0 NetSecurity Function Set-NetIPsecPhase1AuthSet 2.0.0.0 NetSecurity Function Set-NetIPsecPhase2AuthSet 2.0.0.0 NetSecurity Function Set-NetIPsecQuickModeCryptoSet 2.0.0.0 NetSecurity Function Set-NetIPsecRule 2.0.0.0 NetSecurity Function Set-NetIPv4Protocol 1.0.0.0 NetTCPIP Function Set-NetIPv6Protocol 1.0.0.0 NetTCPIP Function Set-NetIsatapConfiguration 1.0.0.0 NetworkTransition Function Set-NetLbfoTeam 2.0.0.0 NetLbfo Function Set-NetLbfoTeamMember 2.0.0.0 NetLbfo Function Set-NetLbfoTeamNic 2.0.0.0 NetLbfo Function Set-NetNat 1.0.0.0 NetNat Function Set-NetNatGlobal 1.0.0.0 NetNat Function Set-NetNatTransitionConfiguration 1.0.0.0 NetworkTransition Function Set-NetNeighbor 1.0.0.0 NetTCPIP Function Set-NetOffloadGlobalSetting 1.0.0.0 NetTCPIP Function Set-NetQosPolicy 2.0.0.0 NetQos Function Set-NetRoute 1.0.0.0 NetTCPIP Function Set-NetTCPSetting 1.0.0.0 NetTCPIP Function Set-NetTeredoConfiguration 1.0.0.0 NetworkTransition Function Set-NetUDPSetting 1.0.0.0 NetTCPIP Function Set-NetworkSwitchEthernetPortIPAddress 1.0.0.0 NetworkSwitchManager Function Set-NetworkSwitchPortMode 1.0.0.0 NetworkSwitchManager Function Set-NetworkSwitchPortProperty 1.0.0.0 NetworkSwitchManager Function Set-NetworkSwitchVlanProperty 1.0.0.0 NetworkSwitchManager Function Set-OdbcDriver 1.0.0.0 Wdac Function Set-OdbcDsn 1.0.0.0 Wdac Function Set-Partition 2.0.0.0 Storage Function Set-PcsvDeviceBootConfiguration 1.0.0.0 PcsvDevice Function Set-PcsvDeviceNetworkConfiguration 1.0.0.0 PcsvDevice Function Set-PcsvDeviceUserPassword 1.0.0.0 PcsvDevice Function Set-PhysicalDisk 2.0.0.0 Storage Function Set-PrintConfiguration 1.1 PrintManagement Function Set-Printer 1.1 PrintManagement Function Set-PrinterProperty 1.1 PrintManagement Function Set-PSRepository 1.0.0.1 PowerShellGet Function Set-ResiliencySetting 2.0.0.0 Storage Function Set-ScheduledTask 1.0.0.0 ScheduledTasks Function Set-SmbBandwidthLimit 2.0.0.0 SmbShare Function Set-SmbClientCertificateMapping 2.0.0.0 SmbShare Function Set-SmbClientConfiguration 2.0.0.0 SmbShare Function Set-SmbPathAcl 2.0.0.0 SmbShare Function Set-SmbServerAlternativePort 2.0.0.0 SmbShare Function Set-SmbServerCertificateMapping 2.0.0.0 SmbShare Function Set-SmbServerConfiguration 2.0.0.0 SmbShare Function Set-SmbShare 2.0.0.0 SmbShare Function Set-StorageBusCache 1.0.0.0 StorageBusCache Function Set-StorageBusProfile 1.0.0.0 StorageBusCache Function Set-StorageFileServer 2.0.0.0 Storage Function Set-StorageHealthSetting 2.0.0.0 Storage Function Set-StoragePool 2.0.0.0 Storage Function Set-StorageProvider 2.0.0.0 Storage Function Set-StorageSetting 2.0.0.0 Storage Function Set-StorageSubSystem 2.0.0.0 Storage Function Set-StorageTier 2.0.0.0 Storage Function Set-TestInconclusive 3.4.0 Pester Function Setup 3.4.0 Pester Function Set-VirtualDisk 2.0.0.0 Storage Function Set-Volume 2.0.0.0 Storage Function Set-VolumeScrubPolicy 2.0.0.0 Storage Function Set-VpnConnection 2.0.0.0 VpnClient Function Set-VpnConnectionIPsecConfiguration 2.0.0.0 VpnClient Function Set-VpnConnectionProxy 2.0.0.0 VpnClient Function Set-VpnConnectionTriggerDnsConfiguration 2.0.0.0 VpnClient Function Set-VpnConnectionTriggerTrustedNetwork 2.0.0.0 VpnClient Function Set-WinhttpProxy 1.0.0.0 WinHttpProxy Function Should 3.4.0 Pester Function Show-NetFirewallRule 2.0.0.0 NetSecurity Function Show-NetIPsecRule 2.0.0.0 NetSecurity Function Show-StorageHistory 2.0.0.0 Storage Function Show-VirtualDisk 2.0.0.0 Storage Function Start-AppBackgroundTask 1.0.0.0 AppBackgroundTask Function Start-AppvVirtualProcess 1.0.0.0 AppvClient Function Start-AutologgerConfig 1.0.0.0 EventTracingManagement Function Start-Dtc 1.0.0.0 MsDtc Function Start-DtcTransactionsTraceSession 1.0.0.0 MsDtc Function Start-EtwTraceSession 1.0.0.0 EventTracingManagement Function Start-MpRollback 1.0 ConfigDefender Function Start-MpRollback 1.0 Defender Function Start-MpScan 1.0 ConfigDefender Function Start-MpScan 1.0 Defender Function Start-MpWDOScan 1.0 ConfigDefender Function Start-MpWDOScan 1.0 Defender Function Start-NetEventSession 1.0.0.0 NetEventPacketCapture Function Start-PcsvDevice 1.0.0.0 PcsvDevice Function Start-ScheduledTask 1.0.0.0 ScheduledTasks Function Start-StorageDiagnosticLog 2.0.0.0 Storage Function Start-Trace 1.0.0.0 PSDiagnostics Function Stop-DscConfiguration 1.1 PSDesiredStateConfiguration Function Stop-Dtc 1.0.0.0 MsDtc Function Stop-DtcTransactionsTraceSession 1.0.0.0 MsDtc Function Stop-EtwTraceSession 1.0.0.0 EventTracingManagement Function Stop-NetEventSession 1.0.0.0 NetEventPacketCapture Function Stop-PcsvDevice 1.0.0.0 PcsvDevice Function Stop-ScheduledTask 1.0.0.0 ScheduledTasks Function Stop-StorageDiagnosticLog 2.0.0.0 Storage Function Stop-StorageJob 2.0.0.0 Storage Function Stop-Trace 1.0.0.0 PSDiagnostics Function Suspend-BitLocker 1.0.0.0 BitLocker Function Suspend-PrintJob 1.1 PrintManagement Function Suspend-StorageBusDisk 1.0.0.0 StorageBusCache Function Sync-NetIPsecRule 2.0.0.0 NetSecurity Function T: Function TabExpansion2 Function Test-Dtc 1.0.0.0 MsDtc Function Test-NetConnection 1.0.0.0 NetTCPIP Function Test-ScriptFileInfo 1.0.0.1 PowerShellGet Function U: Function Unblock-FileShareAccess 2.0.0.0 Storage Function Unblock-SmbClientAccessToServer 2.0.0.0 SmbShare Function Unblock-SmbShareAccess 2.0.0.0 SmbShare Function Uninstall-Dtc 1.0.0.0 MsDtc Function Uninstall-Module 1.0.0.1 PowerShellGet Function Uninstall-Script 1.0.0.1 PowerShellGet Function Unlock-BitLocker 1.0.0.0 BitLocker Function Unregister-AppBackgroundTask 1.0.0.0 AppBackgroundTask Function Unregister-ClusteredScheduledTask 1.0.0.0 ScheduledTasks Function Unregister-IscsiSession 1.0.0.0 iSCSI Function Unregister-PSRepository 1.0.0.1 PowerShellGet Function Unregister-ScheduledTask 1.0.0.0 ScheduledTasks Function Unregister-StorageSubsystem 2.0.0.0 Storage Function Update-AutologgerConfig 1.0.0.0 EventTracingManagement Function Update-Disk 2.0.0.0 Storage Function Update-DscConfiguration 1.1 PSDesiredStateConfiguration Function Update-EtwTraceSession 1.0.0.0 EventTracingManagement Function Update-HostStorageCache 2.0.0.0 Storage Function Update-IscsiTarget 1.0.0.0 iSCSI Function Update-IscsiTargetPortal 1.0.0.0 iSCSI Function Update-Module 1.0.0.1 PowerShellGet Function Update-ModuleManifest 1.0.0.1 PowerShellGet Function Update-MpSignature 1.0 ConfigDefender Function Update-MpSignature 1.0 Defender Function Update-NetFirewallDynamicKeywordAddress 2.0.0.0 NetSecurity Function Update-NetIPsecRule 2.0.0.0 NetSecurity Function Update-Script 1.0.0.1 PowerShellGet Function Update-ScriptFileInfo 1.0.0.1 PowerShellGet Function Update-SmbMultichannelConnection 2.0.0.0 SmbShare Function Update-StorageBusCache 1.0.0.0 StorageBusCache Function Update-StorageFirmware 2.0.0.0 Storage Function Update-StoragePool 2.0.0.0 Storage Function Update-StorageProviderCache 2.0.0.0 Storage Function V: Function W: Function Write-DtcTransactionsTraceSession 1.0.0.0 MsDtc Function Write-PrinterNfcTag 1.1 PrintManagement Function Write-VolumeCache 2.0.0.0 Storage Function X: Function Y: Function Z: Cmdlet Add-AppProvisionedSharedPackageContainer 3.0 Dism Cmdlet Add-AppSharedPackageContainer 2.0.1.0 Appx Cmdlet Add-AppvClientConnectionGroup 1.0.0.0 AppvClient Cmdlet Add-AppvClientPackage 1.0.0.0 AppvClient Cmdlet Add-AppvPublishingServer 1.0.0.0 AppvClient Cmdlet Add-AppxPackage 2.0.1.0 Appx Cmdlet Add-AppxProvisionedPackage 3.0 Dism Cmdlet Add-AppxVolume 2.0.1.0 Appx Cmdlet Add-BitsFile 2.0.0.0 BitsTransfer Cmdlet Add-CertificateEnrollmentPolicyServer 1.0.0.0 PKI Cmdlet Add-Computer 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Add-Content 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Add-History 3.0.0.0 Microsoft.PowerShell.Core Cmdlet Add-JobTrigger 1.1.0.0 PSScheduledJob Cmdlet Add-KdsRootKey 1.0.0.0 Kds Cmdlet Add-LocalGroupMember 1.0.0.0 Microsoft.PowerShell.LocalAccounts Cmdlet Add-Member 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Add-PSSnapin 3.0.0.0 Microsoft.PowerShell.Core Cmdlet Add-SignerRule 1.0 ConfigCI Cmdlet Add-Type 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Add-WindowsCapability 3.0 Dism Cmdlet Add-WindowsDriver 3.0 Dism Cmdlet Add-WindowsImage 3.0 Dism Cmdlet Add-WindowsPackage 3.0 Dism Cmdlet Checkpoint-Computer 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Clear-Content 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Clear-EventLog 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Clear-History 3.0.0.0 Microsoft.PowerShell.Core Cmdlet Clear-Item 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Clear-ItemProperty 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Clear-KdsCache 1.0.0.0 Kds Cmdlet Clear-Recyclebin 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Clear-ReFSDedupSchedule 2.0.0.0 Microsoft.ReFsDedup.Commands Cmdlet Clear-ReFSDedupScrubSchedule 2.0.0.0 Microsoft.ReFsDedup.Commands Cmdlet Clear-Tpm 2.0.0.0 TrustedPlatformModule Cmdlet Clear-UevAppxPackage 2.1.639.0 UEV Cmdlet Clear-UevConfiguration 2.1.639.0 UEV Cmdlet Clear-Variable 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Clear-WindowsCorruptMountPoint 3.0 Dism Cmdlet Compare-Object 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Complete-BitsTransfer 2.0.0.0 BitsTransfer Cmdlet Complete-DtcDiagnosticTransaction 1.0.0.0 MsDtc Cmdlet Complete-Transaction 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Confirm-SecureBootUEFI 2.0.0.0 SecureBoot Cmdlet Connect-PSSession 3.0.0.0 Microsoft.PowerShell.Core Cmdlet Connect-WSMan 3.0.0.0 Microsoft.WSMan.Management Cmdlet ConvertFrom-CIPolicy 1.0 ConfigCI Cmdlet ConvertFrom-Csv 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet ConvertFrom-Json 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet ConvertFrom-SecureString 3.0.0.0 Microsoft.PowerShell.Security Cmdlet ConvertFrom-String 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet ConvertFrom-StringData 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Convert-Path 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Convert-String 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet ConvertTo-Csv 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet ConvertTo-Html 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet ConvertTo-Json 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet ConvertTo-ProcessMitigationPolicy 1.0.12 ProcessMitigations Cmdlet ConvertTo-SecureString 3.0.0.0 Microsoft.PowerShell.Security Cmdlet ConvertTo-TpmOwnerAuth 2.0.0.0 TrustedPlatformModule Cmdlet ConvertTo-Xml 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Copy-BcdEntry 1.0.0 Microsoft.Windows.Bcd.Cmdlets Cmdlet Copy-Item 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Copy-ItemProperty 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Copy-UserInternationalSettingsToSystem 2.1.0.0 International Cmdlet Debug-Job 3.0.0.0 Microsoft.PowerShell.Core Cmdlet Debug-Process 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Debug-Runspace 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Disable-AppBackgroundTaskDiagnosticLog 1.0.0.0 AppBackgroundTask Cmdlet Disable-Appv 1.0.0.0 AppvClient Cmdlet Disable-AppvClientConnectionGroup 1.0.0.0 AppvClient Cmdlet Disable-BcdElementBootDebug 1.0.0 Microsoft.Windows.Bcd.Cmdlets Cmdlet Disable-BcdElementBootEms 1.0.0 Microsoft.Windows.Bcd.Cmdlets Cmdlet Disable-BcdElementDebug 1.0.0 Microsoft.Windows.Bcd.Cmdlets Cmdlet Disable-BcdElementEms 1.0.0 Microsoft.Windows.Bcd.Cmdlets Cmdlet Disable-BcdElementEventLogging 1.0.0 Microsoft.Windows.Bcd.Cmdlets Cmdlet Disable-BcdElementHypervisorDebug 1.0.0 Microsoft.Windows.Bcd.Cmdlets Cmdlet Disable-ComputerRestore 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Disable-JobTrigger 1.1.0.0 PSScheduledJob Cmdlet Disable-LocalUser 1.0.0.0 Microsoft.PowerShell.LocalAccounts Cmdlet Disable-PSBreakpoint 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Disable-PSRemoting 3.0.0.0 Microsoft.PowerShell.Core Cmdlet Disable-PSSessionConfiguration 3.0.0.0 Microsoft.PowerShell.Core Cmdlet Disable-ReFSDedup 2.0.0.0 Microsoft.ReFsDedup.Commands Cmdlet Disable-RunspaceDebug 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Disable-ScheduledJob 1.1.0.0 PSScheduledJob Cmdlet Disable-TlsCipherSuite 2.0.0.0 TLS Cmdlet Disable-TlsEccCurve 2.0.0.0 TLS Cmdlet Disable-TlsSessionTicketKey 2.0.0.0 TLS Cmdlet Disable-TpmAutoProvisioning 2.0.0.0 TrustedPlatformModule Cmdlet Disable-Uev 2.1.639.0 UEV Cmdlet Disable-UevAppxPackage 2.1.639.0 UEV Cmdlet Disable-UevTemplate 2.1.639.0 UEV Cmdlet Disable-WindowsErrorReporting 1.0 WindowsErrorReporting Cmdlet Disable-WindowsOptionalFeature 3.0 Dism Cmdlet Disable-WSManCredSSP 3.0.0.0 Microsoft.WSMan.Management Cmdlet Disconnect-PSSession 3.0.0.0 Microsoft.PowerShell.Core Cmdlet Disconnect-WSMan 3.0.0.0 Microsoft.WSMan.Management Cmdlet Dismount-AppxVolume 2.0.1.0 Appx Cmdlet Dismount-WindowsImage 3.0 Dism Cmdlet Edit-CIPolicyRule 1.0 ConfigCI Cmdlet Enable-AppBackgroundTaskDiagnosticLog 1.0.0.0 AppBackgroundTask Cmdlet Enable-Appv 1.0.0.0 AppvClient Cmdlet Enable-AppvClientConnectionGroup 1.0.0.0 AppvClient Cmdlet Enable-BcdElementBootDebug 1.0.0 Microsoft.Windows.Bcd.Cmdlets Cmdlet Enable-BcdElementBootEms 1.0.0 Microsoft.Windows.Bcd.Cmdlets Cmdlet Enable-BcdElementDebug 1.0.0 Microsoft.Windows.Bcd.Cmdlets Cmdlet Enable-BcdElementEms 1.0.0 Microsoft.Windows.Bcd.Cmdlets Cmdlet Enable-BcdElementEventLogging 1.0.0 Microsoft.Windows.Bcd.Cmdlets Cmdlet Enable-BcdElementHypervisorDebug 1.0.0 Microsoft.Windows.Bcd.Cmdlets Cmdlet Enable-ComputerRestore 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Enable-JobTrigger 1.1.0.0 PSScheduledJob Cmdlet Enable-LocalUser 1.0.0.0 Microsoft.PowerShell.LocalAccounts Cmdlet Enable-PSBreakpoint 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Enable-PSRemoting 3.0.0.0 Microsoft.PowerShell.Core Cmdlet Enable-PSSessionConfiguration 3.0.0.0 Microsoft.PowerShell.Core Cmdlet Enable-ReFSDedup 2.0.0.0 Microsoft.ReFsDedup.Commands Cmdlet Enable-RunspaceDebug 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Enable-ScheduledJob 1.1.0.0 PSScheduledJob Cmdlet Enable-TlsCipherSuite 2.0.0.0 TLS Cmdlet Enable-TlsEccCurve 2.0.0.0 TLS Cmdlet Enable-TlsSessionTicketKey 2.0.0.0 TLS Cmdlet Enable-TpmAutoProvisioning 2.0.0.0 TrustedPlatformModule Cmdlet Enable-Uev 2.1.639.0 UEV Cmdlet Enable-UevAppxPackage 2.1.639.0 UEV Cmdlet Enable-UevTemplate 2.1.639.0 UEV Cmdlet Enable-WindowsErrorReporting 1.0 WindowsErrorReporting Cmdlet Enable-WindowsOptionalFeature 3.0 Dism Cmdlet Enable-WSManCredSSP 3.0.0.0 Microsoft.WSMan.Management Cmdlet Enter-PSHostProcess 3.0.0.0 Microsoft.PowerShell.Core Cmdlet Enter-PSSession 3.0.0.0 Microsoft.PowerShell.Core Cmdlet Exit-PSHostProcess 3.0.0.0 Microsoft.PowerShell.Core Cmdlet Exit-PSSession 3.0.0.0 Microsoft.PowerShell.Core Cmdlet Expand-OsImage 3.0 Dism Cmdlet Expand-WindowsCustomDataImage 3.0 Dism Cmdlet Expand-WindowsImage 3.0 Dism Cmdlet Export-Alias 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Export-BcdStore 1.0.0 Microsoft.Windows.Bcd.Cmdlets Cmdlet Export-BinaryMiLog 1.0.0.0 CimCmdlets Cmdlet Export-Certificate 1.0.0.0 PKI Cmdlet Export-Clixml 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Export-Console 3.0.0.0 Microsoft.PowerShell.Core Cmdlet Export-Counter 3.0.0.0 Microsoft.PowerShell.Diagnostics Cmdlet Export-Csv 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Export-FormatData 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Export-ModuleMember 3.0.0.0 Microsoft.PowerShell.Core Cmdlet Export-OsImage 3.0 Dism Cmdlet Export-PfxCertificate 1.0.0.0 PKI Cmdlet Export-ProvisioningPackage 3.0 Provisioning Cmdlet Export-PSSession 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Export-StartLayout 1.0.0.1 StartLayout Cmdlet Export-StartLayoutEdgeAssets 1.0.0.1 StartLayout Cmdlet Export-TlsSessionTicketKey 2.0.0.0 TLS Cmdlet Export-Trace 3.0 Provisioning Cmdlet Export-UevConfiguration 2.1.639.0 UEV Cmdlet Export-UevPackage 2.1.639.0 UEV Cmdlet Export-WindowsCapabilitySource 3.0 Dism Cmdlet Export-WindowsDriver 3.0 Dism Cmdlet Export-WindowsImage 3.0 Dism Cmdlet Find-LapsADExtendedRights 1.0.0.0 LAPS Cmdlet Find-Package 1.0.0.1 PackageManagement Cmdlet Find-PackageProvider 1.0.0.1 PackageManagement Cmdlet ForEach-Object 3.0.0.0 Microsoft.PowerShell.Core Cmdlet Format-Custom 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Format-List 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Format-SecureBootUEFI 2.0.0.0 SecureBoot Cmdlet Format-Table 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Format-Wide 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Get-Acl 3.0.0.0 Microsoft.PowerShell.Security Cmdlet Get-Alias 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Get-AppLockerFileInformation 2.0.0.0 AppLocker Cmdlet Get-AppLockerPolicy 2.0.0.0 AppLocker Cmdlet Get-AppProvisionedSharedPackageContainer 3.0 Dism Cmdlet Get-AppSharedPackageContainer 2.0.1.0 Appx Cmdlet Get-AppvClientApplication 1.0.0.0 AppvClient Cmdlet Get-AppvClientConfiguration 1.0.0.0 AppvClient Cmdlet Get-AppvClientConnectionGroup 1.0.0.0 AppvClient Cmdlet Get-AppvClientMode 1.0.0.0 AppvClient Cmdlet Get-AppvClientPackage 1.0.0.0 AppvClient Cmdlet Get-AppvPublishingServer 1.0.0.0 AppvClient Cmdlet Get-AppvStatus 1.0.0.0 AppvClient Cmdlet Get-AppxDefaultVolume 2.0.1.0 Appx Cmdlet Get-AppxPackage 2.0.1.0 Appx Cmdlet Get-AppxPackageAutoUpdateSettings 2.0.1.0 Appx Cmdlet Get-AppxPackageManifest 2.0.1.0 Appx Cmdlet Get-AppxProvisionedPackage 3.0 Dism Cmdlet Get-AppxVolume 2.0.1.0 Appx Cmdlet Get-AuthenticodeSignature 3.0.0.0 Microsoft.PowerShell.Security Cmdlet Get-BcdEntry 1.0.0 Microsoft.Windows.Bcd.Cmdlets Cmdlet Get-BcdEntryDebugSettings 1.0.0 Microsoft.Windows.Bcd.Cmdlets Cmdlet Get-BcdEntryHypervisorSettings 1.0.0 Microsoft.Windows.Bcd.Cmdlets Cmdlet Get-BcdStore 1.0.0 Microsoft.Windows.Bcd.Cmdlets Cmdlet Get-BitsTransfer 2.0.0.0 BitsTransfer Cmdlet Get-Certificate 1.0.0.0 PKI Cmdlet Get-CertificateAutoEnrollmentPolicy 1.0.0.0 PKI Cmdlet Get-CertificateEnrollmentPolicyServer 1.0.0.0 PKI Cmdlet Get-CertificateNotificationTask 1.0.0.0 PKI Cmdlet Get-ChildItem 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Get-CimAssociatedInstance 1.0.0.0 CimCmdlets Cmdlet Get-CimClass 1.0.0.0 CimCmdlets Cmdlet Get-CimInstance 1.0.0.0 CimCmdlets Cmdlet Get-CimSession 1.0.0.0 CimCmdlets Cmdlet Get-CIPolicy 1.0 ConfigCI Cmdlet Get-CIPolicyIdInfo 1.0 ConfigCI Cmdlet Get-CIPolicyInfo 1.0 ConfigCI Cmdlet Get-Clipboard 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Get-CmsMessage 3.0.0.0 Microsoft.PowerShell.Security Cmdlet Get-Command 3.0.0.0 Microsoft.PowerShell.Core Cmdlet Get-ComputerInfo 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Get-ComputerRestorePoint 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Get-Content 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Get-ControlPanelItem 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Get-Counter 3.0.0.0 Microsoft.PowerShell.Diagnostics Cmdlet Get-Credential 3.0.0.0 Microsoft.PowerShell.Security Cmdlet Get-Culture 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Get-DAPolicyChange 2.0.0.0 NetSecurity Cmdlet Get-Date 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Get-DeliveryOptimizationLog 1.0.3.0 DeliveryOptimization Cmdlet Get-DeliveryOptimizationLogAnalysis 1.0.3.0 DeliveryOptimization Cmdlet Get-Event 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Get-EventLog 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Get-EventSubscriber 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Get-ExecutionPolicy 3.0.0.0 Microsoft.PowerShell.Security Cmdlet Get-FormatData 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Get-Help 3.0.0.0 Microsoft.PowerShell.Core Cmdlet Get-History 3.0.0.0 Microsoft.PowerShell.Core Cmdlet Get-Host 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Get-HotFix 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Get-InstalledLanguage 1.0 LanguagePackManagement Cmdlet Get-Item 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Get-ItemProperty 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Get-ItemPropertyValue 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Get-Job 3.0.0.0 Microsoft.PowerShell.Core Cmdlet Get-JobTrigger 1.1.0.0 PSScheduledJob Cmdlet Get-KdsConfiguration 1.0.0.0 Kds Cmdlet Get-KdsRootKey 1.0.0.0 Kds Cmdlet Get-LapsADPassword 1.0.0.0 LAPS Cmdlet Get-LocalGroup 1.0.0.0 Microsoft.PowerShell.LocalAccounts Cmdlet Get-LocalGroupMember 1.0.0.0 Microsoft.PowerShell.LocalAccounts Cmdlet Get-LocalUser 1.0.0.0 Microsoft.PowerShell.LocalAccounts Cmdlet Get-Location 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Get-Member 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Get-Module 3.0.0.0 Microsoft.PowerShell.Core Cmdlet Get-NonRemovableAppsPolicy 3.0 Dism Cmdlet Get-OSConfiguration 1.1.3.0 OsConfiguration Cmdlet Get-OsConfigurationDocument 1.1.3.0 OsConfiguration Cmdlet Get-OsConfigurationDocumentContent 1.1.3.0 OsConfiguration Cmdlet Get-OsConfigurationDocumentResult 1.1.3.0 OsConfiguration Cmdlet Get-OsConfigurationProperty 1.1.3.0 OsConfiguration Cmdlet Get-Package 1.0.0.1 PackageManagement Cmdlet Get-PackageProvider 1.0.0.1 PackageManagement Cmdlet Get-PackageSource 1.0.0.1 PackageManagement Cmdlet Get-PfxCertificate 3.0.0.0 Microsoft.PowerShell.Security Cmdlet Get-PfxData 1.0.0.0 PKI Cmdlet Get-PmemDedicatedMemory 1.0.0.0 PersistentMemory Cmdlet Get-PmemDisk 1.0.0.0 PersistentMemory Cmdlet Get-PmemPhysicalDevice 1.0.0.0 PersistentMemory Cmdlet Get-PmemUnusedRegion 1.0.0.0 PersistentMemory Cmdlet Get-Process 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Get-ProcessMitigation 1.0.12 ProcessMitigations Cmdlet Get-ProvisioningPackage 3.0 Provisioning Cmdlet Get-PSBreakpoint 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Get-PSCallStack 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Get-PSDrive 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Get-PSHostProcessInfo 3.0.0.0 Microsoft.PowerShell.Core Cmdlet Get-PSProvider 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Get-PSReadLineKeyHandler 2.0.0 PSReadLine Cmdlet Get-PSReadLineOption 2.0.0 PSReadLine Cmdlet Get-PSSession 3.0.0.0 Microsoft.PowerShell.Core Cmdlet Get-PSSessionCapability 3.0.0.0 Microsoft.PowerShell.Core Cmdlet Get-PSSessionConfiguration 3.0.0.0 Microsoft.PowerShell.Core Cmdlet Get-PSSnapin 3.0.0.0 Microsoft.PowerShell.Core Cmdlet Get-Random 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Get-ReFSDedupSchedule 2.0.0.0 Microsoft.ReFsDedup.Commands Cmdlet Get-ReFSDedupScrubSchedule 2.0.0.0 Microsoft.ReFsDedup.Commands Cmdlet Get-ReFSDedupStatus 2.0.0.0 Microsoft.ReFsDedup.Commands Cmdlet Get-Runspace 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Get-RunspaceDebug 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Get-ScheduledJob 1.1.0.0 PSScheduledJob Cmdlet Get-ScheduledJobOption 1.1.0.0 PSScheduledJob Cmdlet Get-SecureBootPolicy 2.0.0.0 SecureBoot Cmdlet Get-SecureBootUEFI 2.0.0.0 SecureBoot Cmdlet Get-Service 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Get-SystemDriver 1.0 ConfigCI Cmdlet Get-SystemPreferredUILanguage 1.0 LanguagePackManagement Cmdlet Get-TimeZone 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Get-TlsCipherSuite 2.0.0.0 TLS Cmdlet Get-TlsEccCurve 2.0.0.0 TLS Cmdlet Get-Tpm 2.0.0.0 TrustedPlatformModule Cmdlet Get-TpmEndorsementKeyInfo 2.0.0.0 TrustedPlatformModule Cmdlet Get-TpmSupportedFeature 2.0.0.0 TrustedPlatformModule Cmdlet Get-TraceSource 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Get-Transaction 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Get-TroubleshootingPack 1.0.0.0 TroubleshootingPack Cmdlet Get-TrustedProvisioningCertificate 3.0 Provisioning Cmdlet Get-TypeData 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Get-UevAppxPackage 2.1.639.0 UEV Cmdlet Get-UevConfiguration 2.1.639.0 UEV Cmdlet Get-UevStatus 2.1.639.0 UEV Cmdlet Get-UevTemplate 2.1.639.0 UEV Cmdlet Get-UevTemplateProgram 2.1.639.0 UEV Cmdlet Get-UICulture 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Get-Unique 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Get-Variable 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Get-WheaMemoryPolicy 2.0.0.0 Whea Cmdlet Get-WIMBootEntry 3.0 Dism Cmdlet Get-WinAcceptLanguageFromLanguageListOptOut 2.1.0.0 International Cmdlet Get-WinCultureFromLanguageListOptOut 2.1.0.0 International Cmdlet Get-WinDefaultInputMethodOverride 2.1.0.0 International Cmdlet Get-WindowsCapability 3.0 Dism Cmdlet Get-WindowsDeveloperLicense 1.0.0.0 WindowsDeveloperLicense Cmdlet Get-WindowsDriver 3.0 Dism Cmdlet Get-WindowsEdition 3.0 Dism Cmdlet Get-WindowsErrorReporting 1.0 WindowsErrorReporting Cmdlet Get-WindowsImage 3.0 Dism Cmdlet Get-WindowsImageContent 3.0 Dism Cmdlet Get-WindowsOptionalFeature 3.0 Dism Cmdlet Get-WindowsPackage 3.0 Dism Cmdlet Get-WindowsReservedStorageState 3.0 Dism Cmdlet Get-WindowsSearchSetting 1.0.0.0 WindowsSearch Cmdlet Get-WinEvent 3.0.0.0 Microsoft.PowerShell.Diagnostics Cmdlet Get-WinHomeLocation 2.1.0.0 International Cmdlet Get-WinLanguageBarOption 2.1.0.0 International Cmdlet Get-WinSystemLocale 2.1.0.0 International Cmdlet Get-WinUILanguageOverride 2.1.0.0 International Cmdlet Get-WinUserLanguageList 2.1.0.0 International Cmdlet Get-WmiObject 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Get-WSManCredSSP 3.0.0.0 Microsoft.WSMan.Management Cmdlet Get-WSManInstance 3.0.0.0 Microsoft.WSMan.Management Cmdlet Group-Object 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Import-Alias 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Import-BcdStore 1.0.0 Microsoft.Windows.Bcd.Cmdlets Cmdlet Import-BinaryMiLog 1.0.0.0 CimCmdlets Cmdlet Import-Certificate 1.0.0.0 PKI Cmdlet Import-Clixml 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Import-Counter 3.0.0.0 Microsoft.PowerShell.Diagnostics Cmdlet Import-Csv 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Import-LocalizedData 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Import-Module 3.0.0.0 Microsoft.PowerShell.Core Cmdlet Import-PackageProvider 1.0.0.1 PackageManagement Cmdlet Import-PfxCertificate 1.0.0.0 PKI Cmdlet Import-PSSession 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Import-StartLayout 1.0.0.1 StartLayout Cmdlet Import-TpmOwnerAuth 2.0.0.0 TrustedPlatformModule Cmdlet Import-UevConfiguration 2.1.639.0 UEV Cmdlet Initialize-PmemPhysicalDevice 1.0.0.0 PersistentMemory Cmdlet Initialize-Tpm 2.0.0.0 TrustedPlatformModule Cmdlet Install-Language 1.0 LanguagePackManagement Cmdlet Install-Package 1.0.0.1 PackageManagement Cmdlet Install-PackageProvider 1.0.0.1 PackageManagement Cmdlet Install-ProvisioningPackage 3.0 Provisioning Cmdlet Install-TrustedProvisioningCertificate 3.0 Provisioning Cmdlet Invoke-CimMethod 1.0.0.0 CimCmdlets Cmdlet Invoke-Command 3.0.0.0 Microsoft.PowerShell.Core Cmdlet Invoke-CommandInDesktopPackage 2.0.1.0 Appx Cmdlet Invoke-DscResource 1.1 PSDesiredStateConfiguration Cmdlet Invoke-Expression 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Invoke-History 3.0.0.0 Microsoft.PowerShell.Core Cmdlet Invoke-Item 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Invoke-LapsPolicyProcessing 1.0.0.0 LAPS Cmdlet Invoke-RestMethod 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Invoke-TroubleshootingPack 1.0.0.0 TroubleshootingPack Cmdlet Invoke-WebRequest 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Invoke-WmiMethod 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Invoke-WSManAction 3.0.0.0 Microsoft.WSMan.Management Cmdlet Join-DtcDiagnosticResourceManager 1.0.0.0 MsDtc Cmdlet Join-Path 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Limit-EventLog 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Measure-Command 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Measure-Object 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Merge-CIPolicy 1.0 ConfigCI Cmdlet Mount-AppvClientConnectionGroup 1.0.0.0 AppvClient Cmdlet Mount-AppvClientPackage 1.0.0.0 AppvClient Cmdlet Mount-AppxVolume 2.0.1.0 Appx Cmdlet Mount-WindowsImage 3.0 Dism Cmdlet Move-AppxPackage 2.0.1.0 Appx Cmdlet Move-Item 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Move-ItemProperty 3.1.0.0 Microsoft.PowerShell.Management Cmdlet New-Alias 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet New-AppLockerPolicy 2.0.0.0 AppLocker Cmdlet New-BcdEntry 1.0.0 Microsoft.Windows.Bcd.Cmdlets Cmdlet New-BcdStore 1.0.0 Microsoft.Windows.Bcd.Cmdlets Cmdlet New-CertificateNotificationTask 1.0.0.0 PKI Cmdlet New-CimInstance 1.0.0.0 CimCmdlets Cmdlet New-CimSession 1.0.0.0 CimCmdlets Cmdlet New-CimSessionOption 1.0.0.0 CimCmdlets Cmdlet New-CIPolicy 1.0 ConfigCI Cmdlet New-CIPolicyRule 1.0 ConfigCI Cmdlet New-DtcDiagnosticTransaction 1.0.0.0 MsDtc Cmdlet New-Event 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet New-EventLog 3.1.0.0 Microsoft.PowerShell.Management Cmdlet New-FileCatalog 3.0.0.0 Microsoft.PowerShell.Security Cmdlet New-Item 3.1.0.0 Microsoft.PowerShell.Management Cmdlet New-ItemProperty 3.1.0.0 Microsoft.PowerShell.Management Cmdlet New-JobTrigger 1.1.0.0 PSScheduledJob Cmdlet New-LocalGroup 1.0.0.0 Microsoft.PowerShell.LocalAccounts Cmdlet New-LocalUser 1.0.0.0 Microsoft.PowerShell.LocalAccounts Cmdlet New-Module 3.0.0.0 Microsoft.PowerShell.Core Cmdlet New-ModuleManifest 3.0.0.0 Microsoft.PowerShell.Core Cmdlet New-NetIPsecAuthProposal 2.0.0.0 NetSecurity Cmdlet New-NetIPsecMainModeCryptoProposal 2.0.0.0 NetSecurity Cmdlet New-NetIPsecQuickModeCryptoProposal 2.0.0.0 NetSecurity Cmdlet New-Object 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet New-PmemDedicatedMemory 1.0.0.0 PersistentMemory Cmdlet New-PmemDisk 1.0.0.0 PersistentMemory Cmdlet New-ProvisioningRepro 3.0 Provisioning Cmdlet New-PSDrive 3.1.0.0 Microsoft.PowerShell.Management Cmdlet New-PSRoleCapabilityFile 3.0.0.0 Microsoft.PowerShell.Core Cmdlet New-PSSession 3.0.0.0 Microsoft.PowerShell.Core Cmdlet New-PSSessionConfigurationFile 3.0.0.0 Microsoft.PowerShell.Core Cmdlet New-PSSessionOption 3.0.0.0 Microsoft.PowerShell.Core Cmdlet New-PSTransportOption 3.0.0.0 Microsoft.PowerShell.Core Cmdlet New-PSWorkflowExecutionOption 2.0.0.0 PSWorkflow Cmdlet New-ScheduledJobOption 1.1.0.0 PSScheduledJob Cmdlet New-SelfSignedCertificate 1.0.0.0 PKI Cmdlet New-Service 3.1.0.0 Microsoft.PowerShell.Management Cmdlet New-TimeSpan 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet New-TlsSessionTicketKey 2.0.0.0 TLS Cmdlet New-Variable 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet New-WebServiceProxy 3.1.0.0 Microsoft.PowerShell.Management Cmdlet New-WindowsCustomImage 3.0 Dism Cmdlet New-WindowsImage 3.0 Dism Cmdlet New-WinEvent 3.0.0.0 Microsoft.PowerShell.Diagnostics Cmdlet New-WinUserLanguageList 2.1.0.0 International Cmdlet New-WSManInstance 3.0.0.0 Microsoft.WSMan.Management Cmdlet New-WSManSessionOption 3.0.0.0 Microsoft.WSMan.Management Cmdlet Optimize-AppxProvisionedPackages 3.0 Dism Cmdlet Optimize-WindowsImage 3.0 Dism Cmdlet Out-Default 3.0.0.0 Microsoft.PowerShell.Core Cmdlet Out-File 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Out-GridView 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Out-Host 3.0.0.0 Microsoft.PowerShell.Core Cmdlet Out-Null 3.0.0.0 Microsoft.PowerShell.Core Cmdlet Out-Printer 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Out-String 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Pop-Location 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Protect-CmsMessage 3.0.0.0 Microsoft.PowerShell.Security Cmdlet Publish-AppvClientPackage 1.0.0.0 AppvClient Cmdlet Publish-DscConfiguration 1.1 PSDesiredStateConfiguration Cmdlet Push-Location 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Read-Host 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Receive-DtcDiagnosticTransaction 1.0.0.0 MsDtc Cmdlet Receive-Job 3.0.0.0 Microsoft.PowerShell.Core Cmdlet Receive-PSSession 3.0.0.0 Microsoft.PowerShell.Core Cmdlet Register-ArgumentCompleter 3.0.0.0 Microsoft.PowerShell.Core Cmdlet Register-CimIndicationEvent 1.0.0.0 CimCmdlets Cmdlet Register-EngineEvent 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Register-ObjectEvent 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Register-PackageSource 1.0.0.1 PackageManagement Cmdlet Register-PSSessionConfiguration 3.0.0.0 Microsoft.PowerShell.Core Cmdlet Register-ScheduledJob 1.1.0.0 PSScheduledJob Cmdlet Register-UevTemplate 2.1.639.0 UEV Cmdlet Register-WmiEvent 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Remove-AppProvisionedSharedPackageContainer 3.0 Dism Cmdlet Remove-AppSharedPackageContainer 2.0.1.0 Appx Cmdlet Remove-AppvClientConnectionGroup 1.0.0.0 AppvClient Cmdlet Remove-AppvClientPackage 1.0.0.0 AppvClient Cmdlet Remove-AppvPublishingServer 1.0.0.0 AppvClient Cmdlet Remove-AppxPackage 2.0.1.0 Appx Cmdlet Remove-AppxPackageAutoUpdateSettings 2.0.1.0 Appx Cmdlet Remove-AppxProvisionedPackage 3.0 Dism Cmdlet Remove-AppxVolume 2.0.1.0 Appx Cmdlet Remove-BcdElement 1.0.0 Microsoft.Windows.Bcd.Cmdlets Cmdlet Remove-BcdEntry 1.0.0 Microsoft.Windows.Bcd.Cmdlets Cmdlet Remove-BitsTransfer 2.0.0.0 BitsTransfer Cmdlet Remove-CertificateEnrollmentPolicyServer 1.0.0.0 PKI Cmdlet Remove-CertificateNotificationTask 1.0.0.0 PKI Cmdlet Remove-CimInstance 1.0.0.0 CimCmdlets Cmdlet Remove-CimSession 1.0.0.0 CimCmdlets Cmdlet Remove-CIPolicyRule 1.0 ConfigCI Cmdlet Remove-Computer 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Remove-Event 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Remove-EventLog 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Remove-Item 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Remove-ItemProperty 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Remove-Job 3.0.0.0 Microsoft.PowerShell.Core Cmdlet Remove-JobTrigger 1.1.0.0 PSScheduledJob Cmdlet Remove-LocalGroup 1.0.0.0 Microsoft.PowerShell.LocalAccounts Cmdlet Remove-LocalGroupMember 1.0.0.0 Microsoft.PowerShell.LocalAccounts Cmdlet Remove-LocalUser 1.0.0.0 Microsoft.PowerShell.LocalAccounts Cmdlet Remove-Module 3.0.0.0 Microsoft.PowerShell.Core Cmdlet Remove-OsConfigurationDocument 1.1.3.0 OsConfiguration Cmdlet Remove-PmemDedicatedMemory 1.0.0.0 PersistentMemory Cmdlet Remove-PmemDisk 1.0.0.0 PersistentMemory Cmdlet Remove-PSBreakpoint 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Remove-PSDrive 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Remove-PSReadLineKeyHandler 2.0.0 PSReadLine Cmdlet Remove-PSSession 3.0.0.0 Microsoft.PowerShell.Core Cmdlet Remove-PSSnapin 3.0.0.0 Microsoft.PowerShell.Core Cmdlet Remove-TypeData 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Remove-Variable 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Remove-WindowsCapability 3.0 Dism Cmdlet Remove-WindowsDriver 3.0 Dism Cmdlet Remove-WindowsImage 3.0 Dism Cmdlet Remove-WindowsPackage 3.0 Dism Cmdlet Remove-WmiObject 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Remove-WSManInstance 3.0.0.0 Microsoft.WSMan.Management Cmdlet Rename-Computer 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Rename-Item 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Rename-ItemProperty 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Rename-LocalGroup 1.0.0.0 Microsoft.PowerShell.LocalAccounts Cmdlet Rename-LocalUser 1.0.0.0 Microsoft.PowerShell.LocalAccounts Cmdlet Repair-AppvClientConnectionGroup 1.0.0.0 AppvClient Cmdlet Repair-AppvClientPackage 1.0.0.0 AppvClient Cmdlet Repair-UevTemplateIndex 2.1.639.0 UEV Cmdlet Repair-WindowsImage 3.0 Dism Cmdlet Reset-AppSharedPackageContainer 2.0.1.0 Appx Cmdlet Reset-AppxPackage 2.0.1.0 Appx Cmdlet Reset-ComputerMachinePassword 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Reset-LapsPassword 1.0.0.0 LAPS Cmdlet Resolve-DnsName 1.0.0.0 DnsClient Cmdlet Resolve-Path 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Restart-Computer 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Restart-Service 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Restore-Computer 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Restore-UevBackup 2.1.639.0 UEV Cmdlet Restore-UevUserSetting 2.1.639.0 UEV Cmdlet Resume-BitsTransfer 2.0.0.0 BitsTransfer Cmdlet Resume-Job 3.0.0.0 Microsoft.PowerShell.Core Cmdlet Resume-ProvisioningSession 3.0 Provisioning Cmdlet Resume-ReFSDedupSchedule 2.0.0.0 Microsoft.ReFsDedup.Commands Cmdlet Resume-Service 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Save-Help 3.0.0.0 Microsoft.PowerShell.Core Cmdlet Save-OsImage 3.0 Dism Cmdlet Save-Package 1.0.0.1 PackageManagement Cmdlet Save-SoftwareInventory 3.0 Dism Cmdlet Save-WindowsImage 3.0 Dism Cmdlet Select-Object 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Select-String 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Select-Xml 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Send-AppvClientReport 1.0.0.0 AppvClient Cmdlet Send-DtcDiagnosticTransaction 1.0.0.0 MsDtc Cmdlet Send-MailMessage 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Set-Acl 3.0.0.0 Microsoft.PowerShell.Security Cmdlet Set-Alias 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Set-AppBackgroundTaskResourcePolicy 1.0.0.0 AppBackgroundTask Cmdlet Set-AppLockerPolicy 2.0.0.0 AppLocker Cmdlet Set-AppvClientConfiguration 1.0.0.0 AppvClient Cmdlet Set-AppvClientMode 1.0.0.0 AppvClient Cmdlet Set-AppvClientPackage 1.0.0.0 AppvClient Cmdlet Set-AppvPublishingServer 1.0.0.0 AppvClient Cmdlet Set-AppxDefaultVolume 2.0.1.0 Appx Cmdlet Set-AppxPackageAutoUpdateSettings 2.0.1.0 Appx Cmdlet Set-AppXProvisionedDataFile 3.0 Dism Cmdlet Set-AuthenticodeSignature 3.0.0.0 Microsoft.PowerShell.Security Cmdlet Set-BcdBootDefault 1.0.0 Microsoft.Windows.Bcd.Cmdlets Cmdlet Set-BcdBootDisplayOrder 1.0.0 Microsoft.Windows.Bcd.Cmdlets Cmdlet Set-BcdBootSequence 1.0.0 Microsoft.Windows.Bcd.Cmdlets Cmdlet Set-BcdBootTimeout 1.0.0 Microsoft.Windows.Bcd.Cmdlets Cmdlet Set-BcdBootToolsDisplayOrder 1.0.0 Microsoft.Windows.Bcd.Cmdlets Cmdlet Set-BcdDebugSettings 1.0.0 Microsoft.Windows.Bcd.Cmdlets Cmdlet Set-BcdElement 1.0.0 Microsoft.Windows.Bcd.Cmdlets Cmdlet Set-BcdHypervisorSettings 1.0.0 Microsoft.Windows.Bcd.Cmdlets Cmdlet Set-BitsTransfer 2.0.0.0 BitsTransfer Cmdlet Set-CertificateAutoEnrollmentPolicy 1.0.0.0 PKI Cmdlet Set-CimInstance 1.0.0.0 CimCmdlets Cmdlet Set-CIPolicyIdInfo 1.0 ConfigCI Cmdlet Set-CIPolicySetting 1.0 ConfigCI Cmdlet Set-CIPolicyVersion 1.0 ConfigCI Cmdlet Set-Clipboard 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Set-Content 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Set-Culture 2.1.0.0 International Cmdlet Set-Date 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Set-DscLocalConfigurationManager 1.1 PSDesiredStateConfiguration Cmdlet Set-ExecutionPolicy 3.0.0.0 Microsoft.PowerShell.Security Cmdlet Set-HVCIOptions 1.0 ConfigCI Cmdlet Set-Item 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Set-ItemProperty 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Set-JobTrigger 1.1.0.0 PSScheduledJob Cmdlet Set-KdsConfiguration 1.0.0.0 Kds Cmdlet Set-LapsADAuditing 1.0.0.0 LAPS Cmdlet Set-LapsADComputerSelfPermission 1.0.0.0 LAPS Cmdlet Set-LapsADPasswordExpirationTime 1.0.0.0 LAPS Cmdlet Set-LapsADReadPasswordPermission 1.0.0.0 LAPS Cmdlet Set-LapsADResetPasswordPermission 1.0.0.0 LAPS Cmdlet Set-LocalGroup 1.0.0.0 Microsoft.PowerShell.LocalAccounts Cmdlet Set-LocalUser 1.0.0.0 Microsoft.PowerShell.LocalAccounts Cmdlet Set-Location 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Set-NonRemovableAppsPolicy 3.0 Dism Cmdlet Set-OsConfigurationDocument 1.1.3.0 OsConfiguration Cmdlet Set-OsConfigurationProperty 1.1.3.0 OsConfiguration Cmdlet Set-PackageSource 1.0.0.1 PackageManagement Cmdlet Set-ProcessMitigation 1.0.12 ProcessMitigations Cmdlet Set-PSBreakpoint 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Set-PSDebug 3.0.0.0 Microsoft.PowerShell.Core Cmdlet Set-PSReadLineKeyHandler 2.0.0 PSReadLine Cmdlet Set-PSReadLineOption 2.0.0 PSReadLine Cmdlet Set-PSSessionConfiguration 3.0.0.0 Microsoft.PowerShell.Core Cmdlet Set-ReFSDedupSchedule 2.0.0.0 Microsoft.ReFsDedup.Commands Cmdlet Set-ReFSDedupScrubSchedule 2.0.0.0 Microsoft.ReFsDedup.Commands Cmdlet Set-RuleOption 1.0 ConfigCI Cmdlet Set-ScheduledJob 1.1.0.0 PSScheduledJob Cmdlet Set-ScheduledJobOption 1.1.0.0 PSScheduledJob Cmdlet Set-SecureBootUEFI 2.0.0.0 SecureBoot Cmdlet Set-Service 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Set-StrictMode 3.0.0.0 Microsoft.PowerShell.Core Cmdlet Set-SystemPreferredUILanguage 1.0 LanguagePackManagement Cmdlet Set-TimeZone 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Set-TpmOwnerAuth 2.0.0.0 TrustedPlatformModule Cmdlet Set-TraceSource 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Set-UevConfiguration 2.1.639.0 UEV Cmdlet Set-UevTemplateProfile 2.1.639.0 UEV Cmdlet Set-Variable 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Set-WheaMemoryPolicy 2.0.0.0 Whea Cmdlet Set-WinAcceptLanguageFromLanguageListOptOut 2.1.0.0 International Cmdlet Set-WinCultureFromLanguageListOptOut 2.1.0.0 International Cmdlet Set-WinDefaultInputMethodOverride 2.1.0.0 International Cmdlet Set-WindowsEdition 3.0 Dism Cmdlet Set-WindowsProductKey 3.0 Dism Cmdlet Set-WindowsReservedStorageState 3.0 Dism Cmdlet Set-WindowsSearchSetting 1.0.0.0 WindowsSearch Cmdlet Set-WinHomeLocation 2.1.0.0 International Cmdlet Set-WinLanguageBarOption 2.1.0.0 International Cmdlet Set-WinSystemLocale 2.1.0.0 International Cmdlet Set-WinUILanguageOverride 2.1.0.0 International Cmdlet Set-WinUserLanguageList 2.1.0.0 International Cmdlet Set-WmiInstance 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Set-WSManInstance 3.0.0.0 Microsoft.WSMan.Management Cmdlet Set-WSManQuickConfig 3.0.0.0 Microsoft.WSMan.Management Cmdlet Show-Command 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Show-ControlPanelItem 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Show-EventLog 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Show-WindowsDeveloperLicenseRegistration 1.0.0.0 WindowsDeveloperLicense Cmdlet Sort-Object 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Split-Path 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Split-WindowsImage 3.0 Dism Cmdlet Start-BitsTransfer 2.0.0.0 BitsTransfer Cmdlet Start-DscConfiguration 1.1 PSDesiredStateConfiguration Cmdlet Start-DtcDiagnosticResourceManager 1.0.0.0 MsDtc Cmdlet Start-Job 3.0.0.0 Microsoft.PowerShell.Core Cmdlet Start-OSUninstall 3.0 Dism Cmdlet Start-Process 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Start-ReFSDedupJob 2.0.0.0 Microsoft.ReFsDedup.Commands Cmdlet Start-Service 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Start-Sleep 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Start-Transaction 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Start-Transcript 3.0.0.0 Microsoft.PowerShell.Host Cmdlet Stop-AppvClientConnectionGroup 1.0.0.0 AppvClient Cmdlet Stop-AppvClientPackage 1.0.0.0 AppvClient Cmdlet Stop-Computer 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Stop-DtcDiagnosticResourceManager 1.0.0.0 MsDtc Cmdlet Stop-Job 3.0.0.0 Microsoft.PowerShell.Core Cmdlet Stop-Process 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Stop-ReFSDedupJob 2.0.0.0 Microsoft.ReFsDedup.Commands Cmdlet Stop-Service 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Stop-Transcript 3.0.0.0 Microsoft.PowerShell.Host Cmdlet Suspend-BitsTransfer 2.0.0.0 BitsTransfer Cmdlet Suspend-Job 3.0.0.0 Microsoft.PowerShell.Core Cmdlet Suspend-ReFSDedupSchedule 2.0.0.0 Microsoft.ReFsDedup.Commands Cmdlet Suspend-Service 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Switch-Certificate 1.0.0.0 PKI Cmdlet Sync-AppvPublishingServer 1.0.0.0 AppvClient Cmdlet Tee-Object 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Test-AppLockerPolicy 2.0.0.0 AppLocker Cmdlet Test-Certificate 1.0.0.0 PKI Cmdlet Test-ComputerSecureChannel 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Test-Connection 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Test-DscConfiguration 1.1 PSDesiredStateConfiguration Cmdlet Test-FileCatalog 3.0.0.0 Microsoft.PowerShell.Security Cmdlet Test-KdsRootKey 1.0.0.0 Kds Cmdlet Test-ModuleManifest 3.0.0.0 Microsoft.PowerShell.Core Cmdlet Test-Path 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Test-PSSessionConfigurationFile 3.0.0.0 Microsoft.PowerShell.Core Cmdlet Test-UevTemplate 2.1.639.0 UEV Cmdlet Test-WSMan 3.0.0.0 Microsoft.WSMan.Management Cmdlet Trace-Command 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Unblock-File 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Unblock-Tpm 2.0.0.0 TrustedPlatformModule Cmdlet Undo-DtcDiagnosticTransaction 1.0.0.0 MsDtc Cmdlet Undo-Transaction 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Uninstall-Language 1.0 LanguagePackManagement Cmdlet Uninstall-Package 1.0.0.1 PackageManagement Cmdlet Uninstall-ProvisioningPackage 3.0 Provisioning Cmdlet Uninstall-TrustedProvisioningCertificate 3.0 Provisioning Cmdlet Unprotect-CmsMessage 3.0.0.0 Microsoft.PowerShell.Security Cmdlet Unpublish-AppvClientPackage 1.0.0.0 AppvClient Cmdlet Unregister-Event 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Unregister-PackageSource 1.0.0.1 PackageManagement Cmdlet Unregister-PSSessionConfiguration 3.0.0.0 Microsoft.PowerShell.Core Cmdlet Unregister-ScheduledJob 1.1.0.0 PSScheduledJob Cmdlet Unregister-UevTemplate 2.1.639.0 UEV Cmdlet Unregister-WindowsDeveloperLicense 1.0.0.0 WindowsDeveloperLicense Cmdlet Update-DscConfiguration 1.1 PSDesiredStateConfiguration Cmdlet Update-FormatData 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Update-Help 3.0.0.0 Microsoft.PowerShell.Core Cmdlet Update-LapsADSchema 1.0.0.0 LAPS Cmdlet Update-List 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Update-TypeData 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Update-UevTemplate 2.1.639.0 UEV Cmdlet Update-WIMBootEntry 3.0 Dism Cmdlet Use-Transaction 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Use-WindowsUnattend 3.0 Dism Cmdlet Wait-Debugger 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Wait-Event 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Wait-Job 3.0.0.0 Microsoft.PowerShell.Core Cmdlet Wait-Process 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Where-Object 3.0.0.0 Microsoft.PowerShell.Core Cmdlet Write-Debug 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Write-Error 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Write-EventLog 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Write-Host 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Write-Information 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Write-Output 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Write-Progress 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Write-Verbose 3.1.0.0 Microsoft.PowerShell.Utility Cmdlet Write-Warning 3.1.0.0 Microsoft.PowerShell.Utility PS C:\Users\rinsaka>
上の例では実行結果が一気に流れて表示されてしまいます.次の通り「more
」コマンドレットをパイプでつなぐことによって1画面ずつ表示させることができます.なお,スペースキーで1画面ずつ進み,改行キーでは1行ずつ進みます.途中で表示を止めるには q を押します.
PS C:\Users\rinsaka> Get-Command | more ⏎ CommandType Name Version Source ----------- ---- ------- ------ Alias Add-AppPackage 2.0.1.0 Appx Alias Add-AppPackageVolume 2.0.1.0 Appx Alias Add-AppProvisionedPackage 3.0 Dism Alias Add-MsixPackage 2.0.1.0 Appx Alias Add-MsixPackageVolume 2.0.1.0 Appx Alias Add-MsixVolume 2.0.1.0 Appx Alias Add-ProvisionedAppPackage 3.0 Dism Alias Add-ProvisionedAppSharedPackageContainer 3.0 Dism Alias Add-ProvisionedAppxPackage 3.0 Dism Alias Add-ProvisioningPackage 3.0 Provisioning Alias Add-TrustedProvisioningCertificate 3.0 Provisioning Alias Apply-WindowsUnattend 3.0 Dism Alias Disable-PhysicalDiskIndication 2.0.0.0 Storage Alias Disable-PhysicalDiskIndication 1.0.0.0 VMDirectStorage Alias Disable-StorageDiagnosticLog 2.0.0.0 Storage Alias Disable-StorageDiagnosticLog 1.0.0.0 VMDirectStorage Alias Dismount-AppPackageVolume 2.0.1.0 Appx Alias Dismount-MsixPackageVolume 2.0.1.0 Appx Alias Dismount-MsixVolume 2.0.1.0 Appx Alias Enable-PhysicalDiskIndication 2.0.0.0 Storage Alias Enable-PhysicalDiskIndication 1.0.0.0 VMDirectStorage Alias Enable-StorageDiagnosticLog 2.0.0.0 Storage Alias Enable-StorageDiagnosticLog 1.0.0.0 VMDirectStorage Alias Flush-Volume 2.0.0.0 Storage Alias Flush-Volume 1.0.0.0 VMDirectStorage Alias Get-AppPackage 2.0.1.0 Appx -- More --
ワイルドカードを指定して,表示ない表を絞り込むことができます.例えば「Get-L」で始まるコマンドレットだけを表示するには次のようにします.
PS C:\Users\rinsaka> Get-Command Get-L* ⏎ CommandType Name Version Source ----------- ---- ------- ------ Alias Get-Language 1.0 LanguagePackManagement Function Get-LapsAADPassword 1.0.0.0 LAPS Function Get-LapsDiagnostics 1.0.0.0 LAPS Function Get-LogProperties 1.0.0.0 PSDiagnostics Cmdlet Get-LapsADPassword 1.0.0.0 LAPS Cmdlet Get-LocalGroup 1.0.0.0 Microsoft.PowerShell.LocalAccounts Cmdlet Get-LocalGroupMember 1.0.0.0 Microsoft.PowerShell.LocalAccounts Cmdlet Get-LocalUser 1.0.0.0 Microsoft.PowerShell.LocalAccounts Cmdlet Get-Location 3.1.0.0 Microsoft.PowerShell.Management PS C:\Users\rinsaka>
上の実行結果から「Get-Language
」や「Get-LocalUser
」というコマンドレットが利用できることが分かりました.「Get-Language
」を実行してみます.
PS C:\Users\rinsaka> Get-Language ⏎
Language Language Packs Language Features
-------- -------------- -----------------
en-US LpCab, LXP BasicTyping, Handwriting, Speech, TextToSpeech, OCR
ja-JP LpCab, LXP BasicTyping, Handwriting, Speech, TextToSpeech, OCR
und-Jpan None Fonts
PS C:\Users\rinsaka>
さらに「Get-LocalUser
」を実行してみます.
PS C:\Users\rinsaka> Get-LocalUser ⏎
Name Enabled Description
---- ------- -----------
Administrator False コンピューター/ドメインの管理用 (ビルトイン アカウント)
DefaultAccount False システムで管理されるユーザー アカウントです。
Guest False コンピューター/ドメインへのゲスト アクセス用 (ビルトイン アカウント)
rinsaka True
WDAGUtilityAccount False Windows Defender Application Guard シナリオでシステムによって管理および使用されるユーザー...
PS C:\Users\rinsaka>
画面の消去 (Clear-Host)
画面を消去するには「Clear-Host」というFunctionを実行します.
PS C:\Users\rinsaka> Clear-Host ⏎
なお,「Clear-Host
」には「cls
」というAlias(別名)があるので,これも利用できます.
PS C:\Users\rinsaka> cls ⏎
Windows 環境では「clear
」というAliasも利用できます.(なお,Linux や macOS ではそもそも同じ機能を実現するための clear コマンドが存在しています.)
PS C:\Users\rinsaka> clear ⏎
コマンドレット履歴の表示と再実行 (Get-History / Invoke-History)
PowerShellで実行したコマンドレットはセッションごとにその履歴が残されています.この履歴を確認するには「Get-History
」というコマンドレットを利用します.
PS C:\Users\rinsaka> Get-History ⏎
Id CommandLine
-- -----------
1 Get-Help
2 Get-Command
3 Get-Command | more
4 Get-Command Get-L*
5 Get-Language
6 Get-LocalUser
7 Clear-Host
8 cls
9 clear
「Get-History
」の別名は「history
」です.このようにPowerShellのコマンドレットは文字数が多いのですが,多くの場合別名が準備されています.この別名はLinuxやmacOSのbashと同じものやコマンドプロンプトと同じ名称になっています.
PS C:\Users\rinsaka> history ⏎
Id CommandLine
-- -----------
1 Get-Help
2 Get-Command
3 Get-Command | more
4 Get-Command Get-L*
5 Get-Language
6 Get-LocalUser
7 Clear-Host
8 cls
9 clear
10 Get-History
コマンドレット履歴からそのIDを指定して同じコマンドレットを再度実行するには「Invoke-History
」を使います.例えば ID = 5
のコマンドレットを再度実行します.
PS C:\Users\rinsaka> Invoke-History -Id 5 ⏎
Get-Language
Language Language Packs Language Features
-------- -------------- -----------------
en-US LpCab, LXP BasicTyping, Handwriting, Speech, TextToSpeech, OCR
ja-JP LpCab, LXP BasicTyping, Handwriting, Speech, TextToSpeech, OCR
und-Jpan None Fonts
PS C:\Users\rinsaka>
「Invoke-History
」の別名は「ihy
」です.
PS C:\Users\rinsaka> ihy 6 ⏎
Get-LocalUser
Name Enabled Description
---- ------- -----------
Administrator False コンピューター/ドメインの管理用 (ビルトイン アカウント)
DefaultAccount False システムで管理されるユーザー アカウントです。
Guest False コンピューター/ドメインへのゲスト アクセス用 (ビルトイン アカウント)
rinsaka True
WDAGUtilityAccount False Windows Defender Application Guard シナリオでシステムによって管理および使用されるユーザー...
PS C:\Users\rinsaka>
過去に実行したコマンドレットを再度実行する別の方法として,↑ や ↓ を何度か押して表示されたコマンドレットを実行する方法もあるので,これも覚えておくと良いでしょう.
ドライブ(記憶装置)の変更
USBメモリなどの補助記憶装置を接続すると「C:」以外のアルファベットがその記憶装置に割り当てられます.たとえば「E:」が割り当てられている記憶装置に移動したのちに「C:」ドライブに戻ってみます.
PS C:\Users\rinsaka> E: ⏎ PS E:\> PS E:\> C: ⏎ PS C:\Users\rinsaka>
ターミナルの終了 (exit)
ターミナルを終了するには「exit
」というコマンドを実行します.
PS C:\Users\rinsaka> exit ⏎