Rename GUI app to Managed Bootstrap Install and fix missing icon - #14
Open
rodchristiansen wants to merge 1 commit into
Open
Rename GUI app to Managed Bootstrap Install and fix missing icon#14rodchristiansen wants to merge 1 commit into
rodchristiansen wants to merge 1 commit into
Conversation
The WinUI app builds as 'Managed Bootstrap Install.exe' (still installed to Program Files\BootstrapMate), matching Cimian's Managed Software Center pattern, for uniformity across the managed-client tooling. The CLI stays managedbootstrapinstall.exe. ApplicationIcon was never set, so the exe, Start Menu shortcut and Add/Remove Programs entry all showed the generic .NET icon; the csproj now embeds Assets\BootstrapMate.ico and the MSI sets ARPPRODUCTICON. Registry keys, the Self-Heal task name, UpgradeCode and the BootstrapMate-<arch>-<version> artifact names are unchanged. AB#4264
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The WinUI 3 app becomes 'Managed Bootstrap Install.exe' with display name 'Managed Bootstrap Install', still installed to C:\Program Files\BootstrapMate — uniform with Managed Software Center (Cimian/Munki) and Managed Reports Runner (ReportMate). The macOS counterpart PR renames BootstrapMate.app the same way.
Also fixes the missing app icon: no ApplicationIcon was set anywhere, so Explorer/taskbar/Start Menu/ARP showed the generic .NET icon (the icon only appeared after window creation via AppWindow.SetIcon). The csproj now embeds Assets\BootstrapMate.ico, and the MSI gains an Icon + ARPPRODUCTICON so Add/Remove Programs shows it too.
Unchanged on purpose: CLI managedbootstrapinstall.exe and all its strings, registry keys (SOFTWARE\BootstrapMate, SOFTWARE\Cimian\BootstrapMate), UpgradeCode, 'BootstrapMate Self-Heal' task name, MSI/.intunewin artifact filenames (BootstrapMate-arch-version.*) the Cimian pipeline globs, makepri PRI index name, ADMX/ADML policy files, install dir.
Note: the exe rename churns the harvested MSI component GUID for that file — fine under MajorUpgrade; the old exe is removed on upgrade.
AB#4264