ProductivityTools.PSGetDateName.psd1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 |
# # Module manifest for module 'module' # # Generated by: pawel.wujczyk # # Generated on: 11/29/2017 6:24:52 PM # @{ # Script module or binary module file associated with this manifest. RootModule = 'ProductivityTools.PSGetDateName.psm1' # Version number of this module. ModuleVersion = '1.0.3' # ID used to uniquely identify this module GUID = '0c963bef-16f5-4529-aed2-baa53e8c536e' # Author of this module Author = 'Pawel Wujczyk' # Description of the functionality provided by this module Description = 'It returns string value in the format yyyy.MM.dd.hh.mm.ss. For example 2017.12.02.08.56.16.' # Functions to export from this module FunctionsToExport = 'Get-DateName' # Cmdlets to export from this module #CmdletsToExport = '*' # HelpInfo URI of this module HelpInfoURI = 'http://www.productivitytools.tech/get-datename/' PrivateData = @{ PSData = @{ # Tags applied to this module. These help with module discovery in online galleries. Tags = @('Date','Name','FileName','DirectoryName','Backup') # A URL to the main website for this project. ProjectUri = 'http://www.productivitytools.tech/Get-DateName/' } # End of PSData hashtable } # End of PrivateData hashtable } |