a.txt

# http://www.lazywinadmin.com/2016/05/using-pester-to-test-your-manifest-file.html
# Provide information on the module
$ModuleName = "AdsiPS"
$Author = "Francois-Xavier Cat"
$AuthorCompany = "Lazywinadmin.com"
$Tags = "ADSI", "AdsiPS", "ActiveDirectory"
$ModuleVersion = "1.0.0.0"
$PowerShellVersion = "3.0"
$Description = "AdsiPS is a module to interact with Active Directory without the Microsoft ActiveDirectory module"
$CopyRight = "(c) 2016 Francois-Xavier Cat. All rights reserved. Licensed under The MIT License (MIT)"
$LicenseURI = "https://github.com/lazywinadmin/$ModuleName/blob/master/LICENSE"
$ProjectURI = "https://github.com/lazywinadmin/$ModuleName/"
$RequiredAssemblies = ''
 
# Generate the manifest
New-ModuleManifest `
   -RootModule "$ModuleName.psm1" `
   -Path .\$ModuleName.psd1 `
   -Guid ([guid]::NewGuid()) `
   -RequiredAssemblies $RequiredAssemblies `
   -Author $Author `
   -CompanyName $AuthorCompany `
   -ModuleVersion $ModuleVersion `
   -Description $Description `
   -Copyright $CopyRight `
   -FunctionsToExport * `
   -Tags $Tags `
   -PowerShellVersion $PowerShellVersion `
   -LicenseUri $LicenseURI `
   -ProjectUri $ProjectURI