====== Get-Command (alias: gcm) ====== 現在のセッションで使用できるコマンドを取得する。\\ ===== which コマンド (Linux) としての利用 ===== **which** コマンドは、PATH に登録されているディレクトリにある実行可能ファイルを、PATH の登録順で最初に見つかったファイルだけを表示する。\\ Windows の PowerShell の場合。\\ $ Get-Command python | Select-Object Source or $ gcm python | select Source Source ------ C:\Users\tomoyan\scoop\apps\python\current\python.exe Linux の [[linux:powershell|PowerShell]] では、**which** を使うこともできるし、**Get-Command (alias: gcm)** を使うこともできる。\\ $ which python /usr/bin/python $ gcm python | select Source Source ------ /usr/bin/python Windows のコマンドプロンプトでは、もともと **where** コマンドが使える🤔\\ > where python C:\Users\tomoyan\scoop\apps\python\current\python.exe C:\Users\tomoyan\scoop\shims\python.exe C:\Users\tomoyan\AppData\Local\Microsoft\WindowsApps\python.exe しかし、Windows の PowerShell では、**where** コマンドは Alias の関係で使えない😅\\ $ where python $ Alias は **where** が **Where-Object** の別名になっているためである。(コマンドプロンプトのように PowerShell を利用すると混乱する😅💦)\\ $ gal where CommandType Name Version Source ----------- ---- ------- ------ Alias where -> Where-Object Windows の PowerShell では、**where.exe** とすると使える🙄\\ $ where.exe python C:\Users\tomoyan\scoop\apps\python\current\python.exe C:\Users\tomoyan\scoop\shims\python.exe C:\Users\tomoyan\AppData\Local\Microsoft\WindowsApps\python.exe Windows の **where** コマンドは、以下に存在している🤯\\ $ gcm where.exe CommandType Name Version Source ----------- ---- ------- ------ Application where.exe 10.0.2020… C:\WINDOWS\system32\where.exe Windows の PowerShell で **where** コマンドは容量だけ食って使い物にならなくなった😒ので、**where.exe** の別名として **which** を登録しておくと良い😁\\ $ echo "sal which where.exe" >> $profile $ . $profile $ which python C:\Users\tomoyan\scoop\apps\python\current\python.exe C:\Users\tomoyan\scoop\shims\python.exe C:\Users\tomoyan\AppData\Local\Microsoft\WindowsApps\python.exe もしくは、[[windows:scoop|Scoop]] の [[windows:gow|Gow]] または [[windows:busybox|BusyBox]] をインストールすると **which** コマンドが使えるようになる😍\\ [[windows:gow|Gow (Gnu On Windows) - Linux コマンド群 (Cygwin 軽量版)]]\\ [[windows:busybox|BusyBox - UNIXコマンド詰め合わせセット🤤]]\\ ===== Windows 10 ===== PowerShell の Cmdlet, Function, Alias などを調べる。\\ $ gcm Get-Command CommandType Name Version Source ----------- ---- ------- ------ Cmdlet Get-Command 7.0.3.0 Microsoft.PowerShell.Core PowerShell モジュール内のコマンドを一覧する。\\ $ gcm -Module Microsoft.PowerShell.Management CommandType Name Version Source ----------- ---- ------- ------ Cmdlet Add-Content 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Clear-Content 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Clear-Item 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Clear-ItemProperty 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Clear-RecycleBin 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Convert-Path 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Copy-Item 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Copy-ItemProperty 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Debug-Process 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Get-ChildItem 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Get-Clipboard 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Get-ComputerInfo 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Get-Content 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Get-HotFix 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Get-Item 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Get-ItemProperty 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Get-ItemPropertyValue 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Get-Location 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Get-Process 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Get-PSDrive 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Get-PSProvider 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Get-Service 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Get-TimeZone 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Invoke-Item 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Join-Path 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Move-Item 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Move-ItemProperty 7.0.0.0 Microsoft.PowerShell.Management Cmdlet New-Item 7.0.0.0 Microsoft.PowerShell.Management Cmdlet New-ItemProperty 7.0.0.0 Microsoft.PowerShell.Management Cmdlet New-PSDrive 7.0.0.0 Microsoft.PowerShell.Management Cmdlet New-Service 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Pop-Location 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Push-Location 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Remove-Item 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Remove-ItemProperty 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Remove-PSDrive 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Remove-Service 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Rename-Computer 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Rename-Item 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Rename-ItemProperty 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Resolve-Path 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Restart-Computer 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Restart-Service 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Resume-Service 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Set-Clipboard 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Set-Content 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Set-Item 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Set-ItemProperty 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Set-Location 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Set-Service 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Set-TimeZone 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Split-Path 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Start-Process 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Start-Service 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Stop-Computer 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Stop-Process 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Stop-Service 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Suspend-Service 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Test-Connection 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Test-Path 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Wait-Process 7.0.0.0 Microsoft.PowerShell.Management $ gcm 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-ProvisionedAppPackage 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 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 Export-VMCheckpoint 2.0.0.0 Hyper-V Alias Export-VMCheckpoint 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-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-PhysicalDiskSNV 2.0.0.0 Storage Alias Get-PhysicalDiskSNV 1.0.0.0 VMDirectStorage Alias Get-ProvisionedAppPackage 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-VMCheckpoint 2.0.0.0 Hyper-V Alias Get-VMCheckpoint 1.0.0.0 VMDirectStorage 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 Move-AppPackage 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-AppPackageVolume 2.0.1.0 Appx Alias Remove-AppProvisionedPackage 3.0 Dism Alias Remove-EtwTraceSession 1.0.0.0 EventTracingManagement Alias Remove-ProvisionedAppPackage 3.0 Dism Alias Remove-ProvisionedAppxPackage 3.0 Dism Alias Remove-ProvisioningPackage 3.0 Provisioning Alias Remove-TrustedProvisioningCertificate 3.0 Provisioning Alias Remove-VMCheckpoint 2.0.0.0 Hyper-V Alias Remove-VMCheckpoint 1.0.0.0 VMDirectStorage Alias Rename-VMCheckpoint 2.0.0.0 Hyper-V Alias Rename-VMCheckpoint 1.0.0.0 VMDirectStorage Alias Restore-VMCheckpoint 2.0.0.0 Hyper-V Alias Restore-VMCheckpoint 1.0.0.0 VMDirectStorage 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-ProvisionedAppPackageDataFile 3.0 Dism Alias Set-ProvisionedAppXDataFile 3.0 Dism 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-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 B: Function Backup-BitLockerKeyProtector 1.0.0.0 BitLocker Function BackupToAAD-BitLockerKeyProtector 1.0.0.0 BitLocker Function Block-FileShareAccess 2.0.0.0 Storage 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.2.4.0 Microsoft.PowerShell.Archive Function Compress-Archive 1.0.1.0 Microsoft.PowerShell.Archive Function Configuration 2.0.5 PSDesiredStateConfiguration Function Configuration 1.1 PSDesiredStateConfiguration Function Connect-IscsiTarget 1.0.0.0 iSCSI Function Connect-VirtualDisk 2.0.0.0 Storage Function ConvertTo-HgsKeyProtector 1.0.0.0 HgsClient 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.2.0 DeliveryOptimization 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.2.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-NetAdapterUso 2.0.0.0 NetAdapter Function Disable-NetAdapterVmq 2.0.0.0 NetAdapter Function Disable-NetDnsTransitionConfiguration 1.0.0.0 NetworkTransition 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 7.0.0.0 PSDiagnostics Function Disable-PSTrace 1.0.0.0 PSDiagnostics Function Disable-PSWSManCombinedTrace 7.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-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 7.0.0.0 PSDiagnostics 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.2.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-NetAdapterUso 2.0.0.0 NetAdapter Function Enable-NetAdapterVmq 2.0.0.0 NetAdapter Function Enable-NetDnsTransitionConfiguration 1.0.0.0 NetworkTransition 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 7.0.0.0 PSDiagnostics Function Enable-PSTrace 1.0.0.0 PSDiagnostics Function Enable-PSWSManCombinedTrace 7.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-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 7.0.0.0 PSDiagnostics Function Enable-WSManTrace 1.0.0.0 PSDiagnostics Function Expand-Archive 1.2.4.0 Microsoft.PowerShell.Archive 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-HgsGuardian 1.0.0.0 HgsClient Function Export-ODataEndpointProxy 1.0 Microsoft.PowerShell.ODataUtils Function Export-ScheduledTask 1.0.0.0 ScheduledTasks Function F: Function Find-Command 2.2.3 PowerShellGet Function Find-DSCResource 2.2.3 PowerShellGet Function Find-Module 2.2.3 PowerShellGet Function Find-NetIPsecRule 2.0.0.0 NetSecurity Function Find-NetRoute 1.0.0.0 NetTCPIP Function Find-RoleCapability 2.2.3 PowerShellGet Function Find-Script 2.2.3 PowerShellGet Function Flush-EtwTraceSession 1.0.0.0 EventTracingManagement 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-CredsFromCredentialProvider 2.2.3 PowerShellGet 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.2.0 DeliveryOptimization Function Get-DeliveryOptimizationPerfSnapThisMonth 1.0.2.0 DeliveryOptimization Function Get-DeliveryOptimizationStatus 1.0.2.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-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.2.0 DeliveryOptimization Function Get-DODownloadMode 1.0.2.0 DeliveryOptimization Function Get-DOPercentageMaxBackgroundBandwidth 1.0.2.0 DeliveryOptimization Function Get-DOPercentageMaxForegroundBandwidth 1.0.2.0 DeliveryOptimization Function Get-DscConfiguration 1.1 PSDesiredStateConfiguration Function Get-DscConfigurationStatus 1.1 PSDesiredStateConfiguration Function Get-DscLocalConfigurationManager 1.1 PSDesiredStateConfiguration Function Get-DscResource 2.0.5 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-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-HgsClientConfiguration 1.0.0.0 HgsClient Function Get-HgsClientHostKey 1.0.0.0 HgsClient Function Get-HgsGuardian 1.0.0.0 HgsClient Function Get-HnsEndpoint 1.0.0.1 HostNetworkingService Function Get-HnsNamespace 1.0.0.1 HostNetworkingService Function Get-HnsNetwork 1.0.0.1 HostNetworkingService Function Get-HnsPolicyList 1.0.0.1 HostNetworkingService Function Get-InitiatorId 2.0.0.0 Storage Function Get-InitiatorPort 2.0.0.0 Storage Function Get-InstalledModule 2.2.3 PowerShellGet Function Get-InstalledScript 2.2.3 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-LogProperties 7.0.0.0 PSDiagnostics Function Get-LogProperties 1.0.0.0 PSDiagnostics Function Get-MaskingSet 2.0.0.0 Storage Function Get-MMAgent 1.0 MMAgent Function Get-MpComputerStatus 1.0 ConfigDefender Function Get-MpComputerStatus 1.0 Defender 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-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-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 1.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-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 1.0.0.0 NetDiagnostics 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-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 2.2.3 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-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-SmbServerCertificateMapping 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.0 StartLayout Function Get-StorageAdvancedProperty 2.0.0.0 Storage Function Get-StorageBusBinding 1.0.0.0 StorageBusCache Function Get-StorageBusDisk 1.0.0.0 StorageBusCache Function Get-StorageChassis 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-VirtualDisk 2.0.0.0 Storage Function Get-VirtualDiskSupportedSize 2.0.0.0 Storage Function Get-VmComputeNativeMethods 1.0.0.1 HostNetworkingService 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-WUAVersion 1.0.0.2 WindowsUpdateProvider Function Get-WUIsPendingReboot 1.0.0.2 WindowsUpdateProvider Function Get-WULastInstallationDate 1.0.0.2 WindowsUpdateProvider Function Get-WULastScanSuccessDate 1.0.0.2 WindowsUpdateProvider Function Grant-FileShareAccess 2.0.0.0 Storage Function Grant-HgsKeyProtectorAccess 1.0.0.0 HgsClient 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-HgsGuardian 1.0.0.0 HgsClient Function Import-IseSnippet 1.0.0.0 ISE Function Initialize-Disk 2.0.0.0 Storage Function Install-Dtc 1.0.0.0 MsDtc Function Install-Module 2.2.3 PowerShellGet Function Install-Script 2.2.3 PowerShellGet Function Install-WUUpdates 1.0.0.2 WindowsUpdateProvider Function Invoke-AsWorkflow 1.0.0.0 PSWorkflowUtility Function Invoke-DscResource 2.0.5 PSDesiredStateConfiguration Function Invoke-HnsRequest 1.0.0.1 HostNetworkingService Function J: Function K: Function L: Function Lock-BitLocker 1.0.0.0 BitLocker Function M: Function mkdir 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 2.0.5 PSDesiredStateConfiguration 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-HgsGuardian 1.0.0.0 HgsClient Function New-HgsKeyProtector 1.0.0.0 HgsClient 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-NetAdapterAdvancedProperty 2.0.0.0 NetAdapter Function New-NetEventSession 1.0.0.0 NetEventPacketCapture 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-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 2.2.3 PowerShellGet 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-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-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 2.2.3 PowerShellGet Function Publish-Script 2.2.3 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 2.2.3 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-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-HgsClientHostKey 1.0.0.0 HgsClient Function Remove-HgsGuardian 1.0.0.0 HgsClient Function Remove-HnsEndpoint 1.0.0.1 HostNetworkingService Function Remove-HnsNamespace 1.0.0.1 HostNetworkingService Function Remove-HnsNetwork 1.0.0.1 HostNetworkingService Function Remove-HnsPolicyList 1.0.0.1 HostNetworkingService 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-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-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-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-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-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-StorageReliabilityCounter 2.0.0.0 Storage 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-HgsKeyProtectorAccess 1.0.0.0 HgsClient Function Revoke-SmbShareAccess 2.0.0.0 SmbShare Function S: Function Save-EtwTraceSession 1.0.0.0 EventTracingManagement Function Save-Module 2.2.3 PowerShellGet Function Save-NetGPO 2.0.0.0 NetSecurity Function Save-NetworkSwitchConfiguration 1.0.0.0 NetworkSwitchManager Function Save-Script 2.2.3 PowerShellGet 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-Disk 2.0.0.0 Storage Function Set-DnsClient 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.2.0 DeliveryOptimization Function Set-DOMaxBackgroundBandwidth 1.0.2.0 DeliveryOptimization Function Set-DOMaxForegroundBandwidth 1.0.2.0 DeliveryOptimization Function Set-DOPercentageMaxBackgroundBandwidth 1.0.2.0 DeliveryOptimization Function Set-DOPercentageMaxForegroundBandwidth 1.0.2.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-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-HgsClientConfiguration 1.0.0.0 HgsClient Function Set-HgsClientHostKey 1.0.0.0 HgsClient Function Set-InitiatorPort 2.0.0.0 Storage Function Set-IscsiChapSecret 1.0.0.0 iSCSI Function Set-LogProperties 7.0.0.0 PSDiagnostics 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-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-NetAdapterUso 2.0.0.0 NetAdapter Function Set-NetAdapterVmq 2.0.0.0 NetAdapter Function Set-NetConnectionProfile 1.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-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 2.2.3 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-SmbClientConfiguration 2.0.0.0 SmbShare Function Set-SmbPathAcl 2.0.0.0 SmbShare Function Set-SmbServerConfiguration 2.0.0.0 SmbShare Function Set-SmbShare 2.0.0.0 SmbShare 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-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 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-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 7.0.0.0 PSDiagnostics Function Start-Trace 1.0.0.0 PSDiagnostics Function Start-WUScan 1.0.0.2 WindowsUpdateProvider 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 7.0.0.0 PSDiagnostics 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-HgsClientConfiguration 1.0.0.0 HgsClient Function Test-NetConnection 1.0.0.0 NetTCPIP Function Test-ScriptFileInfo 2.2.3 PowerShellGet Function U: Function Unblock-FileShareAccess 2.0.0.0 Storage Function Unblock-SmbShareAccess 2.0.0.0 SmbShare Function Uninstall-Dtc 1.0.0.0 MsDtc Function Uninstall-Module 2.2.3 PowerShellGet Function Uninstall-Script 2.2.3 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 2.2.3 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 2.2.3 PowerShellGet Function Update-ModuleManifest 2.2.3 PowerShellGet Function Update-MpSignature 1.0 ConfigDefender Function Update-MpSignature 1.0 Defender Function Update-NetIPsecRule 2.0.0.0 NetSecurity Function Update-Script 2.2.3 PowerShellGet Function Update-ScriptFileInfo 2.2.3 PowerShellGet Function Update-SmbMultichannelConnection 2.0.0.0 SmbShare 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-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 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Add-History 7.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 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Add-SignerRule 1.0 ConfigCI Cmdlet Add-Type 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Add-VMAssignableDevice 2.0.0.0 Hyper-V Cmdlet Add-VMDvdDrive 2.0.0.0 Hyper-V Cmdlet Add-VMFibreChannelHba 2.0.0.0 Hyper-V Cmdlet Add-VMGpuPartitionAdapter 2.0.0.0 Hyper-V Cmdlet Add-VMGroupMember 2.0.0.0 Hyper-V Cmdlet Add-VMHardDiskDrive 2.0.0.0 Hyper-V Cmdlet Add-VMHostAssignableDevice 2.0.0.0 Hyper-V Cmdlet Add-VMKeyStorageDrive 2.0.0.0 Hyper-V Cmdlet Add-VMMigrationNetwork 2.0.0.0 Hyper-V Cmdlet Add-VMNetworkAdapter 2.0.0.0 Hyper-V Cmdlet Add-VMNetworkAdapterAcl 2.0.0.0 Hyper-V Cmdlet Add-VMNetworkAdapterExtendedAcl 2.0.0.0 Hyper-V Cmdlet Add-VMNetworkAdapterRoutingDomainMapping 2.0.0.0 Hyper-V Cmdlet Add-VMPmemController 2.0.0.0 Hyper-V Cmdlet Add-VMRemoteFx3dVideoAdapter 2.0.0.0 Hyper-V Cmdlet Add-VMScsiController 2.0.0.0 Hyper-V Cmdlet Add-VMStoragePath 2.0.0.0 Hyper-V Cmdlet Add-VMSwitch 2.0.0.0 Hyper-V Cmdlet Add-VMSwitchExtensionPortFeature 2.0.0.0 Hyper-V Cmdlet Add-VMSwitchExtensionSwitchFeature 2.0.0.0 Hyper-V Cmdlet Add-VMSwitchTeamMember 2.0.0.0 Hyper-V 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 Checkpoint-VM 2.0.0.0 Hyper-V Cmdlet Clear-Content 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Clear-EventLog 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Clear-History 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Clear-Item 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Clear-ItemProperty 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Clear-KdsCache 1.0.0.0 Kds Cmdlet Clear-RecycleBin 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Clear-Tpm 2.0.0.0 TrustedPlatformModule Cmdlet Clear-Variable 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Clear-WindowsCorruptMountPoint 3.0 Dism Cmdlet Compare-Object 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Compare-VM 2.0.0.0 Hyper-V 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 Complete-VMFailover 2.0.0.0 Hyper-V Cmdlet Confirm-SecureBootUEFI 2.0.0.0 SecureBoot Cmdlet Connect-PSSession 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Connect-VMNetworkAdapter 2.0.0.0 Hyper-V Cmdlet Connect-VMSan 2.0.0.0 Hyper-V Cmdlet Connect-WSMan 7.0.0.0 Microsoft.WSMan.Management Cmdlet Convert-Path 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Convert-VHD 2.0.0.0 Hyper-V Cmdlet ConvertFrom-CIPolicy 1.0 ConfigCI Cmdlet ConvertFrom-Csv 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet ConvertFrom-Json 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet ConvertFrom-Markdown 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet ConvertFrom-SddlString 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet ConvertFrom-SecureString 7.0.0.0 Microsoft.PowerShell.Security Cmdlet ConvertFrom-StringData 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet ConvertTo-Csv 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet ConvertTo-Html 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet ConvertTo-Json 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet ConvertTo-ProcessMitigationPolicy 1.0.11 ProcessMitigations Cmdlet ConvertTo-SecureString 7.0.0.0 Microsoft.PowerShell.Security Cmdlet ConvertTo-TpmOwnerAuth 2.0.0.0 TrustedPlatformModule Cmdlet ConvertTo-Xml 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Copy-Item 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Copy-ItemProperty 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Copy-VMFile 2.0.0.0 Hyper-V Cmdlet Debug-Job 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Debug-Process 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Debug-Runspace 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Debug-VM 2.0.0.0 Hyper-V Cmdlet Disable-AppBackgroundTaskDiagnosticLog 1.0.0.0 AppBackgroundTask Cmdlet Disable-ComputerRestore 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Disable-ExperimentalFeature 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Disable-JobTrigger 1.1.0.0 PSScheduledJob Cmdlet Disable-LocalUser 1.0.0.0 Microsoft.PowerShell.LocalAccounts Cmdlet Disable-PSBreakpoint 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Disable-PSRemoting 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Disable-PSSessionConfiguration 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Disable-RunspaceDebug 7.0.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-VMConsoleSupport 2.0.0.0 Hyper-V Cmdlet Disable-VMEventing 2.0.0.0 Hyper-V Cmdlet Disable-VMIntegrationService 2.0.0.0 Hyper-V Cmdlet Disable-VMMigration 2.0.0.0 Hyper-V Cmdlet Disable-VMRemoteFXPhysicalVideoAdapter 2.0.0.0 Hyper-V Cmdlet Disable-VMResourceMetering 2.0.0.0 Hyper-V Cmdlet Disable-VMSwitchExtension 2.0.0.0 Hyper-V Cmdlet Disable-VMTPM 2.0.0.0 Hyper-V Cmdlet Disable-WindowsErrorReporting 1.0 WindowsErrorReporting Cmdlet Disable-WindowsOptionalFeature 3.0 Dism Cmdlet Disable-WSManCredSSP 7.0.0.0 Microsoft.WSMan.Management Cmdlet Disconnect-PSSession 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Disconnect-VMNetworkAdapter 2.0.0.0 Hyper-V Cmdlet Disconnect-VMSan 2.0.0.0 Hyper-V Cmdlet Disconnect-WSMan 7.0.0.0 Microsoft.WSMan.Management Cmdlet Dismount-AppxVolume 2.0.1.0 Appx Cmdlet Dismount-VHD 2.0.0.0 Hyper-V Cmdlet Dismount-VMHostAssignableDevice 2.0.0.0 Hyper-V Cmdlet Dismount-WindowsImage 3.0 Dism Cmdlet Edit-CIPolicyRule 1.0 ConfigCI Cmdlet Enable-AppBackgroundTaskDiagnosticLog 1.0.0.0 AppBackgroundTask Cmdlet Enable-ComputerRestore 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Enable-ExperimentalFeature 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Enable-JobTrigger 1.1.0.0 PSScheduledJob Cmdlet Enable-LocalUser 1.0.0.0 Microsoft.PowerShell.LocalAccounts Cmdlet Enable-PSBreakpoint 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Enable-PSRemoting 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Enable-PSSessionConfiguration 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Enable-RunspaceDebug 7.0.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-VMConsoleSupport 2.0.0.0 Hyper-V Cmdlet Enable-VMEventing 2.0.0.0 Hyper-V Cmdlet Enable-VMIntegrationService 2.0.0.0 Hyper-V Cmdlet Enable-VMMigration 2.0.0.0 Hyper-V Cmdlet Enable-VMRemoteFXPhysicalVideoAdapter 2.0.0.0 Hyper-V Cmdlet Enable-VMReplication 2.0.0.0 Hyper-V Cmdlet Enable-VMResourceMetering 2.0.0.0 Hyper-V Cmdlet Enable-VMSwitchExtension 2.0.0.0 Hyper-V Cmdlet Enable-VMTPM 2.0.0.0 Hyper-V Cmdlet Enable-WindowsErrorReporting 1.0 WindowsErrorReporting Cmdlet Enable-WindowsOptionalFeature 3.0 Dism Cmdlet Enable-WSManCredSSP 7.0.0.0 Microsoft.WSMan.Management Cmdlet Enter-PSHostProcess 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Enter-PSSession 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Exit-PSHostProcess 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Exit-PSSession 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Expand-WindowsCustomDataImage 3.0 Dism Cmdlet Expand-WindowsImage 3.0 Dism Cmdlet Export-Alias 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Export-Certificate 1.0.0.0 PKI Cmdlet Export-Clixml 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Export-Counter 3.0.0.0 Microsoft.PowerShell.Diagnostics Cmdlet Export-Csv 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Export-FormatData 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Export-ModuleMember 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Export-PfxCertificate 1.0.0.0 PKI Cmdlet Export-ProvisioningPackage 3.0 Provisioning Cmdlet Export-PSSession 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Export-StartLayout 1.0.0.0 StartLayout Cmdlet Export-StartLayoutEdgeAssets 1.0.0.0 StartLayout Cmdlet Export-TlsSessionTicketKey 2.0.0.0 TLS Cmdlet Export-Trace 3.0 Provisioning Cmdlet Export-VM 2.0.0.0 Hyper-V Cmdlet Export-VMSnapshot 2.0.0.0 Hyper-V Cmdlet Export-WindowsCapabilitySource 3.0 Dism Cmdlet Export-WindowsDriver 3.0 Dism Cmdlet Export-WindowsImage 3.0 Dism Cmdlet Find-Package 1.4.6 PackageManagement Cmdlet Find-PackageProvider 1.4.6 PackageManagement Cmdlet ForEach-Object 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Format-Custom 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Format-Hex 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Format-List 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Format-SecureBootUEFI 2.0.0.0 SecureBoot Cmdlet Format-Table 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Format-Wide 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Get-Acl 7.0.0.0 Microsoft.PowerShell.Security Cmdlet Get-Alias 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Get-AppLockerFileInformation 2.0.0.0 AppLocker Cmdlet Get-AppLockerPolicy 2.0.0.0 AppLocker Cmdlet Get-AppxDefaultVolume 2.0.1.0 Appx Cmdlet Get-AppxPackage 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 7.0.0.0 Microsoft.PowerShell.Security 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 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Get-CimAssociatedInstance 7.0.0.0 CimCmdlets Cmdlet Get-CimClass 7.0.0.0 CimCmdlets Cmdlet Get-CimInstance 7.0.0.0 CimCmdlets Cmdlet Get-CimSession 7.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 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Get-CmsMessage 7.0.0.0 Microsoft.PowerShell.Security Cmdlet Get-Command 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Get-ComputerInfo 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Get-ComputerRestorePoint 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Get-Content 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Get-ControlPanelItem 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Get-Counter 7.0.0.0 Microsoft.PowerShell.Diagnostics Cmdlet Get-Credential 7.0.0.0 Microsoft.PowerShell.Security Cmdlet Get-Culture 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Get-DAPolicyChange 2.0.0.0 NetSecurity Cmdlet Get-Date 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Get-DeliveryOptimizationLog 1.0.2.0 DeliveryOptimization Cmdlet Get-DeliveryOptimizationLogAnalysis 1.0.2.0 DeliveryOptimization Cmdlet Get-Error 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Get-Event 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Get-EventLog 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Get-EventSubscriber 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Get-ExecutionPolicy 7.0.0.0 Microsoft.PowerShell.Security Cmdlet Get-ExperimentalFeature 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Get-FileHash 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Get-FormatData 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Get-Help 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Get-HgsAttestationBaselinePolicy 1.0.0.0 HgsClient Cmdlet Get-HgsTrace 1.0.0.0 HgsDiagnostics Cmdlet Get-HgsTraceFileData 1.0.0.0 HgsDiagnostics Cmdlet Get-History 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Get-Host 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Get-HotFix 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Get-Item 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Get-ItemProperty 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Get-ItemPropertyValue 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Get-Job 7.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-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 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Get-MarkdownOption 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Get-Member 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Get-Module 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Get-NonRemovableAppsPolicy 3.0 Dism Cmdlet Get-Package 1.4.6 PackageManagement Cmdlet Get-PackageProvider 1.4.6 PackageManagement Cmdlet Get-PackageSource 1.4.6 PackageManagement Cmdlet Get-PfxCertificate 7.0.0.0 Microsoft.PowerShell.Security Cmdlet Get-PfxData 1.0.0.0 PKI 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 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Get-ProcessMitigation 1.0.11 ProcessMitigations Cmdlet Get-ProvisioningPackage 3.0 Provisioning Cmdlet Get-PSBreakpoint 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Get-PSCallStack 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Get-PSDrive 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Get-PSHostProcessInfo 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Get-PSProvider 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Get-PSReadLineKeyHandler 2.0.0 PSReadLine Cmdlet Get-PSReadLineOption 2.0.0 PSReadLine Cmdlet Get-PSSession 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Get-PSSessionCapability 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Get-PSSessionConfiguration 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Get-Random 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Get-Runspace 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Get-RunspaceDebug 7.0.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 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Get-SystemDriver 1.0 ConfigCI Cmdlet Get-TimeZone 7.0.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 7.0.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 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Get-UICulture 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Get-Unique 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Get-Uptime 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Get-Variable 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Get-Verb 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Get-VHD 2.0.0.0 Hyper-V Cmdlet Get-VHDSet 2.0.0.0 Hyper-V Cmdlet Get-VHDSnapshot 2.0.0.0 Hyper-V Cmdlet Get-VM 2.0.0.0 Hyper-V Cmdlet Get-VMAssignableDevice 2.0.0.0 Hyper-V Cmdlet Get-VMBios 2.0.0.0 Hyper-V Cmdlet Get-VMComPort 2.0.0.0 Hyper-V Cmdlet Get-VMConnectAccess 2.0.0.0 Hyper-V Cmdlet Get-VMDvdDrive 2.0.0.0 Hyper-V Cmdlet Get-VMFibreChannelHba 2.0.0.0 Hyper-V Cmdlet Get-VMFirmware 2.0.0.0 Hyper-V Cmdlet Get-VMFloppyDiskDrive 2.0.0.0 Hyper-V Cmdlet Get-VMGpuPartitionAdapter 2.0.0.0 Hyper-V Cmdlet Get-VMGroup 2.0.0.0 Hyper-V Cmdlet Get-VMHardDiskDrive 2.0.0.0 Hyper-V Cmdlet Get-VMHost 2.0.0.0 Hyper-V Cmdlet Get-VMHostAssignableDevice 2.0.0.0 Hyper-V Cmdlet Get-VMHostCluster 2.0.0.0 Hyper-V Cmdlet Get-VMHostNumaNode 2.0.0.0 Hyper-V Cmdlet Get-VMHostNumaNodeStatus 2.0.0.0 Hyper-V Cmdlet Get-VMHostSupportedVersion 2.0.0.0 Hyper-V Cmdlet Get-VMIdeController 2.0.0.0 Hyper-V Cmdlet Get-VMIntegrationService 2.0.0.0 Hyper-V Cmdlet Get-VMKeyProtector 2.0.0.0 Hyper-V Cmdlet Get-VMKeyStorageDrive 2.0.0.0 Hyper-V Cmdlet Get-VMMemory 2.0.0.0 Hyper-V Cmdlet Get-VMMigrationNetwork 2.0.0.0 Hyper-V Cmdlet Get-VMNetworkAdapter 2.0.0.0 Hyper-V Cmdlet Get-VMNetworkAdapterAcl 2.0.0.0 Hyper-V Cmdlet Get-VMNetworkAdapterExtendedAcl 2.0.0.0 Hyper-V Cmdlet Get-VMNetworkAdapterFailoverConfiguration 2.0.0.0 Hyper-V Cmdlet Get-VMNetworkAdapterIsolation 2.0.0.0 Hyper-V Cmdlet Get-VMNetworkAdapterRdma 2.0.0.0 Hyper-V Cmdlet Get-VMNetworkAdapterRoutingDomainMapping 2.0.0.0 Hyper-V Cmdlet Get-VMNetworkAdapterTeamMapping 2.0.0.0 Hyper-V Cmdlet Get-VMNetworkAdapterVlan 2.0.0.0 Hyper-V Cmdlet Get-VMPartitionableGpu 2.0.0.0 Hyper-V Cmdlet Get-VMPmemController 2.0.0.0 Hyper-V Cmdlet Get-VMProcessor 2.0.0.0 Hyper-V Cmdlet Get-VMRemoteFx3dVideoAdapter 2.0.0.0 Hyper-V Cmdlet Get-VMRemoteFXPhysicalVideoAdapter 2.0.0.0 Hyper-V Cmdlet Get-VMReplication 2.0.0.0 Hyper-V Cmdlet Get-VMReplicationAuthorizationEntry 2.0.0.0 Hyper-V Cmdlet Get-VMReplicationServer 2.0.0.0 Hyper-V Cmdlet Get-VMResourcePool 2.0.0.0 Hyper-V Cmdlet Get-VMSan 2.0.0.0 Hyper-V Cmdlet Get-VMScsiController 2.0.0.0 Hyper-V Cmdlet Get-VMSecurity 2.0.0.0 Hyper-V Cmdlet Get-VMSnapshot 2.0.0.0 Hyper-V Cmdlet Get-VMStoragePath 2.0.0.0 Hyper-V Cmdlet Get-VMStorageSettings 2.0.0.0 Hyper-V Cmdlet Get-VMSwitch 2.0.0.0 Hyper-V Cmdlet Get-VMSwitchExtension 2.0.0.0 Hyper-V Cmdlet Get-VMSwitchExtensionPortData 2.0.0.0 Hyper-V Cmdlet Get-VMSwitchExtensionPortFeature 2.0.0.0 Hyper-V Cmdlet Get-VMSwitchExtensionSwitchData 2.0.0.0 Hyper-V Cmdlet Get-VMSwitchExtensionSwitchFeature 2.0.0.0 Hyper-V Cmdlet Get-VMSwitchTeam 2.0.0.0 Hyper-V Cmdlet Get-VMSystemSwitchExtension 2.0.0.0 Hyper-V Cmdlet Get-VMSystemSwitchExtensionPortFeature 2.0.0.0 Hyper-V Cmdlet Get-VMSystemSwitchExtensionSwitchFeature 2.0.0.0 Hyper-V Cmdlet Get-VMVideo 2.0.0.0 Hyper-V Cmdlet Get-WheaMemoryPolicy 2.0.0.0 Whea Cmdlet Get-WIMBootEntry 3.0 Dism Cmdlet Get-WinAcceptLanguageFromLanguageListOptOut 2.0.0.0 International Cmdlet Get-WinCultureFromLanguageListOptOut 2.0.0.0 International Cmdlet Get-WinDefaultInputMethodOverride 2.0.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 7.0.0.0 Microsoft.PowerShell.Diagnostics Cmdlet Get-WinHomeLocation 2.0.0.0 International Cmdlet Get-WinLanguageBarOption 2.0.0.0 International Cmdlet Get-WinSystemLocale 2.0.0.0 International Cmdlet Get-WinUILanguageOverride 2.0.0.0 International Cmdlet Get-WinUserLanguageList 2.0.0.0 International Cmdlet Get-WmiObject 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Get-WSManCredSSP 7.0.0.0 Microsoft.WSMan.Management Cmdlet Get-WSManInstance 7.0.0.0 Microsoft.WSMan.Management Cmdlet Grant-VMConnectAccess 2.0.0.0 Hyper-V Cmdlet Group-Object 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Import-Alias 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Import-Certificate 1.0.0.0 PKI Cmdlet Import-Clixml 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Import-Counter 3.0.0.0 Microsoft.PowerShell.Diagnostics Cmdlet Import-Csv 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Import-LocalizedData 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Import-Module 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Import-PackageProvider 1.4.6 PackageManagement Cmdlet Import-PfxCertificate 1.0.0.0 PKI Cmdlet Import-PowerShellDataFile 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Import-PSSession 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Import-StartLayout 1.0.0.0 StartLayout Cmdlet Import-TpmOwnerAuth 2.0.0.0 TrustedPlatformModule Cmdlet Import-VM 2.0.0.0 Hyper-V Cmdlet Import-VMInitialReplication 2.0.0.0 Hyper-V Cmdlet Initialize-PmemPhysicalDevice 1.0.0.0 PersistentMemory Cmdlet Initialize-Tpm 2.0.0.0 TrustedPlatformModule Cmdlet Install-Package 1.4.6 PackageManagement Cmdlet Install-PackageProvider 1.4.6 PackageManagement Cmdlet Install-ProvisioningPackage 3.0 Provisioning Cmdlet Install-TrustedProvisioningCertificate 3.0 Provisioning Cmdlet Invoke-CimMethod 7.0.0.0 CimCmdlets Cmdlet Invoke-Command 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Invoke-CommandInDesktopPackage 2.0.1.0 Appx Cmdlet Invoke-DscResource 1.1 PSDesiredStateConfiguration Cmdlet Invoke-Expression 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Invoke-History 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Invoke-Item 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Invoke-RestMethod 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Invoke-TroubleshootingPack 1.0.0.0 TroubleshootingPack Cmdlet Invoke-WebRequest 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Invoke-WmiMethod 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Invoke-WSManAction 7.0.0.0 Microsoft.WSMan.Management Cmdlet Join-DtcDiagnosticResourceManager 1.0.0.0 MsDtc Cmdlet Join-Path 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Join-String 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Limit-EventLog 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Measure-Command 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Measure-Object 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Measure-VM 2.0.0.0 Hyper-V Cmdlet Measure-VMReplication 2.0.0.0 Hyper-V Cmdlet Measure-VMResourcePool 2.0.0.0 Hyper-V Cmdlet Merge-CIPolicy 1.0 ConfigCI Cmdlet Merge-VHD 2.0.0.0 Hyper-V Cmdlet Mount-AppxVolume 2.0.1.0 Appx Cmdlet Mount-VHD 2.0.0.0 Hyper-V Cmdlet Mount-VMHostAssignableDevice 2.0.0.0 Hyper-V Cmdlet Mount-WindowsImage 3.0 Dism Cmdlet Move-AppxPackage 2.0.1.0 Appx Cmdlet Move-Item 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Move-ItemProperty 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Move-VM 2.0.0.0 Hyper-V Cmdlet Move-VMStorage 2.0.0.0 Hyper-V Cmdlet New-Alias 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet New-AppLockerPolicy 2.0.0.0 AppLocker Cmdlet New-CertificateNotificationTask 1.0.0.0 PKI Cmdlet New-CimInstance 7.0.0.0 CimCmdlets Cmdlet New-CimSession 7.0.0.0 CimCmdlets Cmdlet New-CimSessionOption 7.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 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet New-EventLog 3.1.0.0 Microsoft.PowerShell.Management Cmdlet New-FileCatalog 7.0.0.0 Microsoft.PowerShell.Security Cmdlet New-Guid 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet New-HgsTraceTarget 1.0.0.0 HgsDiagnostics Cmdlet New-Item 7.0.0.0 Microsoft.PowerShell.Management Cmdlet New-ItemProperty 7.0.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 7.0.0.0 Microsoft.PowerShell.Core Cmdlet New-ModuleManifest 7.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 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet New-PmemDisk 1.0.0.0 PersistentMemory Cmdlet New-ProvisioningRepro 3.0 Provisioning Cmdlet New-PSDrive 7.0.0.0 Microsoft.PowerShell.Management Cmdlet New-PSRoleCapabilityFile 7.0.0.0 Microsoft.PowerShell.Core Cmdlet New-PSSession 7.0.0.0 Microsoft.PowerShell.Core Cmdlet New-PSSessionConfigurationFile 7.0.0.0 Microsoft.PowerShell.Core Cmdlet New-PSSessionOption 7.0.0.0 Microsoft.PowerShell.Core Cmdlet New-PSTransportOption 7.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 7.0.0.0 Microsoft.PowerShell.Management Cmdlet New-TemporaryFile 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet New-TimeSpan 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet New-TlsSessionTicketKey 2.0.0.0 TLS Cmdlet New-Variable 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet New-VFD 2.0.0.0 Hyper-V Cmdlet New-VHD 2.0.0.0 Hyper-V Cmdlet New-VM 2.0.0.0 Hyper-V Cmdlet New-VMGroup 2.0.0.0 Hyper-V Cmdlet New-VMReplicationAuthorizationEntry 2.0.0.0 Hyper-V Cmdlet New-VMResourcePool 2.0.0.0 Hyper-V Cmdlet New-VMSan 2.0.0.0 Hyper-V Cmdlet New-VMSwitch 2.0.0.0 Hyper-V 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 7.0.0.0 Microsoft.PowerShell.Diagnostics Cmdlet New-WinUserLanguageList 2.0.0.0 International Cmdlet New-WSManInstance 7.0.0.0 Microsoft.WSMan.Management Cmdlet New-WSManSessionOption 7.0.0.0 Microsoft.WSMan.Management Cmdlet Optimize-AppxProvisionedPackages 3.0 Dism Cmdlet Optimize-VHD 2.0.0.0 Hyper-V Cmdlet Optimize-VHDSet 2.0.0.0 Hyper-V Cmdlet Optimize-WindowsImage 3.0 Dism Cmdlet Out-Default 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Out-File 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Out-GridView 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Out-Host 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Out-Null 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Out-Printer 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Out-String 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Pop-Location 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Protect-CmsMessage 7.0.0.0 Microsoft.PowerShell.Security Cmdlet Publish-DscConfiguration 1.1 PSDesiredStateConfiguration Cmdlet Push-Location 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Read-Host 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Receive-DtcDiagnosticTransaction 1.0.0.0 MsDtc Cmdlet Receive-Job 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Receive-PSSession 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Register-ArgumentCompleter 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Register-CimIndicationEvent 7.0.0.0 CimCmdlets Cmdlet Register-EngineEvent 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Register-ObjectEvent 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Register-PackageSource 1.4.6 PackageManagement Cmdlet Register-PSSessionConfiguration 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Register-ScheduledJob 1.1.0.0 PSScheduledJob Cmdlet Register-WmiEvent 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Remove-Alias 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Remove-AppxPackage 2.0.1.0 Appx Cmdlet Remove-AppxProvisionedPackage 3.0 Dism Cmdlet Remove-AppxVolume 2.0.1.0 Appx 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 7.0.0.0 CimCmdlets Cmdlet Remove-CimSession 7.0.0.0 CimCmdlets Cmdlet Remove-CIPolicyRule 1.0 ConfigCI Cmdlet Remove-Computer 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Remove-Event 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Remove-EventLog 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Remove-Item 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Remove-ItemProperty 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Remove-Job 7.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 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Remove-PmemDisk 1.0.0.0 PersistentMemory Cmdlet Remove-PSBreakpoint 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Remove-PSDrive 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Remove-PSReadLineKeyHandler 2.0.0 PSReadLine Cmdlet Remove-PSSession 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Remove-Service 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Remove-TypeData 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Remove-Variable 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Remove-VHDSnapshot 2.0.0.0 Hyper-V Cmdlet Remove-VM 2.0.0.0 Hyper-V Cmdlet Remove-VMAssignableDevice 2.0.0.0 Hyper-V Cmdlet Remove-VMDvdDrive 2.0.0.0 Hyper-V Cmdlet Remove-VMFibreChannelHba 2.0.0.0 Hyper-V Cmdlet Remove-VMGpuPartitionAdapter 2.0.0.0 Hyper-V Cmdlet Remove-VMGroup 2.0.0.0 Hyper-V Cmdlet Remove-VMGroupMember 2.0.0.0 Hyper-V Cmdlet Remove-VMHardDiskDrive 2.0.0.0 Hyper-V Cmdlet Remove-VMHostAssignableDevice 2.0.0.0 Hyper-V Cmdlet Remove-VMKeyStorageDrive 2.0.0.0 Hyper-V Cmdlet Remove-VMMigrationNetwork 2.0.0.0 Hyper-V Cmdlet Remove-VMNetworkAdapter 2.0.0.0 Hyper-V Cmdlet Remove-VMNetworkAdapterAcl 2.0.0.0 Hyper-V Cmdlet Remove-VMNetworkAdapterExtendedAcl 2.0.0.0 Hyper-V Cmdlet Remove-VMNetworkAdapterRoutingDomainMapping 2.0.0.0 Hyper-V Cmdlet Remove-VMNetworkAdapterTeamMapping 2.0.0.0 Hyper-V Cmdlet Remove-VMPmemController 2.0.0.0 Hyper-V Cmdlet Remove-VMRemoteFx3dVideoAdapter 2.0.0.0 Hyper-V Cmdlet Remove-VMReplication 2.0.0.0 Hyper-V Cmdlet Remove-VMReplicationAuthorizationEntry 2.0.0.0 Hyper-V Cmdlet Remove-VMResourcePool 2.0.0.0 Hyper-V Cmdlet Remove-VMSan 2.0.0.0 Hyper-V Cmdlet Remove-VMSavedState 2.0.0.0 Hyper-V Cmdlet Remove-VMScsiController 2.0.0.0 Hyper-V Cmdlet Remove-VMSnapshot 2.0.0.0 Hyper-V Cmdlet Remove-VMStoragePath 2.0.0.0 Hyper-V Cmdlet Remove-VMSwitch 2.0.0.0 Hyper-V Cmdlet Remove-VMSwitchExtensionPortFeature 2.0.0.0 Hyper-V Cmdlet Remove-VMSwitchExtensionSwitchFeature 2.0.0.0 Hyper-V Cmdlet Remove-VMSwitchTeamMember 2.0.0.0 Hyper-V 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 7.0.0.0 Microsoft.WSMan.Management Cmdlet Rename-Computer 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Rename-Item 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Rename-ItemProperty 7.0.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 Rename-VM 2.0.0.0 Hyper-V Cmdlet Rename-VMGroup 2.0.0.0 Hyper-V Cmdlet Rename-VMNetworkAdapter 2.0.0.0 Hyper-V Cmdlet Rename-VMResourcePool 2.0.0.0 Hyper-V Cmdlet Rename-VMSan 2.0.0.0 Hyper-V Cmdlet Rename-VMSnapshot 2.0.0.0 Hyper-V Cmdlet Rename-VMSwitch 2.0.0.0 Hyper-V Cmdlet Repair-VM 2.0.0.0 Hyper-V Cmdlet Repair-WindowsImage 3.0 Dism Cmdlet Reset-ComputerMachinePassword 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Reset-VMReplicationStatistics 2.0.0.0 Hyper-V Cmdlet Reset-VMResourceMetering 2.0.0.0 Hyper-V Cmdlet Resize-VHD 2.0.0.0 Hyper-V Cmdlet Resolve-DnsName 1.0.0.0 DnsClient Cmdlet Resolve-Path 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Restart-Computer 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Restart-Service 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Restart-VM 2.0.0.0 Hyper-V Cmdlet Restore-Computer 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Restore-VMSnapshot 2.0.0.0 Hyper-V Cmdlet Resume-BitsTransfer 2.0.0.0 BitsTransfer Cmdlet Resume-ProvisioningSession 3.0 Provisioning Cmdlet Resume-Service 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Resume-VM 2.0.0.0 Hyper-V Cmdlet Resume-VMReplication 2.0.0.0 Hyper-V Cmdlet Revoke-VMConnectAccess 2.0.0.0 Hyper-V Cmdlet Save-Help 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Save-Package 1.4.6 PackageManagement Cmdlet Save-VM 2.0.0.0 Hyper-V Cmdlet Save-WindowsImage 3.0 Dism Cmdlet Select-Object 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Select-String 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Select-Xml 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Send-DtcDiagnosticTransaction 1.0.0.0 MsDtc Cmdlet Send-MailMessage 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Set-Acl 7.0.0.0 Microsoft.PowerShell.Security Cmdlet Set-Alias 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Set-AppBackgroundTaskResourcePolicy 1.0.0.0 AppBackgroundTask Cmdlet Set-AppLockerPolicy 2.0.0.0 AppLocker Cmdlet Set-AppxDefaultVolume 2.0.1.0 Appx Cmdlet Set-AppXProvisionedDataFile 3.0 Dism Cmdlet Set-AuthenticodeSignature 7.0.0.0 Microsoft.PowerShell.Security Cmdlet Set-BitsTransfer 2.0.0.0 BitsTransfer Cmdlet Set-CertificateAutoEnrollmentPolicy 1.0.0.0 PKI Cmdlet Set-CimInstance 7.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 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Set-Content 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Set-Culture 2.0.0.0 International Cmdlet Set-Date 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Set-DeliveryOptimizationStatus 1.0.2.0 DeliveryOptimization Cmdlet Set-DscLocalConfigurationManager 1.1 PSDesiredStateConfiguration Cmdlet Set-ExecutionPolicy 7.0.0.0 Microsoft.PowerShell.Security Cmdlet Set-HVCIOptions 1.0 ConfigCI Cmdlet Set-Item 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Set-ItemProperty 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Set-JobTrigger 1.1.0.0 PSScheduledJob Cmdlet Set-KdsConfiguration 1.0.0.0 Kds Cmdlet Set-LocalGroup 1.0.0.0 Microsoft.PowerShell.LocalAccounts Cmdlet Set-LocalUser 1.0.0.0 Microsoft.PowerShell.LocalAccounts Cmdlet Set-Location 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Set-MarkdownOption 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Set-NonRemovableAppsPolicy 3.0 Dism Cmdlet Set-PackageSource 1.4.6 PackageManagement Cmdlet Set-ProcessMitigation 1.0.11 ProcessMitigations Cmdlet Set-PSBreakpoint 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Set-PSDebug 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Set-PSReadLineKeyHandler 2.0.0 PSReadLine Cmdlet Set-PSReadLineOption 2.0.0 PSReadLine Cmdlet Set-PSSessionConfiguration 7.0.0.0 Microsoft.PowerShell.Core 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 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Set-StrictMode 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Set-TimeZone 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Set-TpmOwnerAuth 2.0.0.0 TrustedPlatformModule Cmdlet Set-TraceSource 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Set-Variable 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Set-VHD 2.0.0.0 Hyper-V Cmdlet Set-VM 2.0.0.0 Hyper-V Cmdlet Set-VMBios 2.0.0.0 Hyper-V Cmdlet Set-VMComPort 2.0.0.0 Hyper-V Cmdlet Set-VMDvdDrive 2.0.0.0 Hyper-V Cmdlet Set-VMFibreChannelHba 2.0.0.0 Hyper-V Cmdlet Set-VMFirmware 2.0.0.0 Hyper-V Cmdlet Set-VMFloppyDiskDrive 2.0.0.0 Hyper-V Cmdlet Set-VMGpuPartitionAdapter 2.0.0.0 Hyper-V Cmdlet Set-VMHardDiskDrive 2.0.0.0 Hyper-V Cmdlet Set-VMHost 2.0.0.0 Hyper-V Cmdlet Set-VMHostCluster 2.0.0.0 Hyper-V Cmdlet Set-VMKeyProtector 2.0.0.0 Hyper-V Cmdlet Set-VMKeyStorageDrive 2.0.0.0 Hyper-V Cmdlet Set-VMMemory 2.0.0.0 Hyper-V Cmdlet Set-VMMigrationNetwork 2.0.0.0 Hyper-V Cmdlet Set-VMNetworkAdapter 2.0.0.0 Hyper-V Cmdlet Set-VMNetworkAdapterFailoverConfiguration 2.0.0.0 Hyper-V Cmdlet Set-VMNetworkAdapterIsolation 2.0.0.0 Hyper-V Cmdlet Set-VMNetworkAdapterRdma 2.0.0.0 Hyper-V Cmdlet Set-VMNetworkAdapterRoutingDomainMapping 2.0.0.0 Hyper-V Cmdlet Set-VMNetworkAdapterTeamMapping 2.0.0.0 Hyper-V Cmdlet Set-VMNetworkAdapterVlan 2.0.0.0 Hyper-V Cmdlet Set-VMPartitionableGpu 2.0.0.0 Hyper-V Cmdlet Set-VMProcessor 2.0.0.0 Hyper-V Cmdlet Set-VMRemoteFx3dVideoAdapter 2.0.0.0 Hyper-V Cmdlet Set-VMReplication 2.0.0.0 Hyper-V Cmdlet Set-VMReplicationAuthorizationEntry 2.0.0.0 Hyper-V Cmdlet Set-VMReplicationServer 2.0.0.0 Hyper-V Cmdlet Set-VMResourcePool 2.0.0.0 Hyper-V Cmdlet Set-VMSan 2.0.0.0 Hyper-V Cmdlet Set-VMSecurity 2.0.0.0 Hyper-V Cmdlet Set-VMSecurityPolicy 2.0.0.0 Hyper-V Cmdlet Set-VMStorageSettings 2.0.0.0 Hyper-V Cmdlet Set-VMSwitch 2.0.0.0 Hyper-V Cmdlet Set-VMSwitchExtensionPortFeature 2.0.0.0 Hyper-V Cmdlet Set-VMSwitchExtensionSwitchFeature 2.0.0.0 Hyper-V Cmdlet Set-VMSwitchTeam 2.0.0.0 Hyper-V Cmdlet Set-VMVideo 2.0.0.0 Hyper-V Cmdlet Set-WheaMemoryPolicy 2.0.0.0 Whea Cmdlet Set-WinAcceptLanguageFromLanguageListOptOut 2.0.0.0 International Cmdlet Set-WinCultureFromLanguageListOptOut 2.0.0.0 International Cmdlet Set-WinDefaultInputMethodOverride 2.0.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.0.0.0 International Cmdlet Set-WinLanguageBarOption 2.0.0.0 International Cmdlet Set-WinSystemLocale 2.0.0.0 International Cmdlet Set-WinUILanguageOverride 2.0.0.0 International Cmdlet Set-WinUserLanguageList 2.0.0.0 International Cmdlet Set-WmiInstance 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Set-WSManInstance 7.0.0.0 Microsoft.WSMan.Management Cmdlet Set-WSManQuickConfig 7.0.0.0 Microsoft.WSMan.Management Cmdlet Show-Command 7.0.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-Markdown 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Show-WindowsDeveloperLicenseRegistration 1.0.0.0 WindowsDeveloperLicense Cmdlet Sort-Object 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Split-Path 7.0.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 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Start-OSUninstall 3.0 Dism Cmdlet Start-Process 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Start-Service 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Start-Sleep 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Start-ThreadJob 2.0.3 ThreadJob Cmdlet Start-Transaction 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Start-Transcript 7.0.0.0 Microsoft.PowerShell.Host Cmdlet Start-VM 2.0.0.0 Hyper-V Cmdlet Start-VMFailover 2.0.0.0 Hyper-V Cmdlet Start-VMInitialReplication 2.0.0.0 Hyper-V Cmdlet Start-VMTrace 2.0.0.0 Hyper-V Cmdlet Stop-Computer 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Stop-DtcDiagnosticResourceManager 1.0.0.0 MsDtc Cmdlet Stop-Job 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Stop-Process 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Stop-Service 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Stop-Transcript 7.0.0.0 Microsoft.PowerShell.Host Cmdlet Stop-VM 2.0.0.0 Hyper-V Cmdlet Stop-VMFailover 2.0.0.0 Hyper-V Cmdlet Stop-VMInitialReplication 2.0.0.0 Hyper-V Cmdlet Stop-VMReplication 2.0.0.0 Hyper-V Cmdlet Stop-VMTrace 2.0.0.0 Hyper-V Cmdlet Suspend-BitsTransfer 2.0.0.0 BitsTransfer Cmdlet Suspend-Service 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Suspend-VM 2.0.0.0 Hyper-V Cmdlet Suspend-VMReplication 2.0.0.0 Hyper-V Cmdlet Switch-Certificate 1.0.0.0 PKI Cmdlet Tee-Object 7.0.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 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Test-DscConfiguration 1.1 PSDesiredStateConfiguration Cmdlet Test-FileCatalog 7.0.0.0 Microsoft.PowerShell.Security Cmdlet Test-HgsTraceTarget 1.0.0.0 HgsDiagnostics Cmdlet Test-Json 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Test-KdsRootKey 1.0.0.0 Kds Cmdlet Test-ModuleManifest 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Test-Path 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Test-PSSessionConfigurationFile 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Test-VHD 2.0.0.0 Hyper-V Cmdlet Test-VMNetworkAdapter 2.0.0.0 Hyper-V Cmdlet Test-VMReplicationConnection 2.0.0.0 Hyper-V Cmdlet Test-WSMan 7.0.0.0 Microsoft.WSMan.Management Cmdlet Trace-Command 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Unblock-File 7.0.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-Package 1.4.6 PackageManagement Cmdlet Uninstall-ProvisioningPackage 3.0 Provisioning Cmdlet Uninstall-TrustedProvisioningCertificate 3.0 Provisioning Cmdlet Unprotect-CmsMessage 7.0.0.0 Microsoft.PowerShell.Security Cmdlet Unregister-Event 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Unregister-PackageSource 1.4.6 PackageManagement Cmdlet Unregister-PSSessionConfiguration 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Unregister-ScheduledJob 1.1.0.0 PSScheduledJob Cmdlet Unregister-WindowsDeveloperLicense 1.0.0.0 WindowsDeveloperLicense Cmdlet Update-DscConfiguration 1.1 PSDesiredStateConfiguration Cmdlet Update-FormatData 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Update-Help 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Update-List 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Update-TypeData 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Update-VMVersion 2.0.0.0 Hyper-V 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 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Wait-Event 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Wait-Job 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Wait-Process 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Wait-VM 2.0.0.0 Hyper-V Cmdlet Where-Object 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Write-Debug 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Write-Error 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Write-EventLog 3.1.0.0 Microsoft.PowerShell.Management Cmdlet Write-Host 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Write-Information 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Write-Output 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Write-Progress 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Write-Verbose 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Write-Warning 7.0.0.0 Microsoft.PowerShell.Utility ===== Fedora 31 ===== PS > Get-Command CommandType Name Version Source ----------- ---- ------- ------ Function cd.. Function cd\ Function Clear-Host Function Compress-Archive 1.2.4.0 Microsoft.PowerShell.Archive Function Configuration 2.0.5 PSDesiredStateConfiguration Function Expand-Archive 1.2.4.0 Microsoft.PowerShell.Archive Function Find-Command 2.2.3 PowerShellGet Function Find-DSCResource 2.2.3 PowerShellGet Function Find-Module 2.2.3 PowerShellGet Function Find-RoleCapability 2.2.3 PowerShellGet Function Find-Script 2.2.3 PowerShellGet Function Get-CredsFromCredentialProvider 2.2.3 PowerShellGet Function Get-DscResource 2.0.5 PSDesiredStateConfiguration Function Get-InstalledModule 2.2.3 PowerShellGet Function Get-InstalledScript 2.2.3 PowerShellGet Function Get-PSRepository 2.2.3 PowerShellGet Function help Function Install-Module 2.2.3 PowerShellGet Function Install-Script 2.2.3 PowerShellGet Function Invoke-DscResource 2.0.5 PSDesiredStateConfiguration Function New-DscChecksum 2.0.5 PSDesiredStateConfiguration Function New-ScriptFileInfo 2.2.3 PowerShellGet Function oss Function Pause Function prompt Function PSConsoleHostReadLine 2.0.0 PSReadLine Function Publish-Module 2.2.3 PowerShellGet Function Publish-Script 2.2.3 PowerShellGet Function Register-PSRepository 2.2.3 PowerShellGet Function Save-Module 2.2.3 PowerShellGet Function Save-Script 2.2.3 PowerShellGet Function Set-PSRepository 2.2.3 PowerShellGet Function TabExpansion2 Function Test-ScriptFileInfo 2.2.3 PowerShellGet Function Uninstall-Module 2.2.3 PowerShellGet Function Uninstall-Script 2.2.3 PowerShellGet Function Unregister-PSRepository 2.2.3 PowerShellGet Function Update-Module 2.2.3 PowerShellGet Function Update-ModuleManifest 2.2.3 PowerShellGet Function Update-Script 2.2.3 PowerShellGet Function Update-ScriptFileInfo 2.2.3 PowerShellGet Cmdlet Add-Content 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Add-History 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Add-Member 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Add-Type 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Clear-Content 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Clear-History 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Clear-Item 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Clear-ItemProperty 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Clear-Variable 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Compare-Object 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Convert-Path 7.0.0.0 Microsoft.PowerShell.Management Cmdlet ConvertFrom-Csv 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet ConvertFrom-Json 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet ConvertFrom-Markdown 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet ConvertFrom-SecureString 7.0.0.0 Microsoft.PowerShell.Security Cmdlet ConvertFrom-StringData 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet ConvertTo-Csv 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet ConvertTo-Html 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet ConvertTo-Json 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet ConvertTo-SecureString 7.0.0.0 Microsoft.PowerShell.Security Cmdlet ConvertTo-Xml 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Copy-Item 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Copy-ItemProperty 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Debug-Job 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Debug-Process 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Debug-Runspace 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Disable-ExperimentalFeature 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Disable-PSBreakpoint 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Disable-RunspaceDebug 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Enable-ExperimentalFeature 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Enable-PSBreakpoint 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Enable-RunspaceDebug 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Enter-PSHostProcess 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Enter-PSSession 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Exit-PSHostProcess 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Exit-PSSession 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Export-Alias 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Export-Clixml 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Export-Csv 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Export-FormatData 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Export-ModuleMember 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Export-PSSession 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Find-Package 1.4.6 PackageManagement Cmdlet Find-PackageProvider 1.4.6 PackageManagement Cmdlet ForEach-Object 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Format-Custom 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Format-Hex 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Format-List 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Format-Table 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Format-Wide 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Get-Alias 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Get-ChildItem 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Get-Clipboard 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Get-Command 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Get-Content 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Get-Credential 7.0.0.0 Microsoft.PowerShell.Security Cmdlet Get-Culture 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Get-Date 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Get-Error 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Get-Event 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Get-EventSubscriber 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Get-ExecutionPolicy 7.0.0.0 Microsoft.PowerShell.Security Cmdlet Get-ExperimentalFeature 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Get-FileHash 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Get-FormatData 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Get-Help 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Get-History 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Get-Host 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Get-Item 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Get-ItemProperty 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Get-ItemPropertyValue 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Get-Job 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Get-Location 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Get-MarkdownOption 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Get-Member 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Get-Module 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Get-Package 1.4.6 PackageManagement Cmdlet Get-PackageProvider 1.4.6 PackageManagement Cmdlet Get-PackageSource 1.4.6 PackageManagement Cmdlet Get-PfxCertificate 7.0.0.0 Microsoft.PowerShell.Security Cmdlet Get-Process 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Get-PSBreakpoint 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Get-PSCallStack 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Get-PSDrive 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Get-PSHostProcessInfo 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Get-PSProvider 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Get-PSReadLineKeyHandler 2.0.0 PSReadLine Cmdlet Get-PSReadLineOption 2.0.0 PSReadLine Cmdlet Get-PSSession 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Get-Random 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Get-Runspace 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Get-RunspaceDebug 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Get-TimeZone 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Get-TraceSource 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Get-TypeData 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Get-UICulture 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Get-Unique 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Get-Uptime 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Get-Variable 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Get-Verb 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Group-Object 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Import-Alias 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Import-Clixml 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Import-Csv 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Import-LocalizedData 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Import-Module 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Import-PackageProvider 1.4.6 PackageManagement Cmdlet Import-PowerShellDataFile 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Import-PSSession 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Install-Package 1.4.6 PackageManagement Cmdlet Install-PackageProvider 1.4.6 PackageManagement Cmdlet Invoke-Command 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Invoke-Expression 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Invoke-History 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Invoke-Item 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Invoke-RestMethod 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Invoke-WebRequest 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Join-Path 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Join-String 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Measure-Command 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Measure-Object 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Move-Item 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Move-ItemProperty 7.0.0.0 Microsoft.PowerShell.Management Cmdlet New-Alias 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet New-Event 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet New-Guid 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet New-Item 7.0.0.0 Microsoft.PowerShell.Management Cmdlet New-ItemProperty 7.0.0.0 Microsoft.PowerShell.Management Cmdlet New-Module 7.0.0.0 Microsoft.PowerShell.Core Cmdlet New-ModuleManifest 7.0.0.0 Microsoft.PowerShell.Core Cmdlet New-Object 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet New-PSDrive 7.0.0.0 Microsoft.PowerShell.Management Cmdlet New-PSRoleCapabilityFile 7.0.0.0 Microsoft.PowerShell.Core Cmdlet New-PSSession 7.0.0.0 Microsoft.PowerShell.Core Cmdlet New-PSSessionOption 7.0.0.0 Microsoft.PowerShell.Core Cmdlet New-PSTransportOption 7.0.0.0 Microsoft.PowerShell.Core Cmdlet New-TemporaryFile 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet New-TimeSpan 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet New-Variable 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Out-Default 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Out-File 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Out-Host 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Out-Null 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Out-String 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Pop-Location 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Push-Location 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Read-Host 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Receive-Job 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Register-ArgumentCompleter 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Register-EngineEvent 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Register-ObjectEvent 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Register-PackageSource 1.4.6 PackageManagement Cmdlet Remove-Alias 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Remove-Event 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Remove-Item 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Remove-ItemProperty 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Remove-Job 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Remove-Module 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Remove-PSBreakpoint 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Remove-PSDrive 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Remove-PSReadLineKeyHandler 2.0.0 PSReadLine Cmdlet Remove-PSSession 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Remove-TypeData 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Remove-Variable 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Rename-Item 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Rename-ItemProperty 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Resolve-Path 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Save-Help 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Save-Package 1.4.6 PackageManagement Cmdlet Select-Object 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Select-String 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Select-Xml 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Send-MailMessage 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Set-Alias 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Set-Clipboard 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Set-Content 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Set-Date 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Set-ExecutionPolicy 7.0.0.0 Microsoft.PowerShell.Security Cmdlet Set-Item 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Set-ItemProperty 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Set-Location 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Set-MarkdownOption 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Set-PackageSource 1.4.6 PackageManagement Cmdlet Set-PSBreakpoint 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Set-PSDebug 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Set-PSReadLineKeyHandler 2.0.0 PSReadLine Cmdlet Set-PSReadLineOption 2.0.0 PSReadLine Cmdlet Set-StrictMode 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Set-TraceSource 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Set-Variable 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Show-Markdown 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Sort-Object 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Split-Path 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Start-Job 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Start-Process 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Start-Sleep 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Start-ThreadJob 2.0.3 ThreadJob Cmdlet Start-Transcript 7.0.0.0 Microsoft.PowerShell.Host Cmdlet Stop-Job 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Stop-Process 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Stop-Transcript 7.0.0.0 Microsoft.PowerShell.Host Cmdlet Tee-Object 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Test-Connection 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Test-Json 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Test-ModuleManifest 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Test-Path 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Trace-Command 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Unblock-File 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Uninstall-Package 1.4.6 PackageManagement Cmdlet Unregister-Event 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Unregister-PackageSource 1.4.6 PackageManagement Cmdlet Update-FormatData 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Update-Help 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Update-List 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Update-TypeData 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Wait-Debugger 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Wait-Event 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Wait-Job 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Wait-Process 7.0.0.0 Microsoft.PowerShell.Management Cmdlet Where-Object 7.0.0.0 Microsoft.PowerShell.Core Cmdlet Write-Debug 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Write-Error 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Write-Host 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Write-Information 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Write-Output 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Write-Progress 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Write-Verbose 7.0.0.0 Microsoft.PowerShell.Utility Cmdlet Write-Warning 7.0.0.0 Microsoft.PowerShell.Utility ===== 参考文献 ===== [[https://docs.microsoft.com/ja-jp/powershell/module/microsoft.powershell.core/get-command|Get-Command (Microsoft.PowerShell.Core) - PowerShell | Microsoft Docs]]\\