无法将 VNC 服务器安装到 Windows CE 6.0

Unable to install VNC Server to Windows CE 6.0

两台计算机连接到网络。我需要 运行 Windows CE 6.0 上的 VNC 服务器,并从 Windows 7 上的 VNC 查看器连接。

我为 Windows 7 使用了 TightVNC,但我无法将 TightVNC 安装到 Windows CE 6.0。

请从这里指导我。我尝试了来自 http://www.tightvnc.com/download-old.php 的不同 TightVNC 安装程序,但失败了。一旦我尝试 运行 安装程序,它就会显示

"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."

它是一个 .msi 文件,但我也找到了一个 .exe 安装程序,但是当我在 WinCE 上 运行 它时,它说

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

请帮帮我。我应该为 WinCE 和 Win7 尝试任何其他 VNC 服务器客户端吗?

谢谢!

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

ProcessStartInfo pinfoVNC = new ProcessStartInfo();
pinfoVNC.FileName = PATH-TO-VNC-ON-YOUR-DEVICE;
Process.Start(pinfoVNC);