简体   繁体   English

如何通过Windows应用商店分发DeskBand

[英]How to distribute a DeskBand via the Windows Store

I have a Deskband DLL written in C++ that is registered via calling regsvr32 mydeskband.dll. 我有一个用C ++编写的Deskband DLL,它通过调用regsvr32 mydeskband.dll进行注册。 The Deskband has a configuration app written in C#, that I can likely convert to a UWP app using the desktop app converter. Deskband有一个用C#编写的配置应用程序,我可以使用桌面应用程序转换器将其转换为UWP应用程序。 As far as I know, there isn't a way to distribute DLL that requires registration via the Windows store. 据我所知,没有办法分发需要通过Windows商店注册的DLL。

My question is, what is the best way for me to distribute this entire package via the Windows Store? 我的问题是,通过Windows应用商店分发整个软件包的最佳方式是什么? My thought is I might only distribute the configuration app via the Windows store and have the app link to an online download of the exe file for installing the Deskband DLL, but this is cumbersome and messy. 我的想法是我可能只通过Windows商店分发配置应用程序并将应用程序链接到exe文件的在线下载以安装Deskband DLL,但这很麻烦而且很麻烦。 Is there a better way? 有没有更好的办法?

The Desktop App Converter and Windows 10 Creator's edition now supports out-of-proc COM servers. Desktop App Converter和Windows 10 Creator的版本现在支持进程外COM服务器。 See here. 看到这里。

Registration is done in the AppxManfest.xml file. 注册在AppxManfest.xml文件中完成。 Not all scenarios are supported, but its worth a try to see if this will work for you. 并非所有方案都受支持,但值得一试,看看这是否适合您。

If so, you'll be able to distribute your extension through the Windows Store. 如果是这样,您将能够通过Windows应用商店分发您的扩展。

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

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