• Mac OS X

    Command Keys and ScreenSharing

    I like to send the command, control and other system keys to hosts that I’m using ScreenSharing or Remote Desktop to access. But as I recently discovered, not everyone does. You can turn this feature off using the defaults command to augment the DoNotSendSystemKeys key of the com.apple.ScreenSharing.plist property list file. Simply run the following command: defaults write com.apple.ScreenSharing DoNotSendSystemKeys -bool YES To turn them back on: defaults write com.apple.ScreenSharing DoNotSendSystemKeys -bool NO Or for Remote Desktop, augment the com.apple. defaults write com.apple.RemoteDesktop DoNotSendSystemKeys -bool YES To turn it back off for Remote Desktop: defaults write com.apple.RemoteDesktop DoNotSendSystemKeys -bool NO FYI, if you don’t want to send the command keys…

  • Mac OS X

    Speed Up ScreenSharing

    Screen Sharing over a WAN can be a bit slow. But you can send less data and receive a less latent connection. To do so, you are going to augment the controlObserveQuality key of the com.apple.ScreenSharing.plist property list. If you set the key to a 1, which I see commonly suggested then it will be black and white, which in todays world is another way of saying practically illegible. Instead try the number 2, which sets it to grey scale, which is pretty good (that’s what I use). To do so run: defaults write com.apple.ScreenSharing controlObserveQuality 2 You can also set the controlObserveQuality key to 3, 4 or 5 which…