/New-PSModule

Helper script to create a new PowerShell module with PSFramework integration

Primary LanguagePowerShellMIT LicenseMIT

New-PSModule

This helper script will create a new PowerShell module with PSFramework integration (if selected). I purposely left this as a script file for simplicity. Just copy the entire script and run one of the following examples

EXAMPLE 1: New-PSModule -ModuleName YourModuleName -Description "This is my module" -ModuleAuthor "Author name"

    Creates a new module with your module name, description author

EXAMPLE 2: New-PSModule -ModuleName YourModuleName -Description "This is my module" -ModuleAuthor "Author name" -Path c:\Temp

    Creates a new module with your module name, description author and save it to the c:\Temp location

EXAMPLE 3: New-PSModule -ModuleName YourModuleName -Description "This is my module" -ModuleAuthor "Author name" -Path c:\Temp -InstallPSFramework

    Creates a new module with your module name, description author and save it to the c:\Temp location and install the PSFramework with configuration subsystem

NOTES: For more information on PSFramework please visit: http://PSFramework.org