WiFiAnalyzer.psd1
|
# # Module manifest for module 'WiFiAnalyzer' # Created by: Jesus Ayala - Ayala Solutions # Created on: October 28, 2025 # @{ # Script module or binary module file associated with this manifest. RootModule = 'WiFiAnalyzer.psm1' # Version number of this module. ModuleVersion = '1.1.0' # Supported PSEditions CompatiblePSEditions = @('Desktop', 'Core') # ID used to uniquely identify this module GUID = 'a1b2c3d4-e5f6-7890-abcd-ef1234567890' # Author of this module Author = 'Jesus Ayala - Ayala Solutions' # Company or vendor of this module CompanyName = 'Ayala Solutions' # Copyright statement for this module Copyright = '(c) 2025 Jesus Ayala. All rights reserved.' # Description of the functionality provided by this module Description = 'A comprehensive WiFi network analyzer with GUI interface for scanning, analyzing, and reporting on wireless networks. Features include signal strength analysis, channel congestion detection, security assessment, and detailed network reporting.' # Minimum version of the PowerShell engine required by this module PowerShellVersion = '5.1' # 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 = @('System.Windows.Forms', 'System.Drawing') # Functions to export from this module FunctionsToExport = @( 'Start-WiFiAnalyzer', 'Get-WiFiScan', 'Get-MACAddress', 'Get-ConnectedSSID', 'Get-ComputerInfoExtras', 'Analyze-ChannelCongestion', 'Recommend-BestChannel', 'Export-WiFiReport', 'Show-WiFiAnalyzerGUI' ) # Cmdlets to export from this module CmdletsToExport = @() # Variables to export from this module VariablesToExport = @() # Aliases to export from this module AliasesToExport = @( 'WiFi-Analyzer', 'Scan-WiFi', 'Get-WiFiNetworks' ) # Private data to pass to the module specified in RootModule/ModuleToProcess PrivateData = @{ PSData = @{ # Tags applied to this module for searchability Tags = @('WiFi', 'Network', 'Analyzer', 'Wireless', 'Security', 'Channel', 'Scanner', 'GUI') # A URL to the license for this module. LicenseUri = 'https://github.com/hov172/PS_WI-FI_Analyzer' # A URL to the main website for this project. ProjectUri = 'https://github.com/hov172/PS_WI-FI_Analyzer' # Release notes ReleaseNotes = @' Version 1.0.4 - Bug fixes and performance improvements Version 1.0.0 - Initial release - WiFi network scanning and analysis - GUI interface with color-coded results - Channel congestion analysis and recommendations - Signal strength monitoring - Security type identification - Network speed testing - Detailed HTML/CSV report generation - Guided setup and quick start modes - Preference saving for repeat use '@ } } } |