PS_HWinfo.psd1
|
@{ RootModule = 'PS_HWinfo.psm1' ModuleVersion = '1.0.3' GUID = 'b7e7e2e2-1e2a-4b7a-9e2a-1e2a4b7a9e2a' Author = 'Jared Heinrichs' CompanyName = 'Jared Heinrichs' Copyright = '(c) 2025 Jared Heinrichs. Licensed under MIT.' Description = 'Displays a professional hardware info dashboard in the terminal, inspired by HWinfo64. Shows CPU, motherboard, BIOS, GPU, monitor, memory, and hard drive info in a compact Format-Table layout.' PowerShellVersion = '5.1' CompatiblePSEditions = @('Desktop', 'Core') FunctionsToExport = @('Start-PSHWinfo') CmdletsToExport = @() VariablesToExport = @() AliasesToExport = @() PrivateData = @{ PSData = @{ Tags = @('hardware', 'dashboard', 'system', 'info', 'terminal', 'HWinfo64') LicenseUri = 'https://opensource.org/licenses/MIT' ProjectUri = 'https://github.com/jaredheinrichs/PS_HWinfo' IconUri = '' ReleaseNotes = 'Initial public release.' } } } |