`

Powershell 命令集 cmdlets

 
阅读更多

cmdlets是Powershell的内部命令,cmdlet的类型名为System.Management.Automation.CmdletInfo,包含下列属性和方法:

Name MemberType Definition
Equals Method bool Equals(System.Object obj)
GetHashCode Method int GetHashCode()
GetType Method type GetType()
ToString Method string ToString()
CommandType Property System.Management.Automation.CommandTypes CommandType {get;}
DefaultParameterSet Property System.String DefaultParameterSet {get;}
Definition Property System.String Definition {get;}
HelpFile Property System.String HelpFile {get;}
ImplementingType Property System.Type ImplementingType {get;}
Module Property System.Management.Automation.PSModuleInfo Module {get;}
ModuleName Property System.String ModuleName {get;}
Name Property System.String Name {get;}
Noun Property System.String Noun {get;}
OutputType Property System.Collections.ObjectModel.ReadOnlyCollection`1[[System.Management.Automation.PSTypeName, System.Management.Automation, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]] OutputType {get;}
Parameters Property System.Collections.Generic.Dictionary`2[[System.String, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[System.Management.Automation.ParameterMetadata, System.Management.Automation, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]] Parameters {get;}
ParameterSets Property System.Collections.ObjectModel.ReadOnlyCollection`1[[System.Management.Automation.CommandParameterSetInfo, System.Management.Automation, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]] ParameterSets {get;}
PSSnapIn Property System.Management.Automation.PSSnapInInfo PSSnapIn {get;}
Verb Property System.String Verb {get;}
Visibility Property System.Management.Automation.SessionStateEntryVisibility Visibility {get;set;}
DLL ScriptProperty System.Object DLL {get=$this.ImplementingType.Assembly.Location;}
HelpUri ScriptProperty System.Object HelpUri {get=try
{
# ok to cast CommandTypes enum to HelpCategory because string/indentifier for
# cmdlet,function,filter,alias,externalscript is identical.
# it is ok to fail for other enum values (i.e. for Application)
$helpObject = get-help -Name ($this.Name) -Category ([string]($this.CommandType)) -ErrorAction SilentlyContinue# return first non-null uri (and try not to hit any strict mode things)
if ($helpObject -eq $null) { return $null }
if ($helpObject.psobject.properties[‘relatedLinks’] -eq $null) { return $null }
if ($helpObject.relatedLinks.psobject.properties[‘navigationLink’] -eq $null) { return $null }
$helpUri = [string]$( $helpObject.relatedLinks.navigationLink | %{ if ($_.psobject.properties[‘uri’] -ne $null) { $_.uri } } | ?{ $_ } | select -first 1 )
return $helpUri
}
catch {};}

下面是全部的Cmdlets命令

每个命令有一个动词和名词组成,命令的作用一目了然。

Name ModuleName Help
Add-Computer Microsoft.PowerShell.Management help
Add-Content Microsoft.PowerShell.Management help
Add-History Microsoft.PowerShell.Core help
Add-Member Microsoft.PowerShell.Utility help
Add-PSSnapin Microsoft.PowerShell.Core help
Add-Type Microsoft.PowerShell.Utility help
Checkpoint-Computer Microsoft.PowerShell.Management help
Clear-Content Microsoft.PowerShell.Management help
Clear-EventLog Microsoft.PowerShell.Management help
Clear-History Microsoft.PowerShell.Core help
Clear-Item Microsoft.PowerShell.Management help
Clear-ItemProperty Microsoft.PowerShell.Management help
Clear-Variable Microsoft.PowerShell.Utility help
Compare-Object Microsoft.PowerShell.Utility help
Complete-Transaction Microsoft.PowerShell.Management help
Connect-WSMan Microsoft.WSMan.Management help
ConvertFrom-Csv Microsoft.PowerShell.Utility help
ConvertFrom-SecureString Microsoft.PowerShell.Security help
ConvertFrom-StringData Microsoft.PowerShell.Utility help
Convert-Path Microsoft.PowerShell.Management help
ConvertTo-Csv Microsoft.PowerShell.Utility help
ConvertTo-Html Microsoft.PowerShell.Utility help
ConvertTo-SecureString Microsoft.PowerShell.Security help
ConvertTo-Xml Microsoft.PowerShell.Utility help
Copy-Item Microsoft.PowerShell.Management help
Copy-ItemProperty Microsoft.PowerShell.Management help
Debug-Process Microsoft.PowerShell.Management help
Disable-ComputerRestore Microsoft.PowerShell.Management help
Disable-PSBreakpoint Microsoft.PowerShell.Utility help
Disable-PSSessionConfiguration Microsoft.PowerShell.Core help
Disable-WSManCredSSP Microsoft.WSMan.Management help
Disconnect-WSMan Microsoft.WSMan.Management help
Enable-ComputerRestore Microsoft.PowerShell.Management help
Enable-PSBreakpoint Microsoft.PowerShell.Utility help
Enable-PSRemoting Microsoft.PowerShell.Core help
Enable-PSSessionConfiguration Microsoft.PowerShell.Core help
Enable-WSManCredSSP Microsoft.WSMan.Management help
Enter-PSSession Microsoft.PowerShell.Core help
Exit-PSSession Microsoft.PowerShell.Core help
Export-Alias Microsoft.PowerShell.Utility help
Export-Clixml Microsoft.PowerShell.Utility help
Export-Console Microsoft.PowerShell.Core help
Export-Counter Microsoft.PowerShell.Diagnostics help
Export-Csv Microsoft.PowerShell.Utility help
Export-FormatData Microsoft.PowerShell.Utility help
Export-ModuleMember Microsoft.PowerShell.Core help
Export-PSSession Microsoft.PowerShell.Utility help
ForEach-Object Microsoft.PowerShell.Core help
Format-Custom Microsoft.PowerShell.Utility help
Format-List Microsoft.PowerShell.Utility help
Format-Table Microsoft.PowerShell.Utility help
Format-Wide Microsoft.PowerShell.Utility help
Get-Acl Microsoft.PowerShell.Security help
Get-Alias Microsoft.PowerShell.Utility help
Get-AuthenticodeSignature Microsoft.PowerShell.Security help
Get-ChildItem Microsoft.PowerShell.Management help
Get-Command Microsoft.PowerShell.Core help
Get-ComputerRestorePoint Microsoft.PowerShell.Management help
Get-Content Microsoft.PowerShell.Management help
Get-Counter Microsoft.PowerShell.Diagnostics help
Get-Credential Microsoft.PowerShell.Security help
Get-Culture Microsoft.PowerShell.Utility help
Get-Date Microsoft.PowerShell.Utility help
Get-Event Microsoft.PowerShell.Utility help
Get-EventLog Microsoft.PowerShell.Management help
Get-EventSubscriber Microsoft.PowerShell.Utility help
Get-ExecutionPolicy Microsoft.PowerShell.Security help
Get-FormatData Microsoft.PowerShell.Utility help
Get-Help Microsoft.PowerShell.Core help
Get-History Microsoft.PowerShell.Core help
Get-Host Microsoft.PowerShell.Utility help
Get-HotFix Microsoft.PowerShell.Management help
Get-Item Microsoft.PowerShell.Management help
Get-ItemProperty Microsoft.PowerShell.Management help
Get-Job Microsoft.PowerShell.Core help
Get-Location Microsoft.PowerShell.Management help
Get-Member Microsoft.PowerShell.Utility help
Get-Module Microsoft.PowerShell.Core help
Get-PfxCertificate Microsoft.PowerShell.Security help
Get-Process Microsoft.PowerShell.Management help
Get-PSBreakpoint Microsoft.PowerShell.Utility help
Get-PSCallStack Microsoft.PowerShell.Utility help
Get-PSDrive Microsoft.PowerShell.Management help
Get-PSProvider Microsoft.PowerShell.Management help
Get-PSSession Microsoft.PowerShell.Core help
Get-PSSessionConfiguration Microsoft.PowerShell.Core help
Get-PSSnapin Microsoft.PowerShell.Core help
Get-Random Microsoft.PowerShell.Utility help
Get-Service Microsoft.PowerShell.Management help
Get-TraceSource Microsoft.PowerShell.Utility help
Get-Transaction Microsoft.PowerShell.Management help
Get-UICulture Microsoft.PowerShell.Utility help
Get-Unique Microsoft.PowerShell.Utility help
Get-Variable Microsoft.PowerShell.Utility help
Get-WinEvent Microsoft.PowerShell.Diagnostics help
Get-WmiObject Microsoft.PowerShell.Management help
Get-WSManCredSSP Microsoft.WSMan.Management help
Get-WSManInstance Microsoft.WSMan.Management help
Group-Object Microsoft.PowerShell.Utility help
Import-Alias Microsoft.PowerShell.Utility help
Import-Clixml Microsoft.PowerShell.Utility help
Import-Counter Microsoft.PowerShell.Diagnostics help
Import-Csv Microsoft.PowerShell.Utility help
Import-LocalizedData Microsoft.PowerShell.Utility help
Import-Module Microsoft.PowerShell.Core help
Import-PSSession Microsoft.PowerShell.Utility help
Invoke-Command Microsoft.PowerShell.Core help
Invoke-Expression Microsoft.PowerShell.Utility help
Invoke-History Microsoft.PowerShell.Core help
Invoke-Item Microsoft.PowerShell.Management help
Invoke-WmiMethod Microsoft.PowerShell.Management help
Invoke-WSManAction Microsoft.WSMan.Management help
Join-Path Microsoft.PowerShell.Management help
Limit-EventLog Microsoft.PowerShell.Management help
Measure-Command Microsoft.PowerShell.Utility help
Measure-Object Microsoft.PowerShell.Utility help
Move-Item Microsoft.PowerShell.Management help
Move-ItemProperty Microsoft.PowerShell.Management help
New-Alias Microsoft.PowerShell.Utility help
New-Event Microsoft.PowerShell.Utility help
New-EventLog Microsoft.PowerShell.Management help
New-Item Microsoft.PowerShell.Management help
New-ItemProperty Microsoft.PowerShell.Management help
New-Module Microsoft.PowerShell.Core help
New-ModuleManifest Microsoft.PowerShell.Core help
New-Object Microsoft.PowerShell.Utility help
New-PSDrive Microsoft.PowerShell.Management help
New-PSSession Microsoft.PowerShell.Core help
New-PSSessionOption Microsoft.PowerShell.Core help
New-Service Microsoft.PowerShell.Management help
New-TimeSpan Microsoft.PowerShell.Utility help
New-Variable Microsoft.PowerShell.Utility help
New-WebServiceProxy Microsoft.PowerShell.Management help
New-WSManInstance Microsoft.WSMan.Management help
New-WSManSessionOption Microsoft.WSMan.Management help
Out-Default Microsoft.PowerShell.Utility help
Out-File Microsoft.PowerShell.Utility help
Out-GridView Microsoft.PowerShell.Utility help
Out-Host Microsoft.PowerShell.Utility help
Out-Null Microsoft.PowerShell.Utility help
Out-Printer Microsoft.PowerShell.Utility help
Out-String Microsoft.PowerShell.Utility help
Pop-Location Microsoft.PowerShell.Management help
Push-Location Microsoft.PowerShell.Management help
Read-Host Microsoft.PowerShell.Utility help
Receive-Job Microsoft.PowerShell.Core help
Register-EngineEvent Microsoft.PowerShell.Utility help
Register-ObjectEvent Microsoft.PowerShell.Utility help
Register-PSSessionConfiguration Microsoft.PowerShell.Core help
Register-WmiEvent Microsoft.PowerShell.Management help
Remove-Computer Microsoft.PowerShell.Management help
Remove-Event Microsoft.PowerShell.Utility help
Remove-EventLog Microsoft.PowerShell.Management help
Remove-Item Microsoft.PowerShell.Management help
Remove-ItemProperty Microsoft.PowerShell.Management help
Remove-Job Microsoft.PowerShell.Core help
Remove-Module Microsoft.PowerShell.Core help
Remove-PSBreakpoint Microsoft.PowerShell.Utility help
Remove-PSDrive Microsoft.PowerShell.Management help
Remove-PSSession Microsoft.PowerShell.Core help
Remove-PSSnapin Microsoft.PowerShell.Core help
Remove-Variable Microsoft.PowerShell.Utility help
Remove-WmiObject Microsoft.PowerShell.Management help
Remove-WSManInstance Microsoft.WSMan.Management help
Rename-Item Microsoft.PowerShell.Management help
Rename-ItemProperty Microsoft.PowerShell.Management help
Reset-ComputerMachinePassword Microsoft.PowerShell.Management help
Resolve-Path Microsoft.PowerShell.Management help
Restart-Computer Microsoft.PowerShell.Management help
Restart-Service Microsoft.PowerShell.Management help
Restore-Computer Microsoft.PowerShell.Management help
Resume-Service Microsoft.PowerShell.Management help
Select-Object Microsoft.PowerShell.Utility help
Select-String Microsoft.PowerShell.Utility help
Select-Xml Microsoft.PowerShell.Utility help
Send-MailMessage Microsoft.PowerShell.Utility help
Set-Acl Microsoft.PowerShell.Security help
Set-Alias Microsoft.PowerShell.Utility help
Set-AuthenticodeSignature Microsoft.PowerShell.Security help
Set-Content Microsoft.PowerShell.Management help
Set-Date Microsoft.PowerShell.Utility help
Set-ExecutionPolicy Microsoft.PowerShell.Security help
Set-Item Microsoft.PowerShell.Management help
Set-ItemProperty Microsoft.PowerShell.Management help
Set-Location Microsoft.PowerShell.Management help
Set-PSBreakpoint Microsoft.PowerShell.Utility help
Set-PSDebug Microsoft.PowerShell.Core help
Set-PSSessionConfiguration Microsoft.PowerShell.Core help
Set-Service Microsoft.PowerShell.Management help
Set-StrictMode Microsoft.PowerShell.Core help
Set-TraceSource Microsoft.PowerShell.Utility help
Set-Variable Microsoft.PowerShell.Utility help
Set-WmiInstance Microsoft.PowerShell.Management help
Set-WSManInstance Microsoft.WSMan.Management help
Set-WSManQuickConfig Microsoft.WSMan.Management help
Show-EventLog Microsoft.PowerShell.Management help
Sort-Object Microsoft.PowerShell.Utility help
Split-Path Microsoft.PowerShell.Management help
Start-Job Microsoft.PowerShell.Core help
Start-Process Microsoft.PowerShell.Management help
Start-Service Microsoft.PowerShell.Management help
Start-Sleep Microsoft.PowerShell.Utility help
Start-Transaction Microsoft.PowerShell.Management help
Start-Transcript Microsoft.PowerShell.Host help
Stop-Computer Microsoft.PowerShell.Management help
Stop-Job Microsoft.PowerShell.Core help
Stop-Process Microsoft.PowerShell.Management help
Stop-Service Microsoft.PowerShell.Management help
Stop-Transcript Microsoft.PowerShell.Host help
Suspend-Service Microsoft.PowerShell.Management help
Tee-Object Microsoft.PowerShell.Utility help
Test-ComputerSecureChannel Microsoft.PowerShell.Management help
Test-Connection Microsoft.PowerShell.Management help
Test-ModuleManifest Microsoft.PowerShell.Core help
Test-Path Microsoft.PowerShell.Management help
Test-WSMan Microsoft.WSMan.Management help
Trace-Command Microsoft.PowerShell.Utility help
Undo-Transaction Microsoft.PowerShell.Management help
Unregister-Event Microsoft.PowerShell.Utility help
Unregister-PSSessionConfiguration Microsoft.PowerShell.Core help
Update-FormatData Microsoft.PowerShell.Utility help
Update-List Microsoft.PowerShell.Utility help
Update-TypeData Microsoft.PowerShell.Utility help
Use-Transaction Microsoft.PowerShell.Management help
Wait-Event Microsoft.PowerShell.Utility help
Wait-Job Microsoft.PowerShell.Core help
Wait-Process Microsoft.PowerShell.Management help
Where-Object Microsoft.PowerShell.Core help
Write-Debug Microsoft.PowerShell.Utility help
Write-Error Microsoft.PowerShell.Utility help
Write-EventLog Microsoft.PowerShell.Management help
Write-Host Microsoft.PowerShell.Utility help
Write-Output Microsoft.PowerShell.Utility help
Write-Progress Microsoft.PowerShell.Utility help
Write-Verbose Microsoft.PowerShell.Utility help
Write-Warning Microsoft.PowerShell.Utility help

分享到:
评论

相关推荐

    PowerShell基本语法及常用命令(中文)

    6. **Powershell Remoting**:允许跨计算机执行PowerShell命令,实现远程管理。 通过学习和掌握这些基本概念和命令,你可以在Windows环境中高效地进行系统管理和自动化任务。`PowerShell基本语法及常用命令.pdf`这...

    操作系统安全:常用的PowerShell命令.docx

    操作系统安全在现代IT环境中至关重要,而Windows PowerShell是管理员管理和维护Windows系统的重要工具,它提供了丰富的...了解并熟练使用PowerShell命令,能极大地提高日常运维效率,并有助于保障系统的安全稳定。

    VMwareESX教程之PowerShell脚本.pdf

    在使用 PowerShell 管理 VMware 环境时,需要了解一些基本的 PowerShell 命令和 cmdlets。例如,Get-VM 是一个用于获取虚拟机信息的 cmdlet。可以通过输入 Get-Command 查看所有可用的 cmdlets。 本文提供了一个...

    PnP-PowerShell:SharePoint PnP PowerShell CmdLets

    该解决方案包含一个PowerShell命令库,该命令库使您可以对SharePoint执行复杂的配置和工件管理操作。 这些命令在后台使用CSOM和REST的组合,并且可以与SharePoint Online一起作为SharePoint内部部署。 我发现了一个...

    Windows7系统的Powershell命令介绍.docx

    总的来说,Windows PowerShell是Windows系统管理员和开发者的重要工具,它通过提供丰富的命令集、强大的脚本能力和对系统深层结构的访问,使得日常维护和管理任务变得更加高效和简单。对于那些熟悉Unix/Linux系统...

    从Unix Shell到Powershell

    教程中对Powershell的基本概念进行了简要介绍,并提供了一个PowerShell命令与Unix命令的对照列表,以及对这些PowerShell命令的详细讨论。通过对照学习,Unix用户可以更快地转换和适应PowerShell的操作环境。 在Unix...

    PowerShell Plus

    传统的命令提示符在处理复杂任务时显得力不从心,而PowerShell则引入了对象导向的输出和强大的脚本语言,如PowerShell语法和Cmdlets(命令模块),极大地提升了管理员的工作效率。 PowerShell Plus的主要特点包括:...

    WindowsPowerShell v1.0

    2. **Cmdlets(命令集)**:PowerShell引入了一种新的命令概念——Cmdlets,它们是一组预定义的、单一功能的命令,如`Get-Process`用于获取运行的进程,`Stop-Service`用于停止服务等。这些Cmdlets遵循统一的命名...

    Windows PowerShell 1.0

    它允许用户通过PowerShell命令(也称为Cmdlets)来管理系统,这些Cmdlets遵循统一的命名规范,通常以动词-名词的形式,如`Get-Process`用于获取进程信息。 **PowerShell的主要特点:** 1. **对象管道**:不同于CMD...

    powershell教程

    基础概念包括命令行会话(PowerShell Console或ISE)、命令(Cmdlets)、提供程序(Providers)以及工作区(Drive)。 2. PowerShell Cmdlets: PowerShell中的命令是遵循统一命名约定的.NET Framework类,通常以...

    Windows PowerShell系列课程

    此外,PowerShell的命令称为Cmdlets,遵循统一的命名规则,通常以动词-名词的形式,如Get-Process。课程还会介绍如何启动PowerShell,以及使用Tab键进行自动补全功能,提升效率。另外,PowerShell ISE(集成脚本环境...

    PowerShell 教程

    - **PowerShell会话(Session)**:也称为运行空间,是执行PowerShell命令和脚本的环境。 - **PowerShell提供商(Providers)**:类似于文件系统的概念,扩展了PowerShell访问系统资源的能力,如注册表、证书存储、...

    powershell(KB926140)

    4. **PowerShell命令(Cmdlets)**:Cmdlets是PowerShell中的预定义命令,遵循统一的命名规则(动词-名词,如`Get-Process`),易于理解和记忆。 5. **脚本语言**:PowerShell支持使用PowerShell脚本语言编写自动化...

    Windows.PowerShell应用手册.pdf

    这意味着用户可以通过这份手册掌握比基础更深入的PowerShell技术,例如如何使用高级函数、cmdlets(命令元素)、脚本块以及了解如何利用PowerShell来完成系统管理、任务自动化等高级任务。 由于文件中没有实际的可...

    PowerShell_for_SharePoint_2010

    PowerShell是基于.NET Framework的脚本语言,它提供了大量的cmdlets(命令集),这些命令集可以控制和自动化Windows系统的各个方面。对于SharePoint 2010,PowerShell提供了一种高效的方式来管理和维护SharePoint...

    PowerShell介绍.rar

    这种结构使得学习和记忆PowerShell命令变得更加直观。此外,PowerShell支持管道操作,可以将一个cmdlet的输出作为另一个cmdlet的输入,这极大地增强了命令的组合和灵活性。 PowerShell还引入了对象模型的概念,这...

    PowerShell 详细介绍.zip

    2. **Cmdlets(命令集)**:PowerShell引入了一组预定义的、功能单一的命令,称为Cmdlets。这些Cmdlets遵循一致的命名约定,如`Get-`、`Set-`、`Remove-`等,使用户能够更容易地记忆和使用。 3. **提供管道...

    PowerShell.pdf

    这意味着管理员可以在任何操作系统上使用熟悉的PowerShell命令和脚本,极大地提高了跨平台管理的便利性。 此外,PowerShell在安全性方面也得到了重视。随着版本的更新,PowerShell引入了多种安全特性,例如基于角色...

    Windows Powershell - EN

    - **PowerShell 命令(cmdlets)**:cmdlets 是 PowerShell 的核心组件,是一组预定义的、单一功能的命令,遵循统一的命名约定,如 `Get-Process` 和 `Start-Service`。 - **脚本支持**:PowerShell 支持使用 ...

Global site tag (gtag.js) - Google Analytics