Created
March 3, 2021 08:42
-
-
Save df-a/a0a6c3cd6067293c62e7e97382c3f2d0 to your computer and use it in GitHub Desktop.
Get VMWare Fusion working on MacOS
This file contains 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
Using Terminal, get the TeamIdentifier value from the VMWare Fusion version you're using (the % is the prompt, so omit that): | |
% codesign -dv --verbose=4 /Applications/VMware\ Fusion.app | |
From the results of that command, find the "TeamIdentifier" value, for example: | |
TeamIdentifier=EG7KH642X6 | |
Write that down, and note this is case-sensitive. | |
Reboot your Mac into Recovery Mode (hold down Command + R at boot) | |
In Recovery Mode, open Terminal, then: | |
% /usr/sbin/spctl kext-consent add EG7KH642X6 | |
Reboot, and you should be good to go now. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment