HisSmartHome.BulkADUser.psd1

@{
    RootModule        = 'HisSmartHome.BulkADUser.psm1'
    ModuleVersion     = '1.0.1'
    GUID              = 'b1234567-89ab-4cde-f012-3456789abcde'
    Author            = 'Nathan Bendall'
    CompanyName       = 'HisSmartHome'
    Description       = 'Bulk Active Directory user management tools.'
    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.1
- Fixed: Pager attribute now applied via -OtherAttributes for compatibility.
- Improved: OU validation now skips users gracefully instead of throwing.
- Added: WhatIfOnly parameter for safe dry-run testing.
 
v1.0.0
- Initial release with Add-BulkUserHSM and Get-BulkTemplateHSM functions.
'@

        }
    }
}