Skip to content

Commit ea556b6

Browse files
committed
Emergency Bugfix: Show-IntuneWinAppUtilGui is now back
- Delisted 1.0.4 from PowerShell Gallery and added again Show-IntuneWinAppUtilGui to available commands.
1 parent 8f62767 commit ea556b6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

IntuneWinAppUtilGUI.psd1

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@{
22
RootModule = 'IntuneWinAppUtilGUI.psm1'
3-
ModuleVersion = '1.0.4'
3+
ModuleVersion = '1.0.5'
44
GUID = '7db79126-1b57-48d2-970a-4795692dfcfc'
55
Author = 'Giovanni Solone'
66
Description = 'GUI wrapper for IntuneWinAppUtil.exe with config file support and WPF interface.'
@@ -9,7 +9,7 @@
99
PowerShellVersion = '5.1'
1010
CompatiblePSEditions = @('Desktop', 'Core')
1111
RequiredAssemblies = @()
12-
FunctionsToExport = @()
12+
FunctionsToExport = @('Show-IntuneWinAppUtilGui')
1313
CmdletsToExport = @()
1414
VariablesToExport = @()
1515
AliasesToExport = @()
@@ -21,6 +21,7 @@
2121
LicenseUri = 'https://opensource.org/licenses/MIT'
2222
IconUri = 'https://raw.githubusercontent.com/gioxx/IntuneWinAppUtilGUI/main/Assets/icon.png'
2323
ReleaseNotes = @'
24+
- Bugfix: Delisted 1.0.4 from PowerShell Gallery and added again Show-IntuneWinAppUtilGui to available commands.
2425
- Bugfix: Removed any reference to ZIP uploads as setup files.
2526
- Bugfix: Fixed PS 5.1 incompatibility in relative-path resolution ([System.IO.Path]::GetRelativePath is PS 7+).
2627
- Improved: Code cleanup, removed redundant GitHub download logic; refactoring.

IntuneWinAppUtilGUI.psm1

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,4 @@ if (Test-Path $publicDir) {
3333
}
3434

3535
# Export only the intended public functions
36-
# (Add more names here as you create additional public commands)
3736
Export-ModuleMember -Function 'Show-IntuneWinAppUtilGui'

0 commit comments

Comments
 (0)