Test-PowerPing.psd1
# # Module manifest for module 'Test-PowerPing' # # Generated by: Hunter Hirsch # # Generated on: 9/16/2023 # @{ # Script module or binary module file associated with this manifest. RootModule = 'Test-PowerPing.psm1' # Version number of this module. ModuleVersion = '1.3.1.0' # Supported PSEditions # CompatiblePSEditions = @() # ID used to uniquely identify this module GUID = '49558a14-ccef-4b85-b07d-23702aa51e7d' # Author of this module Author = 'Hunter Hirsch' # Company or vendor of this module CompanyName = '' # Copyright statement for this module Copyright = '(c) 2023 Hunter Hirsch. All rights reserved.' # Description of the functionality provided by this module Description = 'Sends single pings (ICMP) asynchronously to devices to determine network accessibility. Returns simple ping results (Status,IPv4Address,DeviceName,Time) with status codes. Additional features: Address list generation, CIDR calculator, Range to CIDR conversion.' # Minimum version of the Windows PowerShell engine required by this module PowerShellVersion = '5.1' # Name of the Windows PowerShell host required by this module # PowerShellHostName = '' # Minimum version of the Windows PowerShell host required by this module # PowerShellHostVersion = '' # Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only. DotNetFrameworkVersion = '4.5' # Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only. # CLRVersion = '' # Processor architecture (None, X86, Amd64) required by this module # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module # RequiredModules = @() # Assemblies that must be loaded prior to importing this module # RequiredAssemblies = @() # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() # Type files (.ps1xml) to be loaded when importing this module # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module FormatsToProcess = @('PowerPing.Format.ps1xml') # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess NestedModules = 'Get-PowerIPRange.ps1','Get-PowerIPCIDR.ps1','Get-PowerIPSite.ps1','Get-PowerIP2CIDR.ps1' # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = "Test-PowerPing" # Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export. CmdletsToExport = @() # Variables to export from this module VariablesToExport = '*' # Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export. AliasesToExport = @() # DSC resources to export from this module # DscResourcesToExport = @() # List of all modules packaged with this module # ModuleList = @() # List of all files packaged with this module FileList = @('Test-PowerPing.psm1','Test-PowerPing.psd1','Get-PowerIPRange.ps1','Get-PowerIPCIDR.ps1','Get-PowerIPSite.ps1','Get-PowerIP2CIDR.ps1','PowerPing.Format.ps1xml') # Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell. PrivateData = @{ PSData = @{ # Tags applied to this module. These help with module discovery in online galleries. Tags = @('Ping','IPRange','IPv4Ping','IPv4','AddressRange','Utilities','Powershell','Network','Scan','Asynchronous','IPScan','RangeScan','CIDR','CIDRCalculator','Calculator','SubnetCalculator','RangetoCIDR') # A URL to the license for this module. LicenseUri = 'https://opensource.org/license/mit' # A URL to the main website for this project. ProjectUri = 'https://www.powershellgallery.com/packages/Test-PowerPing' # A URL to an icon representing this module. # IconUri = '' # ReleaseNotes of this module ReleaseNotes = ' 1.3.1.0 - Added Range to CIDR conversion - "ToCidr" parameter (Example 8) + Can convert range to CIDR + Can split range or provided CIDR to subnet blocks + FullCIDR switch to provide full conversion list with start/end ip splitting Added pipeline support (Example 9) + Pipeline support added for "Targets" parameter set + CIDR calculator ("Cidcalc") & CIDR conversion ("ToCidr") parameters supported Misc + removed character limits for Target parameter + Updated Help/Examples for new functionality **Last planned update** + Will work to address issues when discovered/reported 1.3.0.1 - Updated Output formatting using classes/format.ps1xml + Fixes issues with response filtering + Minimum Version updated to "5.1" for class support 1.3.0.0 - All multithreading/runspace functionality removed. + Updated address generation method using GetAddressBytes() Filtering fixes / updates: + Fixed issues with IPFilter parameter validation + Added filter support for individual CIDR blocks + Added filter support for saved site lists - Removed single octet filtering functionality Separated site management into function (Set-PowerIPSite) + ** ANY SAVED Site List(s) Will Need to be Recreated ** + Consolidated Site lists to single variable, RangeList Removed BitMask minimum restrictions + CIDR/Netmask parameter sets no longer capped Updated import/target parameter validation + Excluded characters: "<>^`{|} Updated Help/Examples to reflect new functionality 1.2.0.1 - Added License. Added help links for IPStatus and Socket status codes 1.2.0.0 - Removed Runspaces for ping functionality + Replaced with .net collection queue management - Updated device filtering to include pattern matching + Parameter renamed "DevName" to avoid conflict with $env:ComputerName - Added full CIDR Support (0-7) for CidCalc 1.0.1.0 - added links, psgallery info 1.0 - Original - Ping (runspace method), Address List Generation (string method), CIDR (Subnet Min 8 for Calc/Address list generation). ** TBD ** - Cleanup/Refactor ' } # End of PSData hashtable } # End of PrivateData hashtable # HelpInfo URI of this module # HelpInfoURI = '' # Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix. # DefaultCommandPrefix = '' } |