Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 1.42 KB

File metadata and controls

21 lines (14 loc) · 1.42 KB

PmBuild

Welcome to the PmBuild wiki! 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.

So far, this module adds 4 new cmdlets as follows:

To install pmbuild, download pmbuild.psm1.

Place it inside a it's own directory (named pmbuild) inside your Powershell Module path. You can get your PSModule path from $env:PSModulePath. For example:

  • Current User scope: C:\Users\user\Documents\WindowsPowerShell\Modules\pmbuild\pmbuild.psm1
  • Local Machine scope: C:\Windows\system32\WindowsPowerShell\v1.0\Modules\pmbuild\pmbuild.psm1

After the file is in place, you can then import it into your PowerShell session: Import-Module pmbuild