在 Adobe AIR 安装中打包 .NET 3.5 Framework 和驱动程序
我有一个使用本机进程的空气应用程序。该进程是一个与 USB 加密狗交互的命令行工具。
该加密狗是第三方的,有自己的库可供我交互。该库需要 .NET 3.5。它还具有自己的驱动程序,可能会也可能不会从 Windows 更新自动下载。
我有一个本机安装程序,它打包了air应用程序和本机进程。我正在尝试找到一种方法来检测用户是否有 .net 3.5 和 USB 驱动程序,并在它们不可用时安装它们。
一种想法是将空中安装打包在 .NET 包中。不确定这是否有效,我对桌面应用程序没有太多经验。
I have an air app that uses a native process. This process is a command line tool that interacts with a USB dongle.
The dongle is third party and has it's own library that I interact with. The library requires .NET 3.5. It also has its own drivers that may or may not be automatically downloaded from windows update.
I have a native installer that packages up the air app and the native process. I'm trying to find a way to detect if the user has .net 3.5 and the USB drivers and to install them if they are not available.
One idea is to package the air install in a .NET package. Not sure if that would work though, I don't have a lot of experience with desktop apps.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我们只要求用户在安装应用程序之前安装.NET框架。大多数人已经安装了它,我们没有遇到任何安装问题。
We just require the user to install the .NET framework before installing the app. Most people already have it installed and we haven't ran into any installation issues.