Main | Contact | Blog | Documentation

PowerShell Framework

The project dedicated to empowering your PowerShell scripting.

Getting Started with Using Templates

You can create a new file from a template by running the Invoke-PSMDTemplate command and specifying the name of the template to initialize:

Invoke-PSMDTemplate -TemplateName function

If you want to store it somewhere else, specify the output path:

Invoke-PSMDTemplate -TemplateName module -OutPath "C:\temp"

Do not specify file or project name in the outpath - those are all covered within the template.

Additional information

Further reading