Last active
August 21, 2024 19:16
-
-
Save stefanschmidt/2432503 to your computer and use it in GitHub Desktop.
Enable/Disable Screen Sharing on OSX
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
# Enable Screen Sharing | |
sudo launchctl load -w /System/Library/LaunchDaemons/com.apple.screensharing.plist | |
# Disable Screen Sharing | |
sudo launchctl unload -w /System/Library/LaunchDaemons/com.apple.screensharing.plist |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Do you have idea on the below questions?
How to use this from mac Application?
Or how to use this from the MDM Console?