AsBuiltReport.Microsoft.Intune.psd1

#
# Module manifest for AsBuiltReport.Microsoft.Intune
#
@{
    # Script module or binary module file associated with this manifest.
    RootModule           = 'AsBuiltReport.Microsoft.Intune.psm1'

    # Version number of this module.
    ModuleVersion        = '0.2.1'

    # Supported PSEditions
    CompatiblePSEditions = @('Desktop', 'Core')

    # ID used to uniquely identify this module
    GUID                 = 'c9d2e3f4-7b8a-9c0d-1e2f-3a4b5c6d7e8f'

    # Author of this module
    Author               = 'Pai Wei Sing'

    # Company or vendor of this module
    CompanyName          = 'Logicalis Australia'

    # Copyright statement for this module
    Copyright            = '(c) 2026 Pai Wei Sing. All rights reserved.'

    # Description of the functionality provided by this module
    Description          = 'An AsBuiltReport module used to document Microsoft Intune (Endpoint Management) configuration including device compliance policies, configuration profiles, app management, enrollment restrictions, and security baselines.'

    # Minimum version of the PowerShell engine required by this module
    PowerShellVersion    = '7.0'

    # Modules that must be imported into the global environment prior to importing this module
    # RequiredModules -- these are installed automatically when Install-Module is run
    RequiredModules      = @(
        @{ ModuleName = 'AsBuiltReport.Core'; ModuleVersion = '1.0.0' }
        @{ ModuleName = 'ImportExcel'; ModuleVersion = '7.0.0' }
    )

    # Functions to export from this module
    FunctionsToExport    = @(
        'Invoke-AsBuiltReport.Microsoft.Intune'
    )

    # Cmdlets to export from this module
    CmdletsToExport      = @()

    # Variables to export from this module
    VariablesToExport    = @()

    # Aliases to export from this module
    AliasesToExport      = @()

    # Private data to pass to the module specified in RootModule
    PrivateData          = @{
        PSData = @{
            # Tags applied to this module for discoverability
            Tags         = @('AsBuiltReport', 'Microsoft', 'Intune', 'EndpointManager', 'MDM', 'MAM', 'Compliance', 'Configuration', 'Documentation', 'Report')

            # A URL to the license for this module
            LicenseUri   = 'https://github.com/AsBuiltReport/AsBuiltReport.Microsoft.Intune/blob/master/LICENSE'

            # A URL to the main website for this project
            ProjectUri   = 'https://github.com/AsBuiltReport/AsBuiltReport.Microsoft.Intune'

            # ReleaseNotes of this module
            ReleaseNotes = 'https://github.com/AsBuiltReport/AsBuiltReport.Microsoft.Intune/blob/master/CHANGELOG.md'
        }
    }
}