Hello T.I,
You’re seeing this because UWF blocks the UWP framework’s writes to its package, per-user state and registration DB. You need to carve out those paths and keys so the Remote Desktop app can install and run under UWF
# Exclude app package and registration DB
uwfmgr.exe file filter add-exclusion "C:\Program Files\WindowsApps"
uwfmgr.exe file filter add-exclusion "C:\ProgramData\Microsoft\Windows\AppRepository"
# Exclude per-user LocalState (repeat per account as needed)
uwfmgr.exe file filter add-exclusion "C:\Users\*\AppData\Local\Packages\*\LocalState"
# Exclude Appx service registry hives
uwfmgr.exe registry filter add-exclusion "HKLM\Software\Microsoft\Windows\CurrentVersion\Appx"
uwfmgr.exe registry filter add-exclusion "HKLM\SYSTEM\CurrentControlSet\Services\AppXSvc"
# Commit and reboot
uwfmgr.exe commit-changes
Restart-Computer
After reboot - with UWF still on - the Store Remote Desktop (WindowsApp) should launch normally. If it still fails, check Event Viewer > Applications and Services Logs > Microsoft > Windows > AppxDeployment-Server for any “access denied” entries and add those paths/keys to your exclusions.