Routines.psd1
@{ RootModule = 'Routines.psm1' ModuleVersion = '0.4.2' # CompatiblePSEditions = @() GUID = '763e4de1-dac4-40d0-aa63-1593f1f1a75e' Author = 'DClementDawan' CompanyName = 'Dawan' Copyright = '(c) DClementDawan. All rights reserved.' Description = @' Common functions for scripts. === Get-Password : Passwords generator Clear-String : Remove special characters designed to create login Remove-Diacritics : Remove diacritic symbols Read-PopUp : Display a customizable popup Read-Choice : Display a native PowerShell prompt https://hedgedoc.dawan.fr/s/upKcNVLcL# '@ # PowerShellVersion = '' # PowerShellHostName = '' # PowerShellHostVersion = '' # DotNetFrameworkVersion = '' # CLRVersion = '' # ProcessorArchitecture = '' # RequiredModules = @() # RequiredAssemblies = @() # ScriptsToProcess = '' # TypesToProcess = '' # FormatsToProcess = '' # NestedModules = @() FunctionsToExport = @('Get-Password','Clear-String','Remove-Diacritics','Read-PopUp','Read-Choice') # CmdletsToExport = @() # VariablesToExport = @() # AliasesToExport = @() # DscResourcesToExport = @() # ModuleList = @() FileList = 'Routines.psd1', 'Routines.psm1', 'README.md' PrivateData = @{ PSData = @{ Tags = 'Common', 'Routine', 'Prompt', 'Popup', 'Module' LicenseUri = 'http://www.wtfpl.net/' ProjectUri = 'https://www.dawan.fr' IconUri = 'https://www.dawan.fr/build/images/dawan-logo.png' ReleaseNotes = 'Bug fix' # ExternalModuleDependencies = '' } # End of PSData hashtable } # End of PrivateData hashtable HelpInfoURI = 'https://hedgedoc.dawan.fr/s/upKcNVLcL#' # DefaultCommandPrefix = '' } |