在power shell 窗口中,有一个获取全部可用命令的命令:get-command,获取到的命令有1640多个,够学习了吧?那么,power shell 命令有哪些类别呢?
PowerShell命令可以分为以下几类:
Cmdlet命令:Cmdlet是PowerShell的核心命令,它们是使用C#或其他.NET语言编写的小型程序块。它们用于执行各种系统管理任务,例如获取和修改文件、注册表、服务等。例如,Get-Process
是一个Cmdlet命令,用于获取正在运行的进程列表。
功能命令(Function):这些命令是由用户自定义的PowerShell函数。函数是一组命令的集合,可以在脚本中调用。例如,您可以创建一个函数来复制文件夹,然后在需要时调用它。
脚本命令(Script):脚本命令是使用PowerShell脚本语言编写的命令。脚本是包含一系列命令的文本文件,可用于自动执行一系列任务。例如,您可以编写一个脚本来备份文件夹,并在计划任务中运行。
外部命令(External):外部命令是指调用操作系统命令行工具或其他可执行文件的命令。PowerShell可以与其他命令行工具集成,以便执行更复杂的任务。例如,您可以使用Start-Process
命令来启动其他可执行文件。
请注意,这只是PowerShell命令的一些基本分类。在实际使用中,您也可以使用PowerShell的许多其他功能和命令。
在PowerShell中,Alias是指用于缩写或简化其他命令的命令别名。Alias类别包括以下几类:
Cmdlet Alias:用于缩写常用的PowerShell命令。例如,ls
是Get-ChildItem
的别名,cd
是Set-Location
的别名。
Function Alias:用于缩写自定义函数。可以使用Set-Alias
命令创建函数的别名。
Provider Alias:用于访问文件系统、注册表等数据提供程序。例如,HKCU
是HKEY_CURRENT_USER
注册表项的提供程序别名。
Script Alias:用于缩写脚本路径。例如,$Profile
是当前用户配置文件的路径的别名。
可以使用Get-Alias
命令查看系统中的所有Alias。
花费10分钟时间,看看下面的1640多个命令,看看哪些是使用方便的常用命令。
运行get-command的结果如下:
get-command
CommandType Name Version Source
----------- ---- ------- ------
Alias Add-AppPackage 2.0.1.0 Appx
Cmdlet Enable-JobTrigger 1.1.0.0 PSScheduledJob |
Cmdlet Enable-LocalUser 1.0.0.0 Microsoft.PowerShell.LocalAccounts |
Cmdlet Enable-PSBreakpoint 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Enable-PSRemoting 3.0.0.0 Microsoft.PowerShell.Core |
Cmdlet Enable-PSSessionConfiguration 3.0.0.0 Microsoft.PowerShell.Core |
Cmdlet Enable-RunspaceDebug 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Enable-ScheduledJob 1.1.0.0 PSScheduledJob |
Cmdlet Enable-TlsCipherSuite 2.0.0.0 TLS |
Cmdlet Enable-TlsEccCurve 2.0.0.0 TLS |
Cmdlet Enable-TlsSessionTicketKey 2.0.0.0 TLS |
Cmdlet Enable-TpmAutoProvisioning 2.0.0.0 TrustedPlatformModule |
Cmdlet Enable-Uev 2.1.639.0 UEV |
Cmdlet Enable-UevAppxPackage 2.1.639.0 UEV |
Cmdlet Enable-UevTemplate 2.1.639.0 UEV |
Cmdlet Enable-WindowsErrorReporting 1.0 WindowsErrorReporting |
Cmdlet Enable-WindowsOptionalFeature 3.0 Dism |
Cmdlet Enable-WSManCredSSP 3.0.0.0 Microsoft.WSMan.Management |
Cmdlet Enter-PSHostProcess 3.0.0.0 Microsoft.PowerShell.Core |
Cmdlet Enter-PSSession 3.0.0.0 Microsoft.PowerShell.Core |
Cmdlet Exit-PSHostProcess 3.0.0.0 Microsoft.PowerShell.Core |
Cmdlet Exit-PSSession 3.0.0.0 Microsoft.PowerShell.Core |
Cmdlet Expand-WindowsCustomDataImage 3.0 Dism |
Cmdlet Expand-WindowsImage 3.0 Dism |
Cmdlet Export-Alias 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Export-BinaryMiLog 1.0.0.0 CimCmdlets |
Cmdlet Export-Certificate 1.0.0.0 PKI |
Cmdlet Export-Clixml 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Export-Console 3.0.0.0 Microsoft.PowerShell.Core |
Cmdlet Export-Counter 3.0.0.0 Microsoft.PowerShell.Diagnostics |
Cmdlet Export-Csv 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Export-FormatData 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Export-ModuleMember 3.0.0.0 Microsoft.PowerShell.Core |
Cmdlet Export-PfxCertificate 1.0.0.0 PKI |
Cmdlet Export-ProvisioningPackage 3.0 Provisioning |
Cmdlet Export-PSSession 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Export-StartLayout 1.0.0.2 StartLayout |
Cmdlet Export-StartLayoutEdgeAssets 1.0.0.2 StartLayout |
Cmdlet Export-TlsSessionTicketKey 2.0.0.0 TLS |
Cmdlet Export-Trace 3.0 Provisioning |
Cmdlet Export-UevConfiguration 2.1.639.0 UEV |
Cmdlet Export-UevPackage 2.1.639.0 UEV |
Cmdlet Export-WindowsCapabilitySource 3.0 Dism |
Cmdlet Export-WindowsDriver 3.0 Dism |
Cmdlet Export-WindowsImage 3.0 Dism |
Cmdlet Find-LapsADExtendedRights 1.0.0.0 LAPS |
Cmdlet Find-Package 1.0.0.1 PackageManagement |
Cmdlet Find-PackageProvider 1.0.0.1 PackageManagement |
Cmdlet ForEach-Object 3.0.0.0 Microsoft.PowerShell.Core |
Cmdlet Format-Custom 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Format-List 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Format-SecureBootUEFI 2.0.0.0 SecureBoot |
Cmdlet Format-Table 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Format-Wide 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Get-Acl 3.0.0.0 Microsoft.PowerShell.Security |
Cmdlet Get-Alias 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Get-AppLockerFileInformation 2.0.0.0 AppLocker |
Cmdlet Get-AppLockerPolicy 2.0.0.0 AppLocker |
Cmdlet Get-AppvClientApplication 1.0.0.0 AppvClient |
Cmdlet Get-AppvClientConfiguration 1.0.0.0 AppvClient |
Cmdlet Get-AppvClientConnectionGroup 1.0.0.0 AppvClient |
Cmdlet Get-AppvClientMode 1.0.0.0 AppvClient |
Cmdlet Get-AppvClientPackage 1.0.0.0 AppvClient |
Cmdlet Get-AppvPublishingServer 1.0.0.0 AppvClient |
Cmdlet Get-AppvStatus 1.0.0.0 AppvClient |
Cmdlet Get-AppxDefaultVolume 2.0.1.0 Appx |
Cmdlet Get-AppxPackage 2.0.1.0 Appx |
Cmdlet Get-AppxPackageManifest 2.0.1.0 Appx |
Cmdlet Get-AppxProvisionedPackage 3.0 Dism |
Cmdlet Get-AppxVolume 2.0.1.0 Appx |
Cmdlet Get-AuthenticodeSignature 3.0.0.0 Microsoft.PowerShell.Security |
Cmdlet Get-BitsTransfer 2.0.0.0 BitsTransfer |
Cmdlet Get-Certificate 1.0.0.0 PKI |
Cmdlet Get-CertificateAutoEnrollmentPolicy 1.0.0.0 PKI |
Cmdlet Get-CertificateEnrollmentPolicyServer 1.0.0.0 PKI |
Cmdlet Get-CertificateNotificationTask 1.0.0.0 PKI |
Cmdlet Get-ChildItem 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Get-CimAssociatedInstance 1.0.0.0 CimCmdlets |
Cmdlet Get-CimClass 1.0.0.0 CimCmdlets |
Cmdlet Get-CimInstance 1.0.0.0 CimCmdlets |
Cmdlet Get-CimSession 1.0.0.0 CimCmdlets |
Cmdlet Get-CIPolicy 1.0 ConfigCI |
Cmdlet Get-CIPolicyIdInfo 1.0 ConfigCI |
Cmdlet Get-CIPolicyInfo 1.0 ConfigCI |
Cmdlet Get-Clipboard 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Get-CmsMessage 3.0.0.0 Microsoft.PowerShell.Security |
Cmdlet Get-Command 3.0.0.0 Microsoft.PowerShell.Core |
Cmdlet Get-ComputerInfo 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Get-ComputerRestorePoint 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Get-Content 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Get-ControlPanelItem 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Get-Counter 3.0.0.0 Microsoft.PowerShell.Diagnostics |
Cmdlet Get-Credential 3.0.0.0 Microsoft.PowerShell.Security |
Cmdlet Get-Culture 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Get-DAPolicyChange 2.0.0.0 NetSecurity |
Cmdlet Get-Date 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Get-DeliveryOptimizationLog 1.0.2.0 DeliveryOptimization |
Cmdlet Get-DeliveryOptimizationLogAnalysis 1.0.2.0 DeliveryOptimization |
Cmdlet Get-Event 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Get-EventLog 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Get-EventSubscriber 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Get-ExecutionPolicy 3.0.0.0 Microsoft.PowerShell.Security |
Cmdlet Get-FormatData 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Get-Help 3.0.0.0 Microsoft.PowerShell.Core |
Cmdlet Get-History 3.0.0.0 Microsoft.PowerShell.Core |
Cmdlet Get-Host 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Get-HotFix 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Get-InstalledLanguage 1.0 LanguagePackManagement |
Cmdlet Get-Item 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Get-ItemProperty 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Get-ItemPropertyValue 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Get-Job 3.0.0.0 Microsoft.PowerShell.Core |
Cmdlet Get-JobTrigger 1.1.0.0 PSScheduledJob |
Cmdlet Get-KdsConfiguration 1.0.0.0 Kds |
Cmdlet Get-KdsRootKey 1.0.0.0 Kds |
Cmdlet Get-LapsADPassword 1.0.0.0 LAPS |
Cmdlet Get-LocalGroup 1.0.0.0 Microsoft.PowerShell.LocalAccounts |
Cmdlet Get-LocalGroupMember 1.0.0.0 Microsoft.PowerShell.LocalAccounts |
Cmdlet Get-LocalUser 1.0.0.0 Microsoft.PowerShell.LocalAccounts |
Cmdlet Get-Location 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Get-Member 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Get-Module 3.0.0.0 Microsoft.PowerShell.Core |
Cmdlet Get-NonRemovableAppsPolicy 3.0 Dism |
Cmdlet Get-Package 1.0.0.1 PackageManagement |
Cmdlet Get-PackageProvider 1.0.0.1 PackageManagement |
Cmdlet Get-PackageSource 1.0.0.1 PackageManagement |
Cmdlet Get-PfxCertificate 3.0.0.0 Microsoft.PowerShell.Security |
Cmdlet Get-PfxData 1.0.0.0 PKI |
Cmdlet Get-PmemDisk 1.0.0.0 PersistentMemory |
Cmdlet Get-PmemPhysicalDevice 1.0.0.0 PersistentMemory |
Cmdlet Get-PmemUnusedRegion 1.0.0.0 PersistentMemory |
Cmdlet Get-Process 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Get-ProcessMitigation 1.0.12 ProcessMitigations |
Cmdlet Get-ProvisioningPackage 3.0 Provisioning |
Cmdlet Get-PSBreakpoint 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Get-PSCallStack 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Get-PSDrive 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Get-PSHostProcessInfo 3.0.0.0 Microsoft.PowerShell.Core |
Cmdlet Get-PSProvider 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Get-PSReadLineKeyHandler 2.0.0 PSReadline |
Cmdlet Get-PSReadLineOption 2.0.0 PSReadline |
Cmdlet Get-PSSession 3.0.0.0 Microsoft.PowerShell.Core |
Cmdlet Get-PSSessionCapability 3.0.0.0 Microsoft.PowerShell.Core |
Cmdlet Get-PSSessionConfiguration 3.0.0.0 Microsoft.PowerShell.Core |
Cmdlet Get-PSSnapin 3.0.0.0 Microsoft.PowerShell.Core |
Cmdlet Get-Random 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Get-Runspace 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Get-RunspaceDebug 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Get-ScheduledJob 1.1.0.0 PSScheduledJob |
Cmdlet Get-ScheduledJobOption 1.1.0.0 PSScheduledJob |
Cmdlet Get-SecureBootPolicy 2.0.0.0 SecureBoot |
Cmdlet Get-SecureBootUEFI 2.0.0.0 SecureBoot |
Cmdlet Get-Service 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Get-SystemDriver 1.0 ConfigCI |
Cmdlet Get-SystemPreferredUILanguage 1.0 LanguagePackManagement |
Cmdlet Get-TimeZone 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Get-TlsCipherSuite 2.0.0.0 TLS |
Cmdlet Get-TlsEccCurve 2.0.0.0 TLS |
Cmdlet Get-Tpm 2.0.0.0 TrustedPlatformModule |
Cmdlet Get-TpmEndorsementKeyInfo 2.0.0.0 TrustedPlatformModule |
Cmdlet Get-TpmSupportedFeature 2.0.0.0 TrustedPlatformModule |
Cmdlet Get-TraceSource 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Get-Transaction 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Get-TroubleshootingPack 1.0.0.0 TroubleshootingPack |
Cmdlet Get-TrustedProvisioningCertificate 3.0 Provisioning |
Cmdlet Get-TypeData 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Get-UevAppxPackage 2.1.639.0 UEV |
Cmdlet Get-UevConfiguration 2.1.639.0 UEV |
Cmdlet Get-UevStatus 2.1.639.0 UEV |
Cmdlet Get-UevTemplate 2.1.639.0 UEV |
Cmdlet Get-UevTemplateProgram 2.1.639.0 UEV |
Cmdlet Get-UICulture 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Get-Unique 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Get-Variable 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Get-WheaMemoryPolicy 2.0.0.0 Whea |
Cmdlet Get-WIMBootEntry 3.0 Dism |
Cmdlet Get-WinAcceptLanguageFromLanguageListOptOut 2.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 3.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 3.0.0.0 Microsoft.WSMan.Management |
Cmdlet Get-WSManInstance 3.0.0.0 Microsoft.WSMan.Management |
Cmdlet Group-Object 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Import-Alias 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Import-BinaryMiLog 1.0.0.0 CimCmdlets |
Cmdlet Import-Certificate 1.0.0.0 PKI |
Cmdlet Import-Clixml 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Import-Counter 3.0.0.0 Microsoft.PowerShell.Diagnostics |
Cmdlet Import-Csv 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Import-LocalizedData 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Import-Module 3.0.0.0 Microsoft.PowerShell.Core |
Cmdlet Import-PackageProvider 1.0.0.1 PackageManagement |
Cmdlet Import-PfxCertificate 1.0.0.0 PKI |
Cmdlet Import-PSSession 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Import-StartLayout 1.0.0.2 StartLayout |
Cmdlet Import-TpmOwnerAuth 2.0.0.0 TrustedPlatformModule |
Cmdlet Import-UevConfiguration 2.1.639.0 UEV |
Cmdlet Initialize-PmemPhysicalDevice 1.0.0.0 PersistentMemory |
Cmdlet Initialize-Tpm 2.0.0.0 TrustedPlatformModule |
Cmdlet Install-Language 1.0 LanguagePackManagement |
Cmdlet Install-Package 1.0.0.1 PackageManagement |
Cmdlet Install-PackageProvider 1.0.0.1 PackageManagement |
Cmdlet Install-ProvisioningPackage 3.0 Provisioning |
Cmdlet Install-TrustedProvisioningCertificate 3.0 Provisioning |
Cmdlet Invoke-CimMethod 1.0.0.0 CimCmdlets |
Cmdlet Invoke-Command 3.0.0.0 Microsoft.PowerShell.Core |
Cmdlet Invoke-CommandInDesktopPackage 2.0.1.0 Appx |
Cmdlet Invoke-DscResource 1.1 PSDesiredStateConfiguration |
Cmdlet Invoke-Expression 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Invoke-History 3.0.0.0 Microsoft.PowerShell.Core |
Cmdlet Invoke-Item 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Invoke-LapsPolicyProcessing 1.0.0.0 LAPS |
Cmdlet Invoke-RestMethod 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Invoke-TroubleshootingPack 1.0.0.0 TroubleshootingPack |
Cmdlet Invoke-WebRequest 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Invoke-WmiMethod 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Invoke-WSManAction 3.0.0.0 Microsoft.WSMan.Management |
Cmdlet Join-DtcDiagnosticResourceManager 1.0.0.0 MsDtc |
Cmdlet Join-Path 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Limit-EventLog 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Measure-Command 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Measure-Object 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Merge-CIPolicy 1.0 ConfigCI |
Cmdlet Mount-AppvClientConnectionGroup 1.0.0.0 AppvClient |
Cmdlet Mount-AppvClientPackage 1.0.0.0 AppvClient |
Cmdlet Mount-AppxVolume 2.0.1.0 Appx |
Cmdlet Mount-WindowsImage 3.0 Dism |
Cmdlet Move-AppxPackage 2.0.1.0 Appx |
Cmdlet Move-Item 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Move-ItemProperty 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet New-Alias 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet New-AppLockerPolicy 2.0.0.0 AppLocker |
Cmdlet New-CertificateNotificationTask 1.0.0.0 PKI |
Cmdlet New-CimInstance 1.0.0.0 CimCmdlets |
Cmdlet New-CimSession 1.0.0.0 CimCmdlets |
Cmdlet New-CimSessionOption 1.0.0.0 CimCmdlets |
Cmdlet New-CIPolicy 1.0 ConfigCI |
Cmdlet New-CIPolicyRule 1.0 ConfigCI |
Cmdlet New-DtcDiagnosticTransaction 1.0.0.0 MsDtc |
Cmdlet New-Event 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet New-EventLog 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet New-FileCatalog 3.0.0.0 Microsoft.PowerShell.Security |
Cmdlet New-Item 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet New-ItemProperty 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet New-JobTrigger 1.1.0.0 PSScheduledJob |
Cmdlet New-LocalGroup 1.0.0.0 Microsoft.PowerShell.LocalAccounts |
Cmdlet New-LocalUser 1.0.0.0 Microsoft.PowerShell.LocalAccounts |
Cmdlet New-Module 3.0.0.0 Microsoft.PowerShell.Core |
Cmdlet New-ModuleManifest 3.0.0.0 Microsoft.PowerShell.Core |
Cmdlet New-NetIPsecAuthProposal 2.0.0.0 NetSecurity |
Cmdlet New-NetIPsecMainModeCryptoProposal 2.0.0.0 NetSecurity |
Cmdlet New-NetIPsecQuickModeCryptoProposal 2.0.0.0 NetSecurity |
Cmdlet New-Object 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet New-PmemDisk 1.0.0.0 PersistentMemory |
Cmdlet New-ProvisioningRepro 3.0 Provisioning |
Cmdlet New-PSDrive 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet New-PSRoleCapabilityFile 3.0.0.0 Microsoft.PowerShell.Core |
Cmdlet New-PSSession 3.0.0.0 Microsoft.PowerShell.Core |
Cmdlet New-PSSessionConfigurationFile 3.0.0.0 Microsoft.PowerShell.Core |
Cmdlet New-PSSessionOption 3.0.0.0 Microsoft.PowerShell.Core |
Cmdlet New-PSTransportOption 3.0.0.0 Microsoft.PowerShell.Core |
Cmdlet New-PSWorkflowExecutionOption 2.0.0.0 PSWorkflow |
Cmdlet New-ScheduledJobOption 1.1.0.0 PSScheduledJob |
Cmdlet New-SelfSignedCertificate 1.0.0.0 PKI |
Cmdlet New-Service 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet New-TimeSpan 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet New-TlsSessionTicketKey 2.0.0.0 TLS |
Cmdlet New-Variable 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet New-WebServiceProxy 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet New-WindowsCustomImage 3.0 Dism |
Cmdlet New-WindowsImage 3.0 Dism |
Cmdlet New-WinEvent 3.0.0.0 Microsoft.PowerShell.Diagnostics |
Cmdlet New-WinUserLanguageList 2.0.0.0 International |
Cmdlet New-WSManInstance 3.0.0.0 Microsoft.WSMan.Management |
Cmdlet New-WSManSessionOption 3.0.0.0 Microsoft.WSMan.Management |
Cmdlet Optimize-AppxProvisionedPackages 3.0 Dism |
Cmdlet Optimize-WindowsImage 3.0 Dism |
Cmdlet Out-Default 3.0.0.0 Microsoft.PowerShell.Core |
Cmdlet Out-File 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Out-GridView 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Out-Host 3.0.0.0 Microsoft.PowerShell.Core |
Cmdlet Out-Null 3.0.0.0 Microsoft.PowerShell.Core |
Cmdlet Out-Printer 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Out-String 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Pop-Location 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Protect-CmsMessage 3.0.0.0 Microsoft.PowerShell.Security |
Cmdlet Publish-AppvClientPackage 1.0.0.0 AppvClient |
Cmdlet Publish-DscConfiguration 1.1 PSDesiredStateConfiguration |
Cmdlet Push-Location 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Read-Host 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Receive-DtcDiagnosticTransaction 1.0.0.0 MsDtc |
Cmdlet Receive-Job 3.0.0.0 Microsoft.PowerShell.Core |
Cmdlet Receive-PSSession 3.0.0.0 Microsoft.PowerShell.Core |
Cmdlet Register-ArgumentCompleter 3.0.0.0 Microsoft.PowerShell.Core |
Cmdlet Register-CimIndicationEvent 1.0.0.0 CimCmdlets |
Cmdlet Register-EngineEvent 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Register-ObjectEvent 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Register-PackageSource 1.0.0.1 PackageManagement |
Cmdlet Register-PSSessionConfiguration 3.0.0.0 Microsoft.PowerShell.Core |
Cmdlet Register-ScheduledJob 1.1.0.0 PSScheduledJob |
Cmdlet Register-UevTemplate 2.1.639.0 UEV |
Cmdlet Register-WmiEvent 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Remove-AppvClientConnectionGroup 1.0.0.0 AppvClient |
Cmdlet Remove-AppvClientPackage 1.0.0.0 AppvClient |
Cmdlet Remove-AppvPublishingServer 1.0.0.0 AppvClient |
Cmdlet Remove-AppxPackage 2.0.1.0 Appx |
Cmdlet Remove-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 1.0.0.0 CimCmdlets |
Cmdlet Remove-CimSession 1.0.0.0 CimCmdlets |
Cmdlet Remove-CIPolicyRule 1.0 ConfigCI |
Cmdlet Remove-Computer 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Remove-Event 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Remove-EventLog 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Remove-Item 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Remove-ItemProperty 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Remove-Job 3.0.0.0 Microsoft.PowerShell.Core |
Cmdlet Remove-JobTrigger 1.1.0.0 PSScheduledJob |
Cmdlet Remove-LocalGroup 1.0.0.0 Microsoft.PowerShell.LocalAccounts |
Cmdlet Remove-LocalGroupMember 1.0.0.0 Microsoft.PowerShell.LocalAccounts |
Cmdlet Remove-LocalUser 1.0.0.0 Microsoft.PowerShell.LocalAccounts |
Cmdlet Remove-Module 3.0.0.0 Microsoft.PowerShell.Core |
Cmdlet Remove-PmemDisk 1.0.0.0 PersistentMemory |
Cmdlet Remove-PSBreakpoint 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Remove-PSDrive 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Remove-PSReadLineKeyHandler 2.0.0 PSReadline |
Cmdlet Remove-PSSession 3.0.0.0 Microsoft.PowerShell.Core |
Cmdlet Remove-PSSnapin 3.0.0.0 Microsoft.PowerShell.Core |
Cmdlet Remove-TypeData 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Remove-Variable 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Remove-WindowsCapability 3.0 Dism |
Cmdlet Remove-WindowsDriver 3.0 Dism |
Cmdlet Remove-WindowsImage 3.0 Dism |
Cmdlet Remove-WindowsPackage 3.0 Dism |
Cmdlet Remove-WmiObject 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Remove-WSManInstance 3.0.0.0 Microsoft.WSMan.Management |
Cmdlet Rename-Computer 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Rename-Item 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Rename-ItemProperty 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Rename-LocalGroup 1.0.0.0 Microsoft.PowerShell.LocalAccounts |
Cmdlet Rename-LocalUser 1.0.0.0 Microsoft.PowerShell.LocalAccounts |
Cmdlet Repair-AppvClientConnectionGroup 1.0.0.0 AppvClient |
Cmdlet Repair-AppvClientPackage 1.0.0.0 AppvClient |
Cmdlet Repair-UevTemplateIndex 2.1.639.0 UEV |
Cmdlet Repair-WindowsImage 3.0 Dism |
Cmdlet Reset-ComputerMachinePassword 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Reset-LapsPassword 1.0.0.0 LAPS |
Cmdlet Resolve-DnsName 1.0.0.0 DnsClient |
Cmdlet Resolve-Path 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Restart-Computer 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Restart-Service 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Restore-Computer 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Restore-UevBackup 2.1.639.0 UEV |
Cmdlet Restore-UevUserSetting 2.1.639.0 UEV |
Cmdlet Resume-BitsTransfer 2.0.0.0 BitsTransfer |
Cmdlet Resume-Job 3.0.0.0 Microsoft.PowerShell.Core |
Cmdlet Resume-ProvisioningSession 3.0 Provisioning |
Cmdlet Resume-Service 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Save-Help 3.0.0.0 Microsoft.PowerShell.Core |
Cmdlet Save-Package 1.0.0.1 PackageManagement |
Cmdlet Save-WindowsImage 3.0 Dism |
Cmdlet Select-Object 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Select-String 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Select-Xml 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Send-AppvClientReport 1.0.0.0 AppvClient |
Cmdlet Send-DtcDiagnosticTransaction 1.0.0.0 MsDtc |
Cmdlet Send-MailMessage 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Set-Acl 3.0.0.0 Microsoft.PowerShell.Security |
Cmdlet Set-Alias 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Set-AppBackgroundTaskResourcePolicy 1.0.0.0 AppBackgroundTask |
Cmdlet Set-AppLockerPolicy 2.0.0.0 AppLocker |
Cmdlet Set-AppvClientConfiguration 1.0.0.0 AppvClient |
Cmdlet Set-AppvClientMode 1.0.0.0 AppvClient |
Cmdlet Set-AppvClientPackage 1.0.0.0 AppvClient |
Cmdlet Set-AppvPublishingServer 1.0.0.0 AppvClient |
Cmdlet Set-AppxDefaultVolume 2.0.1.0 Appx |
Cmdlet Set-AppXProvisionedDataFile 3.0 Dism |
Cmdlet Set-AuthenticodeSignature 3.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 1.0.0.0 CimCmdlets |
Cmdlet Set-CIPolicyIdInfo 1.0 ConfigCI |
Cmdlet Set-CIPolicySetting 1.0 ConfigCI |
Cmdlet Set-CIPolicyVersion 1.0 ConfigCI |
Cmdlet Set-Clipboard 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Set-Content 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Set-Culture 2.0.0.0 International |
Cmdlet Set-Date 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Set-DeliveryOptimizationStatus 1.0.2.0 DeliveryOptimization |
Cmdlet Set-DODownloadMode 1.0.2.0 DeliveryOptimization |
Cmdlet Set-DOPercentageMaxBackgroundBandwidth 1.0.2.0 DeliveryOptimization |
Cmdlet Set-DOPercentageMaxForegroundBandwidth 1.0.2.0 DeliveryOptimization |
Cmdlet Set-DscLocalConfigurationManager 1.1 PSDesiredStateConfiguration |
Cmdlet Set-ExecutionPolicy 3.0.0.0 Microsoft.PowerShell.Security |
Cmdlet Set-HVCIOptions 1.0 ConfigCI |
Cmdlet Set-Item 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Set-ItemProperty 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Set-JobTrigger 1.1.0.0 PSScheduledJob |
Cmdlet Set-KdsConfiguration 1.0.0.0 Kds |
Cmdlet Set-LapsADAuditing 1.0.0.0 LAPS |
Cmdlet Set-LapsADComputerSelfPermission 1.0.0.0 LAPS |
Cmdlet Set-LapsADPasswordExpirationTime 1.0.0.0 LAPS |
Cmdlet Set-LapsADReadPasswordPermission 1.0.0.0 LAPS |
Cmdlet Set-LapsADResetPasswordPermission 1.0.0.0 LAPS |
Cmdlet Set-LocalGroup 1.0.0.0 Microsoft.PowerShell.LocalAccounts |
Cmdlet Set-LocalUser 1.0.0.0 Microsoft.PowerShell.LocalAccounts |
Cmdlet Set-Location 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Set-NonRemovableAppsPolicy 3.0 Dism |
Cmdlet Set-PackageSource 1.0.0.1 PackageManagement |
Cmdlet Set-ProcessMitigation 1.0.12 ProcessMitigations |
Cmdlet Set-PSBreakpoint 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Set-PSDebug 3.0.0.0 Microsoft.PowerShell.Core |
Cmdlet Set-PSReadLineKeyHandler 2.0.0 PSReadline |
Cmdlet Set-PSReadLineOption 2.0.0 PSReadline |
Cmdlet Set-PSSessionConfiguration 3.0.0.0 Microsoft.PowerShell.Core |
Cmdlet Set-RuleOption 1.0 ConfigCI |
Cmdlet Set-ScheduledJob 1.1.0.0 PSScheduledJob |
Cmdlet Set-ScheduledJobOption 1.1.0.0 PSScheduledJob |
Cmdlet Set-SecureBootUEFI 2.0.0.0 SecureBoot |
Cmdlet Set-Service 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Set-StrictMode 3.0.0.0 Microsoft.PowerShell.Core |
Cmdlet Set-SystemPreferredUILanguage 1.0 LanguagePackManagement |
Cmdlet Set-TimeZone 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Set-TpmOwnerAuth 2.0.0.0 TrustedPlatformModule |
Cmdlet Set-TraceSource 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Set-UevConfiguration 2.1.639.0 UEV |
Cmdlet Set-UevTemplateProfile 2.1.639.0 UEV |
Cmdlet Set-Variable 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Set-WheaMemoryPolicy 2.0.0.0 Whea |
Cmdlet Set-WinAcceptLanguageFromLanguageListOptOut 2.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 3.0.0.0 Microsoft.WSMan.Management |
Cmdlet Set-WSManQuickConfig 3.0.0.0 Microsoft.WSMan.Management |
Cmdlet Show-Command 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Show-ControlPanelItem 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Show-EventLog 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Show-WindowsDeveloperLicenseRegistration 1.0.0.0 WindowsDeveloperLicense |
Cmdlet Sort-Object 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Split-Path 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Split-WindowsImage 3.0 Dism |
Cmdlet Start-BitsTransfer 2.0.0.0 BitsTransfer |
Cmdlet Start-DscConfiguration 1.1 PSDesiredStateConfiguration |
Cmdlet Start-DtcDiagnosticResourceManager 1.0.0.0 MsDtc |
Cmdlet Start-Job 3.0.0.0 Microsoft.PowerShell.Core |
Cmdlet Start-OSUninstall 3.0 Dism |
Cmdlet Start-Process 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Start-Service 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Start-Sleep 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Start-Transaction 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Start-Transcript 3.0.0.0 Microsoft.PowerShell.Host |
Cmdlet Stop-AppvClientConnectionGroup 1.0.0.0 AppvClient |
Cmdlet Stop-AppvClientPackage 1.0.0.0 AppvClient |
Cmdlet Stop-Computer 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Stop-DtcDiagnosticResourceManager 1.0.0.0 MsDtc |
Cmdlet Stop-Job 3.0.0.0 Microsoft.PowerShell.Core |
Cmdlet Stop-Process 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Stop-Service 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Stop-Transcript 3.0.0.0 Microsoft.PowerShell.Host |
Cmdlet Suspend-BitsTransfer 2.0.0.0 BitsTransfer |
Cmdlet Suspend-Job 3.0.0.0 Microsoft.PowerShell.Core |
Cmdlet Suspend-Service 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Switch-Certificate 1.0.0.0 PKI |
Cmdlet Sync-AppvPublishingServer 1.0.0.0 AppvClient |
Cmdlet Tee-Object 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Test-AppLockerPolicy 2.0.0.0 AppLocker |
Cmdlet Test-Certificate 1.0.0.0 PKI |
Cmdlet Test-ComputerSecureChannel 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Test-Connection 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Test-DscConfiguration 1.1 PSDesiredStateConfiguration |
Cmdlet Test-FileCatalog 3.0.0.0 Microsoft.PowerShell.Security |
Cmdlet Test-KdsRootKey 1.0.0.0 Kds |
Cmdlet Test-ModuleManifest 3.0.0.0 Microsoft.PowerShell.Core |
Cmdlet Test-Path 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Test-PSSessionConfigurationFile 3.0.0.0 Microsoft.PowerShell.Core |
Cmdlet Test-UevTemplate 2.1.639.0 UEV |
Cmdlet Test-WSMan 3.0.0.0 Microsoft.WSMan.Management |
Cmdlet Trace-Command 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Unblock-File 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Unblock-Tpm 2.0.0.0 TrustedPlatformModule |
Cmdlet Undo-DtcDiagnosticTransaction 1.0.0.0 MsDtc |
Cmdlet Undo-Transaction 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Uninstall-Language 1.0 LanguagePackManagement |
Cmdlet Uninstall-Package 1.0.0.1 PackageManagement |
Cmdlet Uninstall-ProvisioningPackage 3.0 Provisioning |
Cmdlet Uninstall-TrustedProvisioningCertificate 3.0 Provisioning |
Cmdlet Unprotect-CmsMessage 3.0.0.0 Microsoft.PowerShell.Security |
Cmdlet Unpublish-AppvClientPackage 1.0.0.0 AppvClient |
Cmdlet Unregister-Event 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Unregister-PackageSource 1.0.0.1 PackageManagement |
Cmdlet Unregister-PSSessionConfiguration 3.0.0.0 Microsoft.PowerShell.Core |
Cmdlet Unregister-ScheduledJob 1.1.0.0 PSScheduledJob |
Cmdlet Unregister-UevTemplate 2.1.639.0 UEV |
Cmdlet Unregister-WindowsDeveloperLicense 1.0.0.0 WindowsDeveloperLicense |
Cmdlet Update-DscConfiguration 1.1 PSDesiredStateConfiguration |
Cmdlet Update-FormatData 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Update-Help 3.0.0.0 Microsoft.PowerShell.Core |
Cmdlet Update-LapsADSchema 1.0.0.0 LAPS |
Cmdlet Update-List 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Update-TypeData 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Update-UevTemplate 2.1.639.0 UEV |
Cmdlet Update-WIMBootEntry 3.0 Dism |
Cmdlet Use-Transaction 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Use-WindowsUnattend 3.0 Dism |
Cmdlet Wait-Debugger 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Wait-Event 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Wait-Job 3.0.0.0 Microsoft.PowerShell.Core |
Cmdlet Wait-Process 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Where-Object 3.0.0.0 Microsoft.PowerShell.Core |
Cmdlet Write-Debug 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Write-Error 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Write-EventLog 3.1.0.0 Microsoft.PowerShell.Management |
Cmdlet Write-Host 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Write-Information 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Write-Output 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Write-Progress 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Write-Verbose 3.1.0.0 Microsoft.PowerShell.Utility |
Cmdlet Write-Warning 3.1.0.0 Microsoft.PowerShell.Utility |