Index: /trunk/src/VBox/Installer/darwin/DiskImage/VirtualBox_Uninstall.tool
===================================================================
--- /trunk/src/VBox/Installer/darwin/DiskImage/VirtualBox_Uninstall.tool	(revision 76013)
+++ /trunk/src/VBox/Installer/darwin/DiskImage/VirtualBox_Uninstall.tool	(revision 76014)
@@ -200,4 +200,16 @@
 fi
 
+my_fuse_macos_core_uninstall=0
+if test "$my_default_prompt" != "Yes" -a -f "/Library/Filesystems/osxfuse.fs/Contents/Resources/uninstall_osxfuse.app/Contents/Resources/Scripts/uninstall_osxfuse.sh"; then
+    echo "VirtualBox detected the FUSE for macOS core package which might've been installed"
+    echo "by VirtualBox itself for the vboximg-mount utility. Do you wish to uninstall"
+    echo "the FUSE for macOS core package (Yes/No)?"
+    read my_answer
+    if test "$my_answer" == "Yes"  -o  "$my_answer" == "YES"  -o  "$my_answer" == "yes"; then
+        my_fuse_macos_core_uninstall=1;
+    fi
+    echo ""
+fi
+
 #
 # Unregister has to be done before the files are removed.
@@ -229,4 +241,9 @@
         exit 1;
     fi
+fi
+
+if test "$my_fuse_macos_core_uninstall" != 0; then
+    echo "Uninstalling the FUSE for macOS core package"
+    /usr/bin/sudo -p "Please enter %u's password:" /Library/Filesystems/osxfuse.fs/Contents/Resources/uninstall_osxfuse.app/Contents/Resources/Scripts/uninstall_osxfuse.sh
 fi
 
