How do i know if teamviewer executed successfully and get the session id and password?

Viewed 10533

I am trying to run TeamViewer in a headless ubuntu OS. The OS is running as amazon ec2 AMI so I have no physical access to it. Currently, I just type the command "teamviewer" in ssh and the only output I get is something like:

TeamViewer: 6.0.9258

Profile: /home/ubuntu (ubuntu)

Desktop:

No LSB modules are available.

Distributor ID: Ubuntu

Description: Ubuntu 10.04.3 LTS

Release: 10.04

Codename: lucid

Checking setup...

Launching c:\Program Files\TeamViewer\Version6\TeamViewer.exe...

Did it launch successfully? If so, how can I know the session id and password so that I can connect to it from another machine?

3 Answers

Just an idea for a general strategy:

You could try to grep the process-list for the ProcessID of wine TeamViewer.exe, take a screenshot of the window belonging to that process, save it to an image with a filename of your choice, and then download that image.

People have attempted to do similar things, (but in this case not with teamviewer, and on windows). How to get window's HWND from it's process handle?

Related