Zachary Loeber

I eat complexity and am never without a meal.

PowerShell: Thoughts on Module Design

I’ve finally decided to grow up and start making modules out of my rather large PowerShell code base. Here are a few things I’ve learned.

Introduction

Initially I avoided creating modules simply because I was uncomfortable creating them and felt they were needless overhead to me getting scripts out the door. I also had the misconception that modules needed to be installed on a host system to be used. This misconception went against my personal mantra of built in portability.

I know now that I was limiting myself with this mindset. Now I’m rounding back and and catching up to the rest of the civilized PowerShell coder world. Here is how I settled on coding my modules for now, I’m sure this will evolve as my skills and experience grow but this should be a good base for anyone else delving into getting more modular with their PowerShell scripts.

Module Structure

The basic structure I’ve settled on is as follows:

  • ModuleName
    • en-US\

    • src\

      • public\
      • private\
    • lib\

    • bin\

    • build\

    • test\

      ModuleName.Format.ps1xml

      ModuleName.psd1

      ModuleName.psm1

      Install.ps1

Looking at examples and a few other PowerShell module articles (here and here and here) I came to realize it would be wise to keep all functions as separate files. This can be a pain when debugging and testing if you have multiple dependencies between functions in your project. But for overall maintainability and simplicity a divide and conquer approach is preferred. This has the benefit of not having to deal with manual changes every time you include or remove a function from being exported as a module command. This is why the src directory has both public and private directories. Any ps1 files in the private folder will be dot sourced and kept private within the module. Any ps1 files within the public directory will be dot sourced, then any first level functions found will be exported and exposed for general use.

My ModuleName.psm1 base file becomes pretty simple and can be used for most modules without any modification.

As you can see I use AST to find all the first level function names and export them for public consumption. Additionally, if I’m wanting to keep a template or other ps1 files around there is no harm in leaving them either at the root of the src directory or in any other named sub-directory. The entire module directory is self containing as well so we can copy it anywhere and import the psm1 file directly.

Installing

Speaking of installing things I do include a fairly generic Install.ps1 file which can be called in a single line to actually install the module if people want to do so. It is easily modified for any other module or upload location if you aren’t using Github.

The one-liner at the top directs the user to download the Install.ps1 file and automatically run it. The script downloads, then unzips the module to a temporary location, deletes any existing module folder with the same name (after prompting of course), then copies the downloaded and extracted module folder to the user profile Modules directory.

Other Directories

The other directories are not as important but are kind of placeholders for things. The test directory will be for pester tests (which I’ve yet to implement but hope to do so soon). The build directory will be for more complex projects and should be ignored in your .gitignore file. Lib and bin are for dlls and exes respectively if you have need for them.

Conclusion

That’s just about it really. I’ve a script out there to build some of this but it is in such a basic form that it isn’t worth pointing out. There are some pretty good but rarely mentioned module build tools out there on github you can take a peek at though.

Here are some I was looking at either using or stealing ideas from 🙂

Description: PmBuild is a PowerShell module that provides tools for combing powershell functions into a single psm1 module file, as well as documenting said cmdlets based on their get-help information.

Project: ModuleBuilder (https://github.com/PoshCode/ModuleBuilder)

Description: The primary goal of this module is to increase the ease and consistency of PowerShell module creation as well as provide a structure to the project that makes it easy for others to contribute and for the owners to integrate those changes in.