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

    # 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, security assessment, and full command-line diagnostics. Features guided setup for beginners, quick start for experienced users, and a single-command option (Invoke-WiFiAnalyzerAll) for automated reporting. Includes detailed HTML/CSV report generation and network speed testing.\n\nCommand Parameters & Switches:\n- Export-WiFiReport: -networks, -OutputFormat, -OutputPath, -SkipReportInfo\n- Invoke-WiFiAnalyzerAll: -OutputFormat, -OutputPath, -SkipReportInfo\n- All other functions use standard PowerShell parameter conventions.\n- See README.md for full details and examples.'

    # 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 = @(
        'Invoke-WiFiAnalyzer',
        'Invoke-WiFiAnalyzerDirect',
        'Invoke-GuidedSetup',
        'Invoke-QuickStart',
        'Show-MainWiFiAnalyzerForm',
        'Show-StartupChoiceDialog',
        'Show-WiFiReportInfoForm',
        'Get-WiFiScan',
        'Get-MACAddress',
        'Get-ConnectedSSID',
        'Get-ComputerInfoExtras',
        'Test-ChannelCongestion',
        'Get-BestChannel',
        'Export-WiFiReport',
        'Invoke-WiFiAnalyzerAll'
    )

    # 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.13
- Manifest and documentation now list all approved verbs and new options
- Description field includes command parameters and switches for user reference
- README and usage guide updated for all new features and switches
- Fixed manifest syntax for PowerShell compatibility

Version 1.1.6
- Added Invoke-WiFiAnalyzerAll: Run all diagnostics and export report with one command (no GUI)
- All major functions now available for automation and scripting

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

        }
    }
}