RepairWindows.psd1

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

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

    # ID used to uniquely identify this module
    GUID = 'b5a0539d-1a1f-4e12-b84f-dbe09b4160b7'

    # Author of this module
    Author = 'Jeff Hollis'

    # Company or vendor of this module
    CompanyName = 'Self'

    # Copyright statement for this module
    Copyright = '(c) 2024 Jeff Hollis. All rights reserved.'

    # Description of the functionality provided by this module
    Description = 'This module runs multiple repair commands to fix Windows errors and corruption.'

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

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

    # Functions to export from this module
    FunctionsToExport = @('RepairWin')

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

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

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

    # List of all files packaged with this module
    FileList = @('RepairWindows.psm1')

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

        PSData = @{

            # Tags applied to this module
            Tags = @('Repair', 'Windows', 'SFC', 'DISM', 'AppxPackage')

            # 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://github.com/slyfox1186/RepairWindows'

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

            # ReleaseNotes of this module
            ReleaseNotes = 'Updated to include a single function for repair operations.'
        }
    }
}