SMBpulse.psd1

@{
    RootModule           = 'SMBpulse.psm1'
    ModuleVersion        = '0.1.5'
    GUID                 = '03cb1129-e705-49fd-9b59-bb06df921a46'
    Author               = 'Manuel Berfelde'
    CompanyName          = 'MERLIN EDV'
    Copyright            = '(c) Manuel Berfelde. All rights reserved.'
    Description          = 'SMBpulse - Messung und Auswertung des SMB-Durchsatzes auf Windows-Fileservern. Enthaelt Start-SmbPulse, Watch-SmbPulse, Get-SmbPulseReport und Uninstall-SmbPulse.'
    PowerShellVersion    = '5.1'
    FunctionsToExport    = @(
        'Start-SmbPulse',
        'Watch-SmbPulse',
        'Get-SmbPulseReport',
        'Uninstall-SmbPulse'
    )
    CmdletsToExport      = @()
    VariablesToExport    = @()
    AliasesToExport      = @()
    PrivateData = @{
        PSData = @{
            Tags         = @('SMB', 'Performance', 'Monitoring', 'PerfMon', 'Windows', 'Throughput')
            ProjectUri   = 'https://github.com/Merlin-Kommunikationstechnik/SmbPulse'
            ReleaseNotes = ' Release.'
        }
    }
}