ターミナルからScreenSharingを起動する方法はありますか?


回答:


23
open vnc://server.address[:port]

3
open vnc:// user @ pass:server:portは、資格情報を渡す場合にも機能します。これを行うことのセキュリティ上のリスクは、考慮すべきものです。
ベンウォルディング

2
open vnc://user@server:portまた、有用であり、セキュリティがあなたのパスワードを持つに関連するリスクはありませんが、プロセスのリストに表示
マイケル・

man open今日はタイプするつもりはなかった。多くのことができます。
マイケルフォックス

2
パスワードを使用するための正しい構文はvnc://user:password@server:port
levsa

これに対する引数としてVNCパスワードを使用する方法を知っていますか?ありがとう
ピーターベシッチ

2

システム環境設定で支援デバイスにアクセスできる場合は、AppleScript Editorで次のAppleScriptを保存し、コマンドラインから実行できます。

tell application "Screen Sharing"
    activate # start Screen Sharing if not running yet
    tell application "System Events"
        keystroke "a" using command down # this will cause the address to clear
        keystroke "127.0.0.1" # replace with your host
        key code 36 # press enter
    end tell
end tell

として保存しSharing.scpt、として実行しosascript /path/to/Sharing.scptます。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.