Analyth.PowerShell.psd1

# Module manifest for module 'Analyth.PowerShell'

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

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

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

    # ID used to uniquely identify this module.
    GUID = '1c8e2b34-01f8-4e8d-8824-c1427ea5e528'

    # Author of this module.
    Author = 'Didier Folly'

    # Company or vendor of this module.
    CompanyName = 'Analyth'

    # Copyright statement for this module.
    Copyright = '(c) Didier Folly. All rights reserved.'

    # Description of the functionality provided by this module.
    Description = 'This module contains functions to manage Windows Servers and Windows Clients.'

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

    # Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
    DotNetFrameworkVersion = '4.5'

    # Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
    ClrVersion = '4.0'

    # Modules that must be imported into the global environment prior to importing this module.
    RequiredModules = @('PSWindowsUpdate')

    # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export.
    FunctionsToExport = @(
        'Clear-Logs',
        'Invoke-CleanMgr',
        'Update-PowerShell',
        'Start-WindowsUpdate',
        'Start-MicrosoftStoreUpdate',
        'Uninstall-AllChocolateyPackages',
        'Install-VirtualBoxGuestAdditions'
    )

    # Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export.
    CmdletsToExport = @('*')

    # Variables to export from this module
    VariablesToExport = '*'

    # Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export.
    AliasesToExport = @('*')

    # List of all files packaged with this module
    FileList  = @(
        'Analyth.PowerShell.psd1',
        'Analyth.PowerShell.psm1',
        'README.md'
    )

    # Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell.
    PrivateData = @{

        PSData = @{

            # Tags applied to this module. These help with module discovery in online galleries.
            Tags = @(
                'Analyth',
                'EventViewer',
                'Log',
                'Cleanmgr',
                'WindowsUpdate',
                'MicrosoftStore',
                'VirtualBoxGuestAdditions'
            )

            # A URL to the license for this module.
            LicenseUri = 'https://github.com/didierfolly/Analyth.PowerShell/blob/main/LICENSE'

            # A URL to the main website for this project.
            ProjectUri = 'https://github.com/didierfolly/Analyth.PowerShell '

            # Release notes of this module.
            ReleaseNotes = 'v0.0.15 - 19/01/2022 - Fix a bug with the "Install-VirtualBoxGuestAdditions" cmdlet.
Functions available: Clear-Logs, Invoke-CleanMgr, Update-PowerShell, Start-WindowsUpdate, Start-MicrosoftStoreUpdate, Uninstall-AllChocolateyPackages, Install-VirtualBoxGuestAdditions'

        }
    }
}