0

Two computers being connected to a network. I need to run VNC Server on Windows CE 6.0, and Connect from VNC Viewer on Windows 7.

I used TightVNC for Windows 7 but I am unable to install TightVNC to Windows CE 6.0.

Please guide me from here. I tried different TightVNC installers from http://www.tightvnc.com/download-old.php but failed. As soon as I try to run installer, it says

"There is no application associated with tightvnc-2.8.5-gpl-setup-32bit. Run the application first, then open this file from within the application."

It was a .msi file, but I found a .exe installer also but when I ran it on WinCE, it says

"Application tightvnc-1.3.10-setup.exe encountered a serious error and must shut down"

Please help me here. Should I try any other VNC Server-client for WinCE and Win7?

Thank you!

4

1 回答 1

1

您可以尝试使用EfonVNC。我从网站上看到版本是v4.3,但是当你下载EXE时你会发现它是v4.1.1.1。部署到您的设备,然后在设备启动时或通过代码自动启动它。下面是一些示例 C# 代码来做到这一点:

ProcessStartInfo pinfoVNC = new ProcessStartInfo();
pinfoVNC.FileName = PATH-TO-VNC-ON-YOUR-DEVICE;
Process.Start(pinfoVNC);
于 2016-12-14T16:18:43.297 回答