Routines.psd1

@{
RootModule = 'Routines.psm1'
ModuleVersion = '0.5.2'
# CompatiblePSEditions = @()
GUID = '763e4de1-dac4-40d0-aa63-1593f1f1a75e'
Author = 'DClementDawan'
CompanyName = 'Dawan'
Copyright = '(c) DClementDawan. All rights reserved.'
Description = @'
Common functions for scripts.
 
Test-AdminPrivilege : Test if powershell is launched with administrator privileges
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
Get-IPv4Range : Returns an array of IP providing network and subnet mask
Get-IPv4Info : Returns info about IP
Test-ICMP : Faster ping, ping networks
New-HVClone : Clone an Hyper-V VM
 
https://hedgedoc.dawan.fr/s/upKcNVLcL#
'@

# PowerShellVersion = ''
# PowerShellHostName = ''
# PowerShellHostVersion = ''
# DotNetFrameworkVersion = ''
# CLRVersion = ''
# ProcessorArchitecture = ''
# RequiredModules = @()
# RequiredAssemblies = @()
# ScriptsToProcess = ''
TypesToProcess = 'ICMP.type.ps1xml'
FormatsToProcess = 'ICMP.format.ps1xml'
# NestedModules = @()
FunctionsToExport = @('Test-AdminPrivilege', 'Get-Password','Clear-String','Remove-Diacritics',
    'Read-PopUp','Read-Choice', 'Get-IPv4Range', 'Get-IPv4Info', 'Test-ICMP', 'New-HVClone')
# CmdletsToExport = @()
# VariablesToExport = @()
AliasesToExport = @('gir')
# DscResourcesToExport = @()
# ModuleList = @()
FileList = @('Routines.psd1', 'Routines.psm1', 'README.md', 'ICMP.format.ps1xml', 'ICMP.type.ps1xml')
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 = 'Modules merged ICMP, IPv4Range'
        # ExternalModuleDependencies = ''
    } # End of PSData hashtable
    
} # End of PrivateData hashtable
HelpInfoURI = 'https://hedgedoc.dawan.fr/s/upKcNVLcL#'
# DefaultCommandPrefix = ''
}