Sometimes, for troubleshooting it may be necessary to invoke commands in the context of MSIX, so that all virtualized file and registry resources are available. There are three main use cases for it:
- Testing out whether the files and registry entries are visible inside the virtual package in the correct place as defined in the
AppxManifest.xml
. - Testing out whether Modification Package correctly merges its VFS and virtual registry with the base package.
- Executing your app from the MSIX package with custom executables and/or parameters which are not necessarily exposed as entry points.
There exists a really useful PowerShell cmdlet which does the heavy lifting, the only thing the user has to do is to supply the right parameters. Its signature (from MSDN):
Invoke-CommandInDesktopPackage
[-PackageFamilyName] <String>
[-AppId] <String>
[-Command] <String>
[[-Args] <String>]
[-PreventBreakaway]
Both PackageFamilyName
and AppId
are required, as well as the command to be executed. You can get the two values from another cmdlet Get-AppxPackage
.
The command that is started in the “bubble” can be pretty much anything (it is validated before running), but some typical examples are:
cmd.exe
powershell.exe
regedit.exe
- Executables being part of the package (indirectly)
For example, let’s execute a PowerShell session in MSIX container to verify the virtualized file structure.
Continue reading →