HisSmartHome.BulkADUser.psd1
@{ RootModule = 'HisSmartHome.BulkADUser.psm1' ModuleVersion = '1.0.2' GUID = 'b1234567-89ab-4cde-f012-3456789abcde' Author = 'Nathan Bendall' CompanyName = 'HisSmartHome' Description = 'Bulk Active Directory user management tools for HSM.' PowerShellVersion = '5.1' FunctionsToExport = @('Add-BulkUserHSM','Get-BulkTemplateHSM') CmdletsToExport = @() VariablesToExport = @() AliasesToExport = @() PrivateData = @{ PSData = @{ Tags = @('ActiveDirectory','Bulk','UserManagement') LicenseUri = 'https://opensource.org/licenses/MIT' ProjectUri = 'https://hsho.me' ReleaseNotes = @' v1.0.2 - Added: Explicit -Name parameter to fix New-ADUser prompt issue. - Improved: Pager attribute now applied via -OtherAttributes. v1.0.1 - Fixed: Pager compatibility with older AD modules. - Added: WhatIfOnly switch for dry-run support. - Improved: OU validation now skips gracefully. v1.0.0 - Initial release with Add-BulkUserHSM and Get-BulkTemplateHSM functions. '@ } } } |