Exchange-MigrationAssessment.psd1

@{
    RootModule        = 'Exchange-MigrationAssessment.psm1'
    ModuleVersion     = '1.0.0'
    GUID              = '0dda3f42-ba2b-43b7-8a1a-abae6a0d44b2'
    Author            = 'Larry Roberts'
    CompanyName       = 'Independent Consultant'
    Copyright         = '(c) 2026 Larry Roberts. All rights reserved.'
    Description       = 'Exchange to Microsoft 365 migration pre-assessment toolkit. Inventories mailboxes, distribution groups, mail flow rules, and public folders. Identifies migration blockers and generates HTML dashboard reports.'

    PowerShellVersion = '5.1'

    FunctionsToExport = @(
        'Invoke-MigrationAssessment',
        'Get-MailboxInventory',
        'Get-DistributionGroupAudit',
        'Get-MailFlowRuleExport',
        'Get-PublicFolderAnalysis'
    )

    CmdletsToExport   = @()
    VariablesToExport  = @()
    AliasesToExport    = @()

    PrivateData = @{
        PSData = @{
            Tags       = @('Exchange', 'Migration', 'M365', 'Office365', 'Assessment', 'Mailbox')
            LicenseUri = 'https://github.com/larro1991/Exchange-MigrationAssessment/blob/master/LICENSE'
            ProjectUri = 'https://github.com/larro1991/Exchange-MigrationAssessment'
        }
    }
}