Pick of the Week - Nov 10 [Show all picks]
Path Finder 5 - A feature-laden Finder replacement
Submit Hint Search The Forums LinksStatsPollsFAQHeadlinesRSS
12,000 hints and counting!

One way to quit ARD on a remote Mac via a local ARD Network
In some LAN configurations, there may be more than one Mac used to manage the others using Apple Remote Desktop. These may be physically separated by some distance. In such a situation, you may need to take control of one of the managing Macs from the other. But Remote Desktop won't let you control or view another Mac that is already running Remote Desktop.

If you can ssh to that Mac, you can manually quit the program from the command line. If that Mac's settings allow other VNC clients to connect to it, you can also do that. But if those options aren't available, here's a simple trick to quit the remote Remote Desktop. Create an AppleScript with the following code:
tell application "Remote Desktop"
  quit
end tell
Save it as an application, and test it locally. Then select the remote Mac from ARD's clients list and then Manage » Open Application. After ARD has grabbed the list of remote applications to pick from, click the + icon below the list and select your local AppleScript application.

The script is sent to the remote Mac and executed, quitting Remote Desktop there. You can now take control of that Mac as normal.
    •    
  • Currently 0.00 / 5
  • 1
  • 2
  • 3
  • 4
  • 5
  (0 votes cast)
 
[3,822 views]  

One way to quit ARD on a remote Mac via a local ARD | 4 comments | Create New Account
Click here to return to the 'One way to quit ARD on a remote Mac via a local ARD' hint
The following comments are owned by whomever posted them. This site is not responsible for what they say.
One way to quit ARD on a remote Mac via a local ARD
Authored by: adroitboy on Mon, May 19 2008 at 8:02AM PDT
I'm not sure if this is what you're trying to do, but you might also want to try...
ARD Preferences > Security >
Check: Allow control of this computer when this application is running.

I can manage/control computers just fine even when they are running ARD.


[ Reply to This | # ]
One way to quit ARD on a remote Mac via a local ARD
Authored by: mm2270 on Tue, May 20 2008 at 7:38AM PDT
Yep. I manage my Mac at work over VPN via ARD even while ARD is running on it. Just change the prefs. No need to run this command to quit the app remotely.

[ Reply to This | # ]
One way to quit ARD on a remote Mac via a local ARD
Authored by: dhalfon on Tue, May 20 2008 at 3:27AM PDT
you can with ARD post a unix command :"Top"
then "kill" & the remote ARD process number obtained from the Top list

[ Reply to This | # ]
One way to quit ARD on a remote Mac via a local ARD
Authored by: Ukkoite on Thu, May 22 2008 at 5:12AM PDT
You could use command
killall "Remote Desktop"
on the remote machine too... No hunting for PIDs involved.

[ Reply to This | # ]