This project provides tools, libraries, documentation and samples for creating app-compat fixups to enable classic Win32 applications to be distributed and executed as packaged apps.
Check out our step by step guide, it will walk you through the main PSF workflows and provides the key documentation.
See also:
- Package Support Framework package layout
- Package Support Framework Nuget package install
- Instructions for authoring your own shim dll
Code licensed under the MIT License.
Package Support Framework adopts a development and master branching style.
This branch represents the source in the most recent nuget package. The code in this branch is the most stable. Please do not fork off this branch for development.
This branch has the latest code. Keep in mind that there might be features in this branch that is not yet in master. Please make a private fork off this branch to make any contributions to Package Support Framework.
This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.microsoft.com.
PSF allows one PowerShell script to be run before an exe runs, and one PowerShell script to be ran after the exe runs.
Each exe defined in the application manifest can have their own scripts.
In order to allow scripts to run you need to set the execution policy to unrestricted or RemoteSigned. The execution policy needs to be set for both the 64-bit powershell executable and the 32-bit powershell executable.
Here are the locations of each executable.
- If on a 64-bit computer
- 64-bit: %SystemRoot%\system32\WindowsPowerShell\v1.0\powershell.exe
- 32-bit: %SystemRoot%\SysWOW64\WindowsPowerShell\v1.0\powershell.exe
- If on a 32-bit computer
- 32-bit: %SystemRoot%\system32\WindowsPowerShell\v1.0\powershell.exe
More information about PowerShell Execution Policy
In order to specify what scripts will run for each packaged exe you will need to modify the config.json file. To tell PSF to run a script before the execution of the pacakged exe add an object called "startScript". To tell PSF to run a script after the packaged exe finishes add an object called "endScript". Both objects use the same three keys.
| Key name | Value type | Required? |
|---|---|---|
| scriptPath | string | Yes |
| scriptArguments | string | No |
| runInVirtualEnvironment | boolean | No (defaults to true) |
- scriptPath: The path to the script including the name and extension. The Path starts from the root directory of the application.
- scriptArguments: Space delimited argument list. The format is the same for a PowerShell script call. This string gets appended to scriptPath to make a valid PowerShell.exe call.
- runInVirtualEnvironment: If the script should run in the same virtual environment that the packaged exe runs in.
Below is the flow of PSF with scripting support.
The flow from beginning to end is [Starting Script] -> [Monitor] -> [Packaged exe] -> [Ending script]
+------------+ Success, or +-----------------+ +-----------------+
| Starting | Script error | Monitor and | Success | Ending |
| Script |------------->| Packaged exe |------------> | Script |
+------------+ +-----------------+ +-----------------+
| Create | Create | Create
| Process | Process | Process
| Error | Error | Error
V V V
+-------------+ +-----------------+ Create Process +----------------+
| Throw error | | Run ending | Error | Throw error |
| and exit | | script |----------------->| and exit. |
+-------------+ +-----------------+ +----------------+
|
| Success
|
V
+--------------+
| Throw error |
| and exit |
+--------------+
Here is a sample configuration using two different exes.
{
"applications": [
{
"id": "Sample",
"executable": "Sample.exe",
"workingDirectory": "",
"startScript":
{
"scriptPath": "RunMePlease.ps1",
"scriptArguments": "ThisIsMe.txt",
"runInVirtualEnvironment": true
},
"endScript":
{
"scriptPath": "RunMeAfter.ps1",
"scriptArguments": "ThisIsMe.txt"
}
},
{
"id": "CPPSample",
"executable": "CPPSample.exe",
"workingDirectory": "",
"startScript":
{
"scriptPath": "CPPStart.ps1",
"scriptArguments": "ThisIsMe.txt",
"runInVirtualEnvironment": true
},
"endScript":
{
"scriptPath": "CPPEnd.ps1",
"scriptArguments": "ThisIsMe.txt"
}
}
],
"processes": [
...(taken out for brevity)
]
}
Each fixup and the PSF Launcher has a metadata file in xml format. Each file contains the following
- Version: The version of the PSF is in MAJOR.MINOR.PATCH format according to Sem Version 2
- Minimum Windows Platform the the minimum windows version required for the fixup or PSF Launcher.
- Description: Short description of the Fixup.
- WhenToUse: Heuristics on when you should apply the fixup.
Addtionally, we have the XSD for the metadata files. THe XSD is located in the solution folder.
Submit your own fixup(s) to the community:
- Create a private fork for yourself
- Make your changes in your private branch
- For new files that you are adding include the following Copyright statement.
//-------------------------------------------------------------------------------------------------------
// Copyright (c) #YOUR NAME#. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
//------------------------------------------------------------------------------------------------------- - Create a pull request into 'fork:Microsoft/MSIX-PackageSupportFramework' 'base:develop'
When you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.
Here is how you can contribute to the Package Support Framework:
- Submit bugs and help us verify fixes
- Submit pull requests for bug fixes and features and discuss existing proposals
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.