Packaging an isolated Win32 app with MSIX
Packaging an existing MSIX or Win32 application into a Win32 app isolation application will be done through the MSIX Packaging Tool (MPT). Note that the version of MPT that supports Win32 app isolation is v1.2023.517.0, available in the release assets of this project. The store version of MPT is outdated for the purposes of the Win32 app isolation feature. You can find additional documentation for MPT here.
You can find the download for MPT, as well as the profiler, in the releases section of the Win32 app isolation GitHub repository.
Important
This feature is in preview: Some information relates to a prerelease product which may be substantially modified before it's commercially released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Convert an existing Win32 installer into an MSIX app
Select "Application Package" on the far left and choose where the package will be created. This flow will follow the "Create package on this computer" option.
Note
This will result in the app installed as a normal Win32 app after finishing step 5.
Wait for the "MSIX Packaging Tool Driver" field to finish checking.
Use the browse button to navigate to and select the Win32 installer. Leave signing preference blank as we will need to edit the manifest and sign it again.
Enter the package information.
Go through the Win32 installer as normal
If there are additional entry points besides the main one, launch or browse to them. If the app has options for File Type Association in settings/config/preferences, toggle them at this step so MSIX will pick up on them.
Repeat the same process if there are services in the package.
Clicking Create will save the package as a full trust package. Click the "Package Editor" button to go to the "Package Editor" flow from the main menu. This can take up to several minutes depending on the size of the package.
Convert an existing MSIX app to run isolated
Select the far right option "Package editor" and browse to the .msix file and click the "Open package" button.
Scroll down to the "Manifest file" section and click "Open file".
In the manifest, the following changes will need to be made.
Note
Isolated Win32 applications are not compatible with other application types within the same package.
- Add
xmlns:previewsecurity2="http://schemas.microsoft.com/appx/manifest/preview/windows10/security/2"
to the<Package>
element if it's not there already.- Add
previewsecurity2
toIgnorableNamespaces
at the end of the<Package>
element.
- Add
- Add
xmlns:uap10="http://schemas.microsoft.com/appx/manifest/uap/windows10/10"
to the<Package>
element if it's not there already.- Add
uap10
toIgnorableNamespaces
at the end of the<Package>
element.
- Add
- In
<Dependencies>
changeTargetDeviceFamily
to<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.25357.0" MaxVersionTested="10.0.25357.0" />
.Note
Not all features are available in the minimum build, check out the release notes for more detailed information.
- In
<Application>
replace any existing entrypoint/trustlevel/runtimebehavior withuap10:TrustLevel="appContainer" previewsecurity2:RuntimeBehavior="appSilo"
. - In
<Application>
extensions, remove anyEntryPoints=*
orExecutable=*
as those are inherited from the parent<Application>
- Add
desktop7:Scope="user"
to the extension element forwindows.protocol
.
Note
By default, MPT will automatically add
<rescap:Capability name="runFullTrust">
to<Capabilities>
due to the app being a packaged Win32. This should be removed unless the app has other manifested extensions which can affect the user global state, such ascomServer
orFirewallRules
, since those require therunFullTrust
capability.- Add
The app might need additional capabilities to function correctly now that it has been isolated.
These capabilities directly add functionality back to isolated apps.
isolatedWin32-print
- Print documentsisolatedWin32-sysTrayIcon
- Display notifications from the SystrayisolatedWin32-shellExtensionContextMenu
- Display COM-based context menu entriesisolatedWin32-promptForAccess
- Prompt Users for file accessisolatedWin32-accessToPublisherDirectory
- Access to directories that end with the publisher ID
These capabilities allow minimal access to libraries such as MSVC runtime or other Windows/3rd Party DLLs for applications that don't support prompting.
isolatedWin32-dotNetBreadcrumbStore
isolatedWin32-profilesRootMinimal
isolatedWin32-userProfileMinimal
isolatedWin32-volumeRootMinimal
Save and close the manifest window. If there are any errors in the manifest, MPT will display them. Select Create/Save to generate the .msix file. This can take several minutes depending on the size of the package
- If there are errors with the manifest, a more actionable error message can be found in Event Viewer under
Application and Services/Microsoft/Windows/AppxPackagingOM/Microsoft-Windows-AppxPackaging/Operational
- If there are errors with the manifest, a more actionable error message can be found in Event Viewer under
See application capability profiler for information on identifying capabilities that may need to be declared in the application package manifest.
Related topics
Application Capability Profiler
Packaging a Win32 app isolation application with Visual Studio