JBOADS.psd1

<#
    File: JBOADS.psd1
    Author: Casper Stekelenburg
    Publisher: Casper Stekelenburg
    Copyright: � 2019 Casper Stekelenburg. All rights reserved.
    Usage: To load this module in PowerShell: Import-Module -Name JBOADS
    Notes: The software is provided "as is", without warranty of any kind, express or implied, including
                but not limited to the warranties of merchantability, fitness for a particular purpose and
                noninfringement. In no event shall the authors or copyright holders be liable for any claim,
                damages or other liability, whether in an action of contract, tort or otherwise, arising from,
                out of or in connection with the software or the use or other dealings in the software.
#>


@{

    # Script module or binary module file associated with this manifest.
    RootModule             = 'JBOADS.psm1'

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

    # Supported PSEditions
    # CompatiblePSEditions = @('Desktop')

    # ID used to uniquely identify this module
    GUID                   = '11a86b1d-6e8e-4ead-963f-1e8bfe66a4c4'

    # Author of this module
    Author                 = 'Casper Stekelenburg'

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

    # Copyright statement for this module
    Copyright              = '� 2019 Casper Stekelenburg. All rights reserved.'

    # Description of the functionality provided by this module
    Description            = 'Just a Bunch of ActiveDirectory Scripts'

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

    # 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 Microsoft .NET Framework required by this module
    DotNetFrameworkVersion = '2.0'

    # Minimum version of the common language runtime (CLR) required by this module
    CLRVersion             = '2.0.50727'

    # Processor architecture (None, X86, Amd64) required by this module
    ProcessorArchitecture  = 'None'

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

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

    # Script files (.ps1) that are run in the caller's environment prior to importing this module.
    #ScriptsToProcess = @('Classes\Classes.ps1')

    # Type files (.ps1xml) to be loaded when importing this module
    #TypesToProcess = @('JBOADS.Types.ps1xml')

    # Format files (.ps1xml) to be loaded when importing this module
    #FormatsToProcess = @('JBOADS.Format.ps1xml')

    # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
    NestedModules          = @()

    # Functions to export from this module
    FunctionsToExport      = @('Get-HomeDirectory', 'Edit-UPN', 'Find-DisabledAccount', 'Find-LockedAccount', 'Get-AdminsAfterChange', 'Get-AdminsBeforeChange', 'Get-DomainAndForestMode', 'Get-ExpiringAccount', 'Get-InactiveUser',
        'Get-LastLogon', 'Get-NonExpiringPassword', 'Get-LastCreated', 'Import-DNSFromCSV', 'Reset-Password', 'Search-RemovedDC')

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

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

    # Aliases to export from this module
    AliasesToExport        = @('Show-HomeDirectory', 'Update-UPN', 'Get-DisabledAccount', 'Get-LockedAccount', 'Find-AdminsAfterChange', 'Find-AdminsBeforeChange', 'Show-DomainAndForestMode', 'Find-ExpiringAccount', 'Find-InactiveUser',
        'Find-LastLogon', 'Find-NonExpiringPassword', 'Show-LastCreated', 'Get-DNSFromCSV', 'Change-Password', 'Find-RemovedDC', 'Check-RemovedDCs')

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

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

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

    # 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         = 'ActiveDirectory'

            # Releaselevel
            #Prerelease = '-alpha' # '-alpha' '-beta' '-rc1'

            # A URL to the license for this module.
            # LicenseUri = ''

            # A URL to the main website for this project.
            # ProjectUri = 'https://dev.azure.com/cstekelenburg/JBOADS/_git/JBOADS'

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

            # ReleaseNotes of this module
            ReleaseNotes = 'Removed authtype parameter from Find-LockedAccount'

            # External dependent modules of this module
            # ExternalModuleDependencies = ''

        } # End of PSData hashtable

    } # End of PrivateData hashtable

    # HelpInfo URI of this module
    # HelpInfoURI = 'https://dev.azure.com/cstekelenburg/JBOADS/_git/JBOADS'

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

}