en-US/about_SpecCreateModule.help.txt

TOPIC
    about_SpecCreateModule
 
SHORT DESCRIPTION
    A module to create the base module structure.
 
LONG DESCRIPTION
    A module that will create the root module structure for a new module.
    Use the switch -DisplayDirectoryTree to see a directory tree of the folders and files created.
 
    It will create the following folders and files:
     c:\my\folder\MyModule
        └── MyModule
        │ ├── en-US
        │ │ └── about_MyModule.help.txt
        │ ├── Private
        │ ├── Public
        │ ├── MyModule.psd1
        │ └── MyModule.psm1
        ├── Tests
        │ └── MyModule.tests.ps1
        ├── README.md
 
 
EXAMPLES
New-SpecModule -ModuleName 'MyModule' -modulepath 'C:\MyModules' -moduleShortDescription 'A module that does stuff.' -DisplayDirectoryTree
 
KEYWORDS
    module, create, new, structure
 
SEE ALSO
    N/A