Benutzer mit den meisten Antworten
Bereitstellungspaket: "Error during package installation" bei Erstellung Kiosk mit mehreren Apps

Frage
-
Ich wollte gemäss https://docs.microsoft.com/de-de/windows/configuration/lock-down-windows-10-to-specific-apps#lnk-files einen Kiosk mit mehreren Apps (Firefox und Datei-Explorer) erstellen.
XML:
<?xml version="1.0" encoding="utf-8" ?>
<AssignedAccessConfiguration
xmlns="https://schemas.microsoft.com/AssignedAccess/2017/config"
xmlns:rs5="https://schemas.microsoft.com/AssignedAccess/201810/config"
>
<Profiles>
<Profile Id="{a8b6976b-f258-48e7-aa4f-d59d32aa843e}">
<AllAppsList>
<AllowedApps>
<App DesktopAppPath="C:\Program Files (x86)\Mozilla Firefox\firefox.exe" rs5:AutoLaunch="true" />
<App DesktopAppPath="C:\Windows\explorer.exe" />
</AllowedApps>
</AllAppsList>
<StartLayout>
<![CDATA[<LayoutModificationTemplate xmlns="http://schemas.microsoft.com/Start/2014/LayoutModification" Version="1" xmlns:start="http://schemas.microsoft.com/Start/2014/StartLayout" xmlns:defaultlayout="http://schemas.microsoft.com/Start/2014/FullDefaultLayout">
<LayoutOptions StartTileGroupCellWidth="6"/>
<DefaultLayoutOverride>
<StartLayoutCollection>
<defaultlayout:StartLayout GroupCellWidth="6">
<start:Group Name="">
<start:DesktopApplicationTile DesktopApplicationLinkPath="%APPDATA%\Microsoft\Windows\Start Menu\Programs\System Tools\File Explorer.lnk" Row="0" Column="0" Size="2x2"/>
<start:DesktopApplicationTile DesktopApplicationLinkPath="%ALLUSERSPROFILE%\Microsoft\Windows\Start Menu\Programs\Firefox.lnk" Row="0" Column="2" Size="2x2"/>
</start:Group>
</defaultlayout:StartLayout>
</StartLayoutCollection>
</DefaultLayoutOverride>
</LayoutModificationTemplate>
]]>
</StartLayout>
<Taskbar ShowTaskbar="false"/>
</Profile>
</Profiles>
<Configs>
<Config>
<Account>MRM_Kiosk</Account>
<DefaultProfile Id="{a8b6976b-f258-48e7-aa4f-d59d32aa843e}"/>
</Config>
</Configs>
</AssignedAccessConfiguration>
XML-Ende.
Wenn ich die .ppkg auf dem Installierten Windows 10 Pro (Version 1903 Build 18362.476) einspielen möchte sehe ich unter "Einstellungen-->Konten-->Auf Arbeits- oder Schulkonto zugreifen--> Bereitstellungspaket hinzufügen oder entfernen den Fehler "Error during package installation". Habe das Benutzerkonto auch schon manuell erstellt (gleicher Name wie in xml-File) funktioniert aber auch nicht.
Windows Ereingisloganzeige:
Fehler bei der Überprüfung, da das Dokument nicht genau einen Stammknoten enthält.
, ErrorCode (0xC00CE223)AssignedAccess Configuration failed, ErrorCode (0xC00CE223)
MDM-ConfigurationManager: Befehlsfehlerstatus. ID der Konfigurationsquelle: (1f091d8e-e3f7-4eef-8a67-69a917172465), Registrierungsname: (Provisioning), Anbietername: (AssignedAccess), Befehlstyp: (Add: from Replace or Add), CSP-URI: (./Device/Vendor/MSFT/AssignedAccess/Configuration), Ergebnis: (Unknown Win32 Error code: 0xc00ce223).
Fehler bei der Überprüfung, da das Dokument nicht genau einen Stammknoten enthält.
, ErrorCode (0xC00CE223)
AssignedAccess Configuration failed, ErrorCode (0xC00CE223)
MDM-ConfigurationManager: Befehlsfehlerstatus. ID der Konfigurationsquelle: (1f091d8e-e3f7-4eef-8a67-69a917172465), Registrierungsname: (Provisioning), Anbietername: (AssignedAccess), Befehlstyp: (Add: from Replace or Add), CSP-URI: (./Device/Vendor/MSFT/AssignedAccess/Configuration), Ergebnis: (Unknown Win32 Error code: 0xc00ce223).
Fehler bei der Überprüfung, da das Dokument nicht genau einen Stammknoten enthält.
, ErrorCode (0xC00CE223)
AssignedAccess Configuration failed, ErrorCode (0xC00CE223)
MDM-ConfigurationManager: Befehlsfehlerstatus. ID der Konfigurationsquelle: (1f091d8e-e3f7-4eef-8a67-69a917172465), Registrierungsname: (Provisioning), Anbietername: (AssignedAccess), Befehlstyp: (Add: from Replace or Add), CSP-URI: (./Device/Vendor/MSFT/AssignedAccess/Configuration), Ergebnis: (Unknown Win32 Error code: 0xc00ce223).
ProvXML category 'UxLockdown' failed with '0xC00CE223' at CSP node 'AssignedAccess/Configuration'. Provisioning failed
Besten Dank für eure Vorschläge bzgl weiterem Troubleshooting.
PS: Es wurde noch keine Windows-Lizenz eingespielt, da es sich momentan um eine Test-Umgebung handelt.
Antworten
-
I had the same issue after copying code from Microsoft documentation site.
I had to change the namespace URLs from https to solve the problem.
Change:
<AssignedAccessConfiguration
xmlns = "https://schemas.microsoft.com/AssignedAccess/2017/config"
xmlns: rs5 = "https://schemas.microsoft.com/AssignedAccess/201810/config"
>
To:
<AssignedAccessConfiguration
xmlns = "http://schemas.microsoft.com/AssignedAccess/2017/config"
xmlns: rs5 = "http://schemas.microsoft.com/AssignedAccess/201810/config"
>
- Bearbeitet IC-Updated Samstag, 23. November 2019 19:37
- Als Antwort markiert N3bulaPro Montag, 25. November 2019 13:53
Alle Antworten
-
I had the same issue after copying code from Microsoft documentation site.
I had to change the namespace URLs from https to solve the problem.
Change:
<AssignedAccessConfiguration
xmlns = "https://schemas.microsoft.com/AssignedAccess/2017/config"
xmlns: rs5 = "https://schemas.microsoft.com/AssignedAccess/201810/config"
>
To:
<AssignedAccessConfiguration
xmlns = "http://schemas.microsoft.com/AssignedAccess/2017/config"
xmlns: rs5 = "http://schemas.microsoft.com/AssignedAccess/201810/config"
>
- Bearbeitet IC-Updated Samstag, 23. November 2019 19:37
- Als Antwort markiert N3bulaPro Montag, 25. November 2019 13:53