CISPowerShell.psd1

# Custom Information Services PowerShell Module
# Alex Sparkman
# 20170227
@{
    RootModule        = 'CISPowerShell'
    ModuleVersion     = '2.4'
    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 = 'Save-Putty',
                        'Get-PublicIP',
                        'Set-PowerShellDefaultShell',
                        'Get-UpTime',
                        'New-KaseyaShortcut',
                        'New-PortalShortcut',
                        'Enable-RDP',
                        'Open-Kaseya',
                        'Connect-BDR',
                        'Get-DotNetVersion',
                        'Get-PortAssignment'
    HelpInfoURI = 'https://portal.customis.com/x/GgAwAg'
    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
- 20170718 - Get-PortAssignment, get CSV file for port assignments!
- 20170608 - Get-DotNetVersion, retrieve installed .NET versions!
- 20170511 - Connect-BDR, added vault5!
- 20170331 - Connect-BDR, added parameter to connect to Licensing portal
- 20170327 - Connect-BDR, fixed function and added ability to connect to all Vaults specifically
- 20170322 - Connect-BDR, a function to connect to our Replibit appliances without relying on the management console
- 20170313 - Enable-RDP, a function to enable RDP connections to local/remote computers
- 20170309 - Open-Kaseya, because we need a way to open Kaseya from PowerShell
- 20170307 - Changed WindowStyle to minimized for Kaseya/Portal connection functions
- 20170307 - Renamed Download-Putty to Save-Putty
- 20170307 - Added New-PortalShortcut function!
- 20170306 - Added New-KaseyaShortcut function!
- 20170301 - Added Get-Uptime function
- 20170228 - Added Set-PowerShellDefaultShell function
- 20170227 - Added Download-Putty and Get-PublicIP functions
- 20170227 - Initial commit'

        }
    }
}