Skip to content

Instantly share code, notes, and snippets.

View ericjaystevens's full-sized avatar

Eric Stevens ericjaystevens

  • Shelby Township, MI
View GitHub Profile
# We cloned our project to C:\sc\PSStackExchange
$ModuleName = 'PSmodName'
$Path = "$env:HOMEPATH\scripts\$($ModuleName)"
$Author = 'EricJayStevens'
$Description = 'PowerShell module to ...'
$version = $PSVersionTable.PSVersion | select -ExpandProperty Major
# Create the module and private function directories
mkdir $Path\$ModuleName
mkdir $Path\$ModuleName\Private