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.5'

    # 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 = 'Comprehensive WiFi analyzer with GUI interface for network scanning, channel congestion analysis, signal strength monitoring, and security assessment. Features guided setup for beginners and quick start for experienced users, with detailed HTML/CSV report generation and network speed testing.'

    # 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',
        'Start-WiFiAnalyzerDirect',
        'Get-WiFiScan',
        'Get-MACAddress',
        'Get-ConnectedSSID',
        'Get-ComputerInfoExtras',
        'Test-ChannelCongestion',
        'Get-BestChannel',
        'Export-WiFiReport',
        'Show-MainWiFiAnalyzerForm'
    )

    # Cmdlets to export from this module
    CmdletsToExport = @()

    # Variables to export from this module
    VariablesToExport = @()

    # Aliases to export from this module
    AliasesToExport = @(
        'Show-WiFiAnalyzerGUI',
        '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.1.5
- Fixed display issues with special characters in GUI
- Enhanced system information display
- Improved error handling and stability

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
'@

        }
    }
}