Cre_Mai.ps1

$GitPath = "$env:userprofile\OneDrive\WindowsPowerShell\Modules\PSDxExpeditions" 
$ModuleName = 'PSDxExpeditions' 
$Author = 'Reginald Baalbergen, The PA1REG' 
$Description = 'PSDxExpeditions' 
$CompanyName = 'Radio Amateur PA1REG' 
$Copyright = '(c)2017 Reginald Baalbergen (PA1REG)' 
$ProjectUri = 'https://github.com/PA1REG/PSDxExpeditions/' 
$LicenseUri = $ProjectUri + 'LICENSE' 
$Tags = 'VE7CC','Ham Radio Deluxe','Dx Expeditions' 
 

 mkdir $GitPath\$ModuleName 
 mkdir $GitPath\$ModuleName\en-US 
 

 New-Item "$GitPath\$ModuleName\$ModuleName.psm1" -ItemType File 
 New-Item "$GitPath\$ModuleName\en-US\about_$ModuleName.help.txt" -ItemType File 
 New-ModuleManifest -Path $GitPath\$ModuleName\$ModuleName.psd1 `
                    -RootModule $GitPath\$ModuleName\$ModuleName.psm1 `
                    -Description $Description `
                    -PowerShellVersion 5.0 `
                    -Author $Author `
                    -CompanyName $CompanyName `
                    -Copyright $Copyright `
                    -ProjectUri  $ProjectUri `
                    -LicenseUri  $LicenseUri -Tags $Tags