You can easily uninstall Boot Manager, dragging the app icon to the trash.
OK I tried it. My report.
I installed it in Mojave.
I booted from Mojave to High Sierra, no problem.
Did restart and returned to Mojave, no problem.
Checked your preferences to made sure your program wasn't in legacy BIOS mode. It wasn't.
Tried to Boot to Windows (EFI). Didn't work, returned me to Mojave.
Tried 2nd time to boot to Windows (EFI). Didn't work, returned me to Mojave.
Tried my script to boot to Windows. It worked and booted into Windows.
Returned to Mojave and checked again that your program wasn't in legacy BIOS mode. It wasn't.
Tried 3rd time to boot to Windows. Didn't work, returned me to Mojave.
Tried to drag your program to trash. Finder wouldn't let me, said it was running.
Did option-command-esc to force quit but it wasn't in list of running apps.
Checked last used icon in dock and it indicated it wasn't running.
Checked System Preference to see if it started up automatically at boot. It wasn't listed.
Checked your program preferences and it wasn't checked to start up automatically.
Tried again to drag it to the trash. Finder wouldn't let me, said it was running.
Logged out and back in. Tried to delete. Didn't work, app still running.
Finally, launched your app from the Launchpad. App window finally open on desktop. Then Quit app from menu bar. Then deleted app from Applications menu successfully.
If this helps any, here is the script that I used that did work for my UEFI mode Windows.
# This script solves the problem of the Disk ID assigned to the Win 10 physical disk changing
# from one power-up to another. The Disk ID depends on when it is enumerated during boot.
set Win_devID
to do shell script "diskutil info BOOTCAMP | grep Node"
# this assigns the string "Device Node: /dev/diskXsY" to the Win_devID variable, where X is unpredictable
# BOOTCAMP is the Win 10 volume name
set Win_devID
to (
text -7
thru -2
of Win_devID) & "1"
# This strips everything except "diskXs" and appends a "1" for the EFI location (always "1")
display dialog "Windows 10 EFI Volume was assigned as " & Win_devID buttons {"Cancel", "Boot Win10"}
do shell script "bless -device \"/dev/" & Win_devID & "\" -mount /Volumes/EFI -setBoot -nextonly" password "your_password"
with administrator privileges
tell application "Finder"
to restart