Backup-BitlockerKeys.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 |
# # Module manifest for module 'module' # # Generated by: pawel.wujczyk # # Generated on: 1/2/2018 4:36:56 PM # @{ # Script module or binary module file associated with this manifest. RootModule = 'Backup-BitlockerKeys.psm1' # Version number of this module. ModuleVersion = '0.0.5' # ID used to uniquely identify this module GUID = 'b50c3daf-4a3c-44ac-8f5f-e2f28f92b419' # Author of this module Author = 'Pawel Wujczyk' # Description of the functionality provided by this module Description = 'It gets all drives which are bitlocker protected and saves recovery keys in some localization' # Modules that must be imported into the global environment prior to importing this module RequiredModules = @("Get-DateName","Get-OneDriveDirectory") # Functions to export from this module FunctionsToExport = 'Backup-BitlockerKeys' # HelpInfo URI of this module HelpInfoURI = 'http://www.productivitytools.tech/backup-bitlockerkeys/' PrivateData = @{ PSData = @{ # Tags applied to this module. These help with module discovery in online galleries. Tags = @('Backup','Bitlocker', "Recovery", "Key") # A URL to the main website for this project. ProjectUri = 'http://www.productivitytools.tech/backup-bitlockerkeys/' } # End of PSData hashtable } # End of PrivateData hashtable } |