我正在使用Windows 10物联网核心来创建一个产品。在开发阶段,我可以很容易地访问屏幕键盘。现在,当我完成开发工作时,我遵循了微软的在线制造指南如下:https://learn.microsoft.com/en-us/windows-hardware/manufacture/iot/iot-core-manufacturing-guide
在跟踪了前两个实验室之后,我设法让我的应用程序在我的Raspberry pi 3上工作,然而,屏幕上的键盘却不见了。转到设备门户,即ipaddress:8080,屏幕上键盘的选项也丢失了。这就是我在开发阶段打开它的地方。
在浏览了microsoft文档之后,我发现我需要在我的应用程序IOT_SHELL_ONSCREEN_KEYBOARD IOT_SHELL_ONSCREEN_KEYBOARD_FOLLOWFOCUS中添加以下功能
我尝试了以下几点:
命令管道位置1处的cmdlet提供以下参数: FeatureID:当我输入IOT_SHELL_ONSCREEN_KEYBOARD作为特性ID时,它会给出一个错误:不支持IOT_SHELL_ONSCREEN_KEYBOARD。
!
基本上我在这件事上失败了。在我购买代码签名证书并获得零售版本之前,有人能帮我完成这个工作吗?
如有任何支持,我们将不胜感激。
有用的链接:https://learn.microsoft.com/en-us/windows/iot-core/develop-your-app/onscreenkeyboard https://learn.microsoft.com/en-us/windows-hardware/manufacture/iot/iot-core-feature-list https://learn.microsoft.com/en-us/windows-hardware/manufacture/iot/iot-core-adk-addons
发布于 2020-07-06 07:01:43
您需要在TestOEMInput.xml中添加这个特性(在文件夹\Source\Products\ProductA中),就像正在构建零售映像的following.If一样,需要在RetailOEMInput.xml中添加该功能。
<Features>
<Microsoft>
<Feature>IOT_EFIESP</Feature>
<Feature>IOT_EFIESP_BCD_MBR</Feature>
<Feature>IOT_DMAP_DRIVER</Feature>
<Feature>IOT_CP210x_MAKERDRIVER</Feature>
<Feature>IOT_FTSER2K_MAKERDRIVER</Feature>
<Feature>IOT_GENERIC_POP</Feature>
<!-- Following two required for Appx Installation -->
<Feature>IOT_UAP_OOBE</Feature>
<Feature>IOT_APP_TOOLKIT</Feature>
<!-- for Connectivity -->
<Feature>IOT_WEBB_EXTN</Feature>
<Feature>IOT_POWERSHELL</Feature>
<Feature>IOT_SSH</Feature>
<Feature>IOT_SIREP</Feature>
<!-- Enabling Test images -->
<Feature>IOT_ENABLE_TESTSIGNING</Feature>
<Feature>IOT_TOOLKIT</Feature>
<!-- Debug Features -->
<Feature>IOT_KDSERIAL_SETTINGS</Feature>
<Feature>IOT_UMDFDBG_SETTINGS</Feature>
<Feature>IOT_WDTF</Feature>
<Feature>IOT_CRT140</Feature>
<Feature>IOT_DIRECTX_TOOLS</Feature>
<!-- Sample Apps, remove this when you introduce OEM Apps -->
<Feature>IOT_BERTHA</Feature>
<Feature>IOT_ALLJOYN_APP</Feature>
<Feature>IOT_NANORDPSERVER</Feature>
<Feature>IOT_SHELL_HOTKEY_SUPPORT</Feature>
<Feature>IOT_APPLICATIONS</Feature>
<Feature>IOT_SHELL_ONSCREEN_KEYBOARD</Feature>
<Feature>IOT_SHELL_ONSCREEN_KEYBOARD_FOLLOWFOCUS</Feature>
</Microsoft>
<OEM>
<!-- Include BSP Features -->
<Feature>RPI2_DRIVERS</Feature>
<Feature>RPI3_DRIVERS</Feature>
<!-- Include OEM features -->
<Feature>OEM_CustomCmd</Feature>
<Feature>OEM_ProvAuto</Feature>
<!-- For recovery, include: RECOVERY_BCD_MBR -->
</OEM>
</Features>https://stackoverflow.com/questions/62720925
复制相似问题