views:

481

answers:

4

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?

+3  A: 

This link may help in understanding powershell cmdlet:

http://www.powershellpro.com/powershell-tutorial-introduction/tutorial-powershell-cmdlet/

Ganesh R.
+7  A: 

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.

Joey
+2  A: 

See Scripting with Windows PowerShell.

John Saunders
+1  A: 

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.

Jim Rush