Skip to content

Instantly share code, notes, and snippets.

@plessbd
Last active May 5, 2020 19:56
Show Gist options
  • Save plessbd/c08098f09a2cc581a2a4b968d08c2915 to your computer and use it in GitHub Desktop.
Save plessbd/c08098f09a2cc581a2a4b968d08c2915 to your computer and use it in GitHub Desktop.

For macOS on Unsupported Hardware

http://dosdude1.com/software.html

Support

https://forums.macrumors.com/threads/macos-10-15-catalina-on-unsupported-macs.2183772/

https://www.reddit.com/r/CatalinaPatcher/

Software

https://d11yldzmag5yn.cloudfront.net/prod/4.5.5757.1110/Zoom.pkg You might need to remove these sometimes…not sure why ⬇︎ rm -r /Applications/zoom.us.app/Contents/Frameworks/ZoomOpener.app; rm -r ~/.zoomus https://github.com/plessbd/tccplus

zoom.us 'Patch' for newer versions

https://forums.macrumors.com/threads/macos-10-15-catalina-on-unsupported-macs.2183772/post-28437150

source of script is

#!/bin/sh
zoomapp="/Applications/zoom.us.app"
if [ -d $zoomapp ]; then
    perl -pi -e "s|\x7E\x01\xC3\x55|\x90\x90\xC3\x55|g" "$zoomapp/Contents/Frameworks/ZCommonUI.framework/Versions/A/ZCommonUI"
    if [ "$?" -eq 0 ]; then
        codesign -f -s - "$zoomapp/Contents/Frameworks/ZCommonUI.framework/Versions/A/ZCommonUI"
        echo "Patched \"$zoomapp\"."
    else
        echo "Couldn't patch Zoom, or Zoom is already patched."
    fi
else
    echo "Couldn't patch Zoom. Please make sure Zoom is installed at \"/Applications/zoom.us.app\"."
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment