我们为医疗设备定制Windows。科塔纳通过应答文件被移除,
<package action="remove">
<assemblyIdentity name="Microsoft-Windows-LanguageFeatures-Speech-en-us-Package" version="10.0.17763.1" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="" />
</package>
<package action="remove">
<assemblyIdentity name="Microsoft-Windows-LanguageFeatures-TextToSpeech-en-us-Package" version="10.0.17763.1" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="" />
</package>
下面的错误消息开始出现在事件查看器中:
Unable to start a DCOM Server:
Microsoft.Windows.Cortana_1.11.6.17763_neutral_neutral_cw5n1h2txyewy!CortanaUI as Unavailable/Unavailable.
The error: "0"
Happened while starting this command:
"C:\Windows\SystemApps\Microsoft.Windows.Cortana_cw5n1h2txyewy\SearchUI.exe" -ServerName:CortanaUI.AppXa50dqqa5gqv4a428c9y1jjw7m3btvepj.mca
Unable to start a DCOM Server:
Microsoft.Windows.Cortana_1.11.6.17763_neutral_neutral_cw5n1h2txyewy!CortanaUI.AppXynb3eakad12451rv00qxextfnce9sxb8.mca as Unavailable/Unavailable.
The error: "0"
Happened while starting this command:
"C:\Windows\SystemApps\Microsoft.Windows.Cortana_cw5n1h2txyewy\SearchUI.exe" -ServerName:CortanaUI.AppXa50dqqa5gqv4a428c9y1jjw7m3btvepj.mca
将来,我们需要禁用Cortana,同时不生成事件查看器中的错误。
是什么生成这些消息,如何在事件查看器中避免此消息?
所使用的操作系统是Windows 10 IoT Enterprise (W10IoTE) 1809版本。
发布于 2022-10-29 22:43:49
这可能是由于Cortona包损坏或缺少二进制文件造成的。
若要解决问题,请重新注册/重新安装Windows本机应用程序。
Get-AppxPackage -allusers | foreach {Add-AppxPackage -register "$($_.InstallLocation)\appxmanifest.xml" -DisableDevelopmentMode}
这将重新注册所有内置的appx packages.
中的所有内置应用程序
https://stackoverflow.com/questions/62834199
复制相似问题