简体   繁体   English

在 Windows CE 8.0 上运行 .exe

[英]Run .exe on Windows CE 8.0

I'm trying to start a .exe-file on my machine which is running Windows CE 8.00.我正在尝试在运行 Windows CE 8.00 的机器上启动一个 .exe 文件。

The .exe-file was generated with the help of PyInstaller ( https://www.pyinstaller.org/ ) which converted my Python script to such a file. .exe 文件是在 PyInstaller ( https://www.pyinstaller.org/ ) 的帮助下生成的,它将我的 Python 脚本转换为这样的文件。 I used a laptop running Windows 10 for this operation.我使用运行 Windows 10 的笔记本电脑进行此操作。

The .exe-file runs as intended on other laptops (also Windows 10) but when I try to run it on the intended machine with Windows CE 8.00 I get an error message displayed: File.exe is not a valid Windows Embeded Compact application. .exe 文件在其他笔记本电脑(还有 Windows 10)上按预期运行,但是当我尝试在装有 Windows CE 8.00 的目标机器上运行它时,我收到一条显示错误消息: File.exe 不是有效的 Windows Embeded Compact 应用程序。

Information about the machine:机器的相关资料:

  • Windows 8.00 Build 6270 Windows 8.00 内部版本 6270
  • Processor Type: AMD Steppe Eagle处理器类型:AMD Steppe Eagle

I'm completely clueless where to start to look for an alternative solution.我完全不知道从哪里开始寻找替代解决方案。 Online there is not much information about this topic.网上关于这个话题的信息不多。

I've tryed dowloading Python CE ( https://sourceforge.net/projects/pythonce/ ) but when starting the .exe-file for the installation I've got the same error message as before: *... is not a valid Windows Embeded Copact application".我已经尝试下载 Python CE ( https://sourceforge.net/projects/pythonce/ ) 但是在启动安装的 .exe 文件时,我收到了与以前相同的错误消息:*... is not a有效的 Windows 嵌入式 Copact 应用程序”。

Windows CE is not compatible with Windows (NT,XP,7,8 or 10), it's a different OS that share similar APIs. Windows CE 与 Windows(NT、XP、7、8 或 10)不兼容,它是一种共享类似 API 的不同操作系统。 There's no way to run the same exe on both.无法在两者上运行相同的 exe。 You may be able to build two executables (WinCE and Windows) from the same code base, but that depends on the language and I am not aware of tools converting python to native WinCE exe.您也许可以从相同的代码库构建两个可执行文件(WinCE 和 Windows),但这取决于语言,我不知道将 python 转换为本地 WinCE exe 的工具。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM