PSServerCollectionTools.psd1



@{

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

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

# ID used to uniquely identify this module
GUID = '15b9db6f-8492-4da8-b38f-b41abbe9732e'

# Author of this module
Author = 'Dave Coate'

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

# Copyright statement for this module
Copyright = '(c) 2021 Dave Coate. All rights reserved.'

# Description of the functionality provided by this module
Description = 'Demo Server Collection Tools Module and Pipeline'

# Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export.
FunctionsToExport = @('Get-MachineModelOnPipeline','Get-OSCaptionOnPipeline','Get-ProcInfoOnPipeline','Get-ServerCollection','Get-ServerObjectCollection','Get-TimeZoneOnPipeline','Get-TotalMemoryOnPipeline','Get-VolumeInfoOnPipeline','Test-ServerConnectionOnPipeline')

# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export.
CmdletsToExport = @()

# Variables to export from this module
VariablesToExport = '*'

# Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export.
AliasesToExport = @()

HelpInfoURI = ''

# 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 = @{

    } # End of PSData hashtable

} # End of PrivateData hashtable


}