What is a PowerShell cmdlet?

2019-03-18 18:22发布

Approaching cmdlets in a conceptual way,

  1. How are they made? Are they compiled?

  2. Is it the equivalent of a batch file for PowerShell? Is it a script or a binary?

  3. What is the structure used for storing these cmdlets?

4条回答
闹够了就滚
2楼-- · 2019-03-18 18:56

A PowerShell cmdlet is a user-created extension to the PowerShell scripting language. The Cmdlet itself is a .NET class extending from PSCmdlet. Usually, additional components are included with the cmdlet to provide help and registering the cmdlet.

A cmdlet allows you to access to all functions accessible through the .NET virtual machine. This can range from simple script aids to fully functional programs.

查看更多
祖国的老花朵
3楼-- · 2019-03-18 18:57
一夜七次
5楼-- · 2019-03-18 19:09

A PowerShell cmdlet is a compiled piece of .NET code, more precisely a single class if I am not mistaken. Cmdlets are kind of the "native" commands in PowerShell land, being able to handle object input and output as well as usually playing nice and well with the (object-based) pipeline.

Cmdlets have no direct representation in the file system, as they are not programs or similar. They exist solely within PowerShell. You can use the Get-Command cmdlet to query all available cmdlets, functions, etc.

You can write cmdlets with a .NET language, such as C#. With PowerShell v2 there is also the possibility to write so-called advanced functions which behave similarly to cmdlets and have comparable capabilities but are interpreted PowerShell code, instead of compiled classes. This may incur a run-time overhead.

查看更多
登录 后发表回答