我正在尝试提供MS Surface用作支付亭。我需要它在信息亭模式下运行浏览器,并限制用户退出应用程序。到目前为止,我已经尝试使用Windows Configuration Designer安装预配包。这是我在<MultiAppAssignedAccessSettings>
标记中添加的xml文件。
<?xml version="1.0" encoding="utf-8" ?>
<AssignedAccessConfiguration xmlns="http://schemas.microsoft.com/AssignedAccess/2017/config">
<Profiles>
<Profile Id="{b6b29972-354d-413a-b700-512b808859f9}">
<AllAppsList>
<AllowedApps>
<App DesktopAppPath="C:\Program Files (x86)\Google\Chrome\Application\chrome.exe">
</AllowedApps>
</AllAppsList>
</Profile>
</Profiles>
<Configs>
<Config>
<Account>Test1</Account>
<DefaultProfile Id="{b6b29972-354d-413a-b700-512b808859f9}"/>
</Config>
</Configs>
</AssignedAccessConfiguration>
该路径正确显示在定制文件中。
当我尝试安装它时,安装包出现错误。在事件查看器中查看,我得到的只是(未知的Win32错误代码:0xc00ce012)。
我要安装的设备是运行Windows 10 Pro v.1803的MS Surface
如果有人能指出正确的方向,我将不胜感激。