Hi takashi-7890,
yes, Microsoft will end support for App-V in 2026, making it essential to migrate to MSIX for continued application virtualization and management.
to migrate App-V packages to MSIX while preserving settings
App-V stores user settings in %APPDATA%
and HKCU\Software\Microsoft\AppV
, while MSIX uses containerized storage (C:\Users\<User>\AppData\Local\Packages\
).
Export registry settings (reg export
), copy user data files to the new MSIX container, and deploy via Intune or GPO.
Use FileRedirectionFixup to remap legacy paths.
Run App-V and MSIX in parallel while migrating settings gradually.
validate & test, deploy to a test group, use ProcMon to track missing settings, and adjust scripts as needed.
Just in cases https://ctrlaltdel.team/?p=289 here is link to my blog where included PowerShell Script for Migration.
rgds,
Alex
p.s. Please click Accept Answer and upvote if the above was helpful.