ActivateAll.psd1

@{
    RootModule             = 'ActivateAll.psm1'
    ModuleVersion         = '1.0.0.2'
    GUID                 = '40658e1a-aaf3-43f3-b74b-9e327eeb046e'
    Author                 = 'chixus'
    CompanyName             = 'CHXOFT'
    Copyright             = '© 2025. All rights reserved.'
    Description             = 'Activate Windows and Office permanently, installs Office®Tool for deploying Office, enables dotNET 3.5 package.'
    CompatiblePSEditions = @(
        'Core',
        'Desktop'
    )
    PowerShellVersion    = '5.1'
    PowerShellHostName   = 'ConsoleHost'
    PowerShellHostVersion = '5.1.2'
    DotNetFrameworkVersion = '4.8'
    CLRVersion             = '4.0'
    ProcessorArchitecture = 'None'
    RequiredModules           = @(
        'AntivirusProductsDetailedStatus'
    )
    RequiredAssemblies   = @()
    ScriptsToProcess     = @()
    TypesToProcess         = @()
    FormatsToProcess     = @()
    NestedModules         = @()
    FunctionsToExport    = @(
        'Install-OfficeRTool',
        'Start-MAS',
        'Install-dotNET3.5'
    )
    CmdletsToExport           = @(
        'Install-OfficeRTool',
        'Start-MAS',
        'Install-dotNET3.5'
    )
    VariablesToExport    = '*'
    AliasesToExport         = '*'
    # DSCResourcesToExport = ''
    ModuleList             = @()
    FileList             = @()
    PrivateData             = @{
        PSData = @{
            Tags         = @(
                'Activation',
                'MicrosoftOffice',
                'Windows',
                'dotNET')
            # LicenseUri = ''
            # ProjectUri = ''
            IconUri = 'https://s.gravatar.com/avatar/0ffb90d5017656ab55ac286c80f900a3?s=80'
            ReleaseNotes = 'New function added.'
        }
    }
}