PsOmsa.psd1
@{ # Script module or binary module file associated with this manifest. RootModule = 'PsOmsa.psm1' # Version number of this module. ModuleVersion = '0.1.0' # ID used to uniquely identify this module GUID = '03539424-26c8-4e92-8ae2-12098f78fc31' # Author of this module Author = 'alx9r. Published to the Powershell Gallery by Justin Grote @JustinWGrote' # Company or vendor of this module CompanyName = 'Unknown' # Copyright statement for this module Copyright = 'Copyright (c) 2015, licensed under Apache 2.0 License.' # Description of the functionality provided by this module Description = 'PowerShell bindings for Dell Open Management Server Administration CLI' # Minimum version of the Windows PowerShell engine required by this module PowerShellVersion = '2.0' # Functions to export from this module FunctionsToExport = @( 'ConvertFrom-OmDateTime', 'ConvertFrom-OmreportStream', 'ConvertFrom-OmreportSystemVersion', 'ConvertFrom-OmScsiSenseDescription', 'ConvertTo-OmSeverity', 'Test-OmDateTime', 'Test-OmScsiSenseDescription' ) # # Cmdlets to export from this module # CmdletsToExport = '*' # Variables to export from this module #VariablesToExport = '*' # # Aliases to export from this module AliasesToExport = '*' # List of all modules packaged with this module # ModuleList = @() # List of all files packaged with this module # FileList = @() # HelpInfo URI of this module # HelpInfoURI = '' # Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix. # DefaultCommandPrefix = '' PrivateData = @{ Tags = @( 'Monitoring', 'Reporting', 'Dell', 'OpenManage', 'OpenManage Server Administration', 'CLI' ) ProjectURI = 'https://github.com/alx9r/PsOmsa' License = 'MIT' } } |