hello folks. Regarding the AppReadiness issue, we are still working on it. For now, as a workaround, you can use a logon script to register the required apps at user logon with the kind of PS script below, to ensure start menu and other apps will be correctly registered
$regkey = "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Appx\AppxAllUserStore\InboxApplications"
$apps = Get-ChildItem -Path $regkey
ForEach($key in $apps)
{
Add-AppxPackage -DisableDevelopmentMode -Register (Get-ItemProperty -Path $key.PsPath).Path
}
$regkey = "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Appx\AppxAllUserStore\Applications"
$apps = Get-ChildItem -Path $regkey
ForEach($key in $apps)
{
Add-AppxPackage -DisableDevelopmentMode -Register (Get-ItemProperty -Path $key.PsPath).Path
}