DefenderConfigAssessment.psd1

@{
    # Script module or binary module file associated with this manifest.
    RootModule = 'DefenderConfigAssessment.psm1'

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

    # ID used to uniquely identify this module
    GUID = 'e7b7a8b3-24d9-4a59-a2c3-65d4f5aeb0bb'

    # Author of this module
    Author = 'Shaun Hardneck'

    # Company or vendor of this module
    CompanyName = 'Shaun Hardneck'

    # Description of the functionality provided by this module
    Description = 'This module evaluates Microsoft Defender for Endpoint configurations against best practices and exports the results to a CSV file.'

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

    # Name of the Windows PowerShell host required by this module
    PowerShellHostName = ''

    # Minimum version of the Windows PowerShell host required by this module
    PowerShellHostVersion = ''

    # Minimum version of the .NET Framework required by this module
    DotNetFrameworkVersion = ''

    # Modules that must be imported into the global environment prior to importing this module
    RequiredModules = @(
        @{ModuleName="Microsoft.Graph"; ModuleVersion="1.0.0"}
    )

    # Assemblies that must be loaded prior to importing this module
    RequiredAssemblies = @()

    # Functions to export from this module
    FunctionsToExport = @(
        'Connect-Graph',
        'Get-DeviceConfigurationProfiles',
        'Get-DefenderConfiguration',
        'Map-ASRValue',
        'Map-SettingValue',
        'Get-TenantInformation',
        'Evaluate-DefenderConfiguration',
        'Export-Results',
        'Display-Banner',
        'Run-DefenderConfigAssessment'
    )

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

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

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

    # DSC resources to export from this module
    DscResourcesToExport = @()

    # List of all modules packaged with this module
    NestedModules = @()

    # Private data to pass to the module specified in RootModule/ModuleToProcess
    PrivateData = @{

        PSData = @{

            # Tags applied to this module. These help with module discovery in online galleries.
            Tags = @('Defender', 'Endpoint', 'Configuration', 'Assessment', 'Security')

            # A URL to the license for this module.
            LicenseUri = 'https://opensource.org/licenses/MIT'

            # A URL to the main website for this project.
            ProjectUri = 'https://www.thatlazyadmin.com'

            # A URL to an icon representing this module.
            IconUri = ''

            # ReleaseNotes of this module
            ReleaseNotes = 'Initial release of the DefenderConfigAssessment module.'

        } # End of PSData hashtable

    } # End of PrivateData hashtable

    # HelpInfo URI of this module
    HelpInfoUri = 'https://www.thatlazyadmin.com'

    # Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
    DefaultCommandPrefix = ''
}