AntivirusProductsDetailedStatus.psd1

<#
    ===========================================================================
     Created on: 7.4.2023. 14:49
     Created by: chixus
     Organization: CHXOFT
     Filename: AntivirusProductsDetailedStatus.psd1
     -------------------------------------------------------------------------
     Module Manifest
    -------------------------------------------------------------------------
     Module Name: AntivirusProductsDetailedStatus
    ===========================================================================
#>

@{
    RootModule = 'AntivirusProductsDetailedStatus.psm1'
    ModuleVersion = '1.0.0.0'
    GUID = '3e3ece1a-be65-4b2c-b230-14fd9041c04c'
    Author = 'chixus'
    CompanyName = 'CHXOFT'
    Copyright = '(c) 2023. All rights reserved.'
    Description = 'Retrieve the condition details of any antivirus installed or similar product on the operating system.'
    # CompatiblePSEditions = @('Core', 'Desktop')
    PowerShellVersion = '5.1'
    PowerShellHostName = ''
    PowerShellHostVersion = ''
    DotNetFrameworkVersion = '4.5.2'
    # CLRVersion = ''
    ProcessorArchitecture = 'None'
    RequiredModules = @()
    RequiredAssemblies = @()
    ScriptsToProcess = @()
    TypesToProcess = @()
    FormatsToProcess = @()
    NestedModules = @()
    FunctionsToExport = @(
        'Get-AntiVirusProduct',
        'Get-RealTimeProtection',
        'Get-WindowsDefender'
    )
    CmdletsToExport = '*' 
    VariablesToExport = '*'
    AliasesToExport = '*' #For performance, list alias explicitly
    #DSCResourcesToExport = ''
    ModuleList = @()
    FileList = @()
    PrivateData = @{
        PSData = @{
            Tags = @(
                'Antivirus',
                'RealtimeProtection',
                'WindowsDefender'
            )
            # LicenseUri = ''
            # ProjectUri = ''
            # IconUri = ''
            ReleaseNotes = 'First release.'
        }
    }
}