WindowsAid.psd1
@{ # # MODUL-INFORMATION # GUID = 'a0937110-6265-4dff-b670-1b319edeebad' Description = 'This modules contain tools to make it easier to use Windows via PowerShell.' ModuleVersion = '1.0' RootModule = 'WindowsAid.psm1' # # AUTHOR # Author = 'Attila Krick' CompanyName = 'ATTILAKRCK.COM' Copyright = '(c) 2024 Attila Krick. All rights reserved.' # # REQUIREMENTS # PowerShellVersion = '5.1' ProcessorArchitecture = 'None' CompatiblePSEditions = @('Desktop') # # PREPARATION # FormatsToProcess = @( ) FunctionsToExport = @( 'Get-BatteryLevel', 'Get-ComProgId', 'Get-DirectorySize', 'Get-IpConfiguration', 'Get-Product', 'Get-ProductKey', 'Get-RemovableFile', 'Get-SpecialFile' ) CmdletsToExport = @() AliasesToExport = @('ipconfig') VariablesToExport = @() FileList = @( 'Public\Get-BatteryLevel.ps1', 'Public\Get-ComProgId.ps1', 'Public\Get-DirectorySize.ps1', 'Public\Get-DirectorySize.Tests.ps1', 'Public\Get-IpConfiguration.ps1', 'Public\Get-Product.ps1', 'Public\Get-ProductKey.ps1', 'Public\Get-RemovableFile.ps1', 'Public\Get-RemovableFile.Tests.ps1', 'Public\Get-SpecialFile.ps1', 'Attila_Krick_Software_Developer.cer', 'WindowsAid.psd1', 'WindowsAid.psm1', 'WindowsAid.Tests.ps1' ) # # POWERSHELL GALLERY DATA # PrivateData = @{ PSData = @{ LicenseUri = 'https://attilakrick.com/datenschutzerklaerung' ProjectUri = 'https://attilakrick.com/powershell/' IconUri = 'https://attilakrick.com/media/AKPT-Logo.png' Tags = @('Attila', 'Krick', 'PSEdition_Desktop', 'Windows', 'Tools') ReleaseNotes = @' Version 1.0: - Initial release '@ } } } |