swirl
Home Software Blog Wallpapers Webtools
Writing a simple PowerShell V 1.0 cmdlet with help content
Sunday 09, August 2015   |   Post link

PowerShell is perhaps the coolest thing to have happened for Windows Administrators in the recent past. I must admit I am a bit new to PowerShell, somehow I never got the opportunity to work on PowerShell part of the product at my work. Tinkering with it for a few days, it seems to be well thought out and easy to use.

PowerShell has evolved since the first version, the latest is V4.0 present in Windows 10 family of operating systems. This article will discuss how to create a cmdlet and use it in PowerShell version 1.0 and assumes that you have fair knowledge of PowerShell and related terms.

We will develop a cmdlet which prints a greeting like 'Good evening!' or 'Hello!' depending on the time of the day. It will also be possible to specify an hour value (in 24 hour form) to the Cmdlet.

In V1.0, a cmdlet must be implemented as a .NET assembly, so create an .NET Class Library in your favorite IDE; call the project SampleSnapIn. Just for your information, I am using Visual Studio 2015 Community Edition in this example.

At this point you should have a Class1.cs; if you do, rename it to GetGreetingCommand. For a class to act as a cmdlet it must derive from System.Management.Automation.Cmdlet class. This class is present in System.Management.Automation.dll and this assembly should be located at C:\Program Files\Reference Assemblies\Microsoft\WindowsPowerShell\v1.0. If you have a different version of PowerShell say 3.0, it would be C:\Program Files (x86)\Reference Assemblies\Microsoft\WindowsPowerShell\3.0.

The Cmdlet class has a number of methods which can be overridden which will give it the behavior you want. In this case, we need to override the ProcessRecord() method. This is the method which PowerShell runtime will call. The entire class' source code is here:

using System;
using System.Management.Automation;

namespace Siddharth.Powershell
{
    [Cmdlet(VerbsCommon.Get, "Greeting")]
    public class GetGreetingCommand : Cmdlet
    {
        protected override void ProcessRecord()
        {
            int hour;
            if (!string.IsNullOrEmpty(m_time))
            {
                hour = int.TryParse(m_time, out hour) ? hour : DateTime.Now.Hour;
            }
            else
            {
                hour = DateTime.Now.Hour;
            }
                        
            string ret;

            if (hour < 4) ret = "Hello!";
            else if (hour < 12) ret = "Good Morning!";
            else if (hour < 17) ret = "Good afternoon!";
            else ret = "Good evening!";

            WriteObject(ret);
        }

        private string m_time = null;
        [Parameter(Position = 0)]
        public string Time
        {
            get { return m_time; }
            set { m_time = value; }
        }
    }
}

Building the project gives us SampleSnapIn.dll. This is the name of the PowerShell snapin. To use it,it must be registered with PowerShell. This is done using the "installutil" tool.
Open an Administrative Cmd prompt and navigate to:

C:\>CD C:\Windows\Microsoft.NET\Framework64\v4.0.30319
C:\Windows\Microsoft.NET\Framework64\v4.0.30319>installutil "D:\My Stuff\My Projects\Csharp\PSHello\PSHello\bin\Debug\SampleSnapIn.dll"

Note: If you are using a different version of .NET change the path accordingly. Also, note since my version of Windows is a 64-bit one, I am using the tools from Framework64 folder.

Let's check if the SnapIn is registered. Open a PowerShell window and type:

Get-PSSnapIn -registered
The output should be something like:
Name        : SampleSnapIn
PSVersion   : 5.0

To use the SnapIn, we need to import it using:

> Add-PsSnapIn SampleSnapIn
> Get-Greeting
> Hello!
> Get-Greeting 21
Good evening!

Now to add a final finish, we'll create some help content for the cmdlet. Add a new XML file named 'SampleSnapIn.dll-help.xml' to the project and paste the following:

<!--?xml version="1.0" encoding="utf-8" ?-->
<helpitems xmlns="http://msh" schema="maml">
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10">
    <command:details>
      <command:name>Get-Greeting</command:name>
      <maml:description>
        <maml:para>Returns a greeting string based on the time of the day.</maml:para>
      </maml:description>
      <command:verb>Get</command:verb>
      <command:noun>Greeting</command:noun>
    </command:details>
    <command:syntax>
      <command:syntaxitem>
        <maml:name>Get-Greeting</maml:name>
        <command:parameter aliases="" position="0" pipelineinput="True" globbing="false" variablelength="true" required="false">
          <maml:name>Hour</maml:name>
          <maml:description>
            <maml:para>Specifies the hour on the basis of which a greeting is returned.</maml:para>
          </maml:description>
          <command:parametervalue variablelength="true" required="false">System.Int32</command:parametervalue>
        </command:parameter>
      </command:syntaxitem>      
    </command:syntax>
    <command:parameters>
      <command:parameter required="false" globbing="true" pipelineinput="false" position="0">
        <maml:name>Hour</maml:name>
        <dev:type>System.Int32</dev:type>
        <dev:defaultvalue>DateTime.Now.Hour</dev:defaultvalue>
      </command:parameter>
    </command:parameters>    
    <command:returnvalues>
      <command:returnvalue>
        <dev:type>
          <maml:name>String</maml:name>        
        </dev:type>
      </command:returnvalue>
    </command:returnvalues>    
    <command:examples>
      <command:example>
        <maml:title>--- Example 1 ---</maml:title>
        <maml:introduction>
          <maml:param>Calling it without any parameters.</maml:param>
        </maml:introduction>
        <dev:code>PS C:\&gt;Get-Greeting</dev:code>
        <dev:remarks>
          <maml:para>The current time is used to return a greeting message.</maml:para>
        </dev:remarks>
      </command:example>
      <command:example>
        <maml:title>--- Example 2 ---</maml:title>
        <maml:introduction>
          <maml:param>Calling it with one parameter specfying the hour.</maml:param>
        </maml:introduction>
        <dev:code>PS C:\&gt;Get-Greeting 8</dev:code>
        <dev:remarks>
          <maml:para>The specified hour is used to return a greeting message, in this case will return good morning.</maml:para>
        </dev:remarks>
      </command:example>
    </command:examples>
    <maml:relatedlinks>
      <maml:navigationlink>
        <maml:linktext>Explanation can be found at</maml:linktext>
        <maml:uri>http://sbytestream.net</maml:uri>
      </maml:navigationlink>
    </maml:relatedlinks>
  </command:command>
</helpitems>
Typing PS C:\Users\Siddharth> help Get-Greeting -full
gives us:

snapin-help.png


Categories: PowerShell (2)
Tags: Cmdlet(1)

Comments

Posts By Year

2023 (5)
2022 (10)
2021 (5)
2020 (12)
2019 (6)
2018 (8)
2017 (11)
2016 (6)
2015 (17)
2014 (2)
2013 (4)
2012 (2)

Posts By Category

.NET (4)
.NET Core (2)
ASP.NET MVC (4)
AWS (5)
AWS API Gateway (1)
Android (1)
Apache Camel (1)
Architecture (1)
Audio (1)
Azure (2)
Book review (3)
Business (1)
C# (3)
C++ (2)
CloudHSM (1)
Containers (4)
Corporate culture (1)
Database (3)
Database migration (1)
Desktop (1)
Docker (1)
DotNet (3)
DotNet Core (2)
ElasticSearch (1)
Entity Framework (3)
Git (3)
IIS (1)
JDBC (1)
Java (9)
Kibana (1)
Kubernetes (1)
Lambda (1)
Learning (1)
Life (7)
Linux (1)
Lucene (1)
Multi-threading (1)
Music (1)
OData (1)
Office (1)
PHP (1)
Photography (1)
PowerShell (2)
Programming (28)
Rants (5)
SQL (2)
SQL Server (1)
Security (2)
Software Engineering (1)
Software development (2)
Solr (1)
Sql Server (2)
Storage (1)
T-SQL (1)
TDD (1)
TSQL (5)
Tablet (1)
Technology (1)
Test Driven (1)
Unit Testing (1)
Unit Tests (1)
Utilities (3)
VC++ (1)
VMWare (1)
VSCode (1)
Visual Studio (2)
Wallpapers (1)
Web API (2)
Win32 (1)
Windows (9)
XML (2)

Posts By Tags

.NET(6) API Gateway(1) ASP.NET(4) AWS(3) Adults(1) Advertising(1) Android(1) Anti-forgery(1) Asynch(1) Authentication(2) Azure(2) Backup(1) Beliefs(1) BlockingQueue(1) Book review(2) Books(1) Busy(1) C#(4) C++(3) CLR(1) CORS(1) CSRF(1) CTE(1) Callbacks(1) Camel(1) Certificates(1) Checkbox(1) CloudHSM(1) Cmdlet(1) Company culture(1) Complexity(1) Consumer(1) Consumerism(1) Containers(3) Core(2) Custom(2) DPI(1) Data-time(1) Database(4) Debugging(1) Delegates(1) Developer(2) Dockers(2) DotNetCore(3) EF 1.0(1) Earphones(1) Elastic Search(1) ElasticSearch(1) Encrypted(1) Entity framework(1) Events(1) File copy(1) File history(1) Font(1) Git(2) HierarchyID(1) IIS(1) Installing(1) Intelli J(1) JDBC(1) JSON(1) JUnit(1) JWT(1) Java(3) JavaScript(1) Kubernetes(1) Life(1) LinkedIn(1) Linux(2) Localization(1) Log4J(1) Log4J2(1) Lucene(1) MVC(4) Management(2) Migration history(1) Mirror(1) Mobile Apps(1) Modern Life(1) Money(1) Music(1) NGINX(1) NTFS(1) NUnit(2) OData(1) OPENXML(1) Objects(1) Office(1) OpenCover(1) Organization(1) PHP(1) Paths(1) PowerShell(2) Producer(1) Programming(2) Python(2) QAAC(1) Quality(1) REDIS(2) REST(1) Runtimes(1) S3-Select(1) SD card(1) SLF4J(1) SQL(2) SQL Code-first Migration(1) SSH(2) Sattelite assemblies(1) School(1) Secrets Manager(1) Self reliance(1) Service(1) Shell(1) Solr(1) Sony VAIO(1) Spirituality(1) Spring(1) Sql Express(1) System Image(1) TDD(1) TSQL(3) Table variables(1) Tables(1) Tablet(1) Ubuntu(1) Url rewrite(1) VMWare(1) VSCode(1) Validation(2) VeraCode(1) Wallpaper(1) Wallpapers(1) Web Development(4) Windows(2) Windows 10(2) Windows 2016(2) Windows 8.1(1) Work culture(1) XML(1) Yii(1) iTunes(1) renew(1) security(1)