CISPowerShell.psd1

# Custom Information Services PowerShell Module
# Alex Sparkman
# 20170227
@{
    RootModule        = 'CISPowerShell'
    ModuleVersion     = '1.3'
    GUID              = '466261d7-af55-4f39-b887-75378362a7aa'
    Author            = 'Alex Sparkman'
    CompanyName       = 'Custom Information Services'
    Copyright         = '(c) 2017 Custom Information Services. All rights reserved.'
    Description       = 'CIS PowerShell Module'
    PowerShellVersion = '4.0'
    FunctionsToExport = 'Download-Putty','Get-PublicIP','Set-PowerShellDefaultShell'
    CmdletsToExport   = @()
    VariablesToExport = '*'
    AliasesToExport   = @()
    PrivateData       = @{
        PSData = @{
            Tags         = @('CIS','CustomInformationServices','CustomIS')
            LicenseUri   = 'https://github.com/doomjaw87/CISPowerShell/blob/master/License'
            ProjectUri   = 'https://github.com/doomjaw87/CISPowerShell'
            IconUri      = 'https://github.com/doomjaw87/CISPowerShell/blob/master/CISPowerShell_ico.ico?raw=true'
            ReleaseNotes = 'CISPowerShell
- 20170228 - Added Set-PowerShellDefaultShell function
- 20170227 - Added Download-Putty and Get-PublicIP functions
- 20170227 - Initial commit'

        }
    }
}