MiniSystemInfo.psd1
@{ RootModule = 'MiniSystemInfo.psm1' ModuleVersion = '1.0.0' GUID = 'd3b331e0-918f-4f65-8f0f-7e767cdf120f' Author = 'Your Name' CompanyName = 'Your Company' Copyright = '(c) 2024 Your Name. All rights reserved.' Description = 'A module to get system information' FunctionsToExport = @( 'Get-SystemUptime', 'Get-CurrentUserInfo' ) CmdletsToExport = @() AliasesToExport = @() VariablesToExport = @() PrivateData = @{ PSData = @{ Tags = @('System', 'Information', 'Utility') LicenseUri = 'https://opensource.org/licenses/MIT' ProjectUri = 'https://github.com/yourname/MiniSystemInfo' IconUri = 'https://example.com/icon.png' ReleaseNotes = 'Initial release' } } } |