IntuneWinAppUtilGUI.psd1
|
@{ RootModule = 'IntuneWinAppUtilGUI.psm1' ModuleVersion = '1.0.7' GUID = '7db79126-1b57-48d2-970a-4795692dfcfc' Author = 'Giovanni Solone' Description = 'GUI wrapper for IntuneWinAppUtil.exe with config file support and WPF interface.' # Minimum required PowerShell (PS 5.1 works; better with PS 7+) PowerShellVersion = '5.1' CompatiblePSEditions = @('Desktop', 'Core') RequiredAssemblies = @() FunctionsToExport = @('Show-IntuneWinAppUtilGUI') CmdletsToExport = @() VariablesToExport = @() AliasesToExport = @() PrivateData = @{ PSData = @{ Tags = @('Intune', 'Win32', 'GUI', 'packaging', 'IntuneWinAppUtil', 'Microsoft', 'PowerShell', 'PSADT', 'AppDeployToolkit') ProjectUri = 'https://github.com/gioxx/IntuneWinAppUtilGUI' LicenseUri = 'https://opensource.org/licenses/MIT' IconUri = 'https://raw.githubusercontent.com/gioxx/IntuneWinAppUtilGUI/main/Assets/icon.png' ReleaseNotes = @' - Improved: Live Source/Output path length indicators. - Improved: On Run, warns if the longest file path under Source exceeds Windows limits, showing the longest path found. - Improved: Added UI note clarifying that Source path length is indicative and final check runs at packaging time. - Improved: Optional update check against PowerShell Gallery with UI banner. - Improved: Added -ShowVersion / -ForceUpdateBanner switches for update-banner testing. - Improved: Consolidated private helpers under IWAPG-Hlp-* naming. '@ } } } |