我在 Windows 10 Pro 1803 中为多应用信息亭设置了一个简单的配置包。该包安装时没有任何明显错误,但是当我以指定用户登录时,我所做的任何更改都没有生效。
以下是我使用的 XML:
<?xml version="1.0" encoding="utf-8" ?>
<AssignedAccessConfiguration
xmlns="http://schemas.microsoft.com/AssignedAccess/2017/config"
xmlns:rs5="http://schemas.microsoft.com/AssignedAccess/201810/config"
>
<Profiles>
<Profile Id="{dd1bc1ea-43fa-4173-9422-ecb7e4e56eb3}">
<AllAppsList>
<AllowedApps/>
<App DesktopAppPath="%SystemDrive%\Users\Public\SEAGULL\J Walk Windows Client\4.1038.1.822\jw9c.exe" />
<App DesktopAppPath="%SystemDrive%\Program Files (x86)\Google\Chrome\Application\chrome.exe" rs5:AutoLaunch="true" />
<AllowedApps/>
</AllAppsList>
<StartLayout/>
<Taskbar ShowTaskbar="false"/>
</Profile>
</Profiles>
<Configs>
<Config>
<Account>domain\account</Account>
<DefaultProfile Id="{fb2bbe2e-07d1-494d-9431-0b86e7ea75fe}"/>
</Config>
</Configs>
</AssignedAccessConfiguration>
答案1
您需要将个人资料 ID 分配给应该使用它的帐户:
...
<Config>
<Account>domain\account</Account>
<DefaultProfile Id="{dd1bc1ea-43fa-4173-9422-ecb7e4e56eb3}"/>
</Config>