Contribute to Windows Package Manager
Published Jun 29 2021 12:01 AM 8,406 Views
Microsoft

Windows Package Manager was announced at Build 2020 and has been in preview since.  At Build 2021 the team announced version 1.0, you can see the Roadmap journey the team have been on over the past year and where they are heading here.

 

Now if you’ve never heard of Windows Package Manager before then in simplistic form it’s a tool that will help you manage the software/package/applications on your machine.  It can help you install them, update them, and uninstall them.  And a whole lot more.   It’s an open-source project that the Microsoft team are excited to work on with the community.

 

What I want to do today is talk to you about how YOU can help the project.

 

The Windows Package Manager can help you install over 1,400+ packages or pieces of software onto your machine. If you install the Windows Package Manager and issue the command winget search <SomePackage> you will see what packages are available to install.  This is where you can help. By growing that list.  And today I want to talk to you about the best practices you should follow when submitting a new package into the Windows Package Manager repository.

 

 Windows Package Manager Manifest Creator Preview

 

At Build 2021 the team launched another open-source tool, the Windows Package Manager Manifest Creator.  This new tool will help you build out the manifest file that is needed to be able to install package or application via Windows Package Manager.

The Windows Package Manager Manifest Creator can be installed on your machine via the Windows Package Manager using the command winget install wingetcreate

 

Getting Involved

 

If you’ve ran the winget search <somepackage> command and not found the package or piece of software that you want to install, then you can help to add it to the repository to help you and others in the future.

 

First, you need to check the following things:

- GitHub account

- Windows Package Manager currently supports installers in the following formats: MSIX, MSI, and EXE, if the piece of software you want to install doesn’t have one of those kinds of installers it can’t be added to the repository.

- If the software comes in MSIX, MSI or EXE format it’s worth checking to see if someone else has already submitted it for consideration, you can do that by checking the current Pull Requests being worked on within the Community Repository

- If the software comes in MSIX, MSI or EXE format and someone else hasn’t already submitted it you need to make sure you have both the Windows Package Manager and Windows Package Manager Manifest Creator installed on your machine.

 

Now that checklist has been completed, it’s time to start to build the manifest needed.

 

You can start from scratch at creating your own manifest files, however there is a tool that can help you with the process that can make the whole process a lot easier.

 

To kick start you should enter the command wingetcreate new

 

The tool will prompt you for the URL of the software package, this should be a publicly accessible URL and not something that is stored on your OneDrive or the like. The tool will start to query the file and pull some information out. It will start by suggesting a package identifier, package version, default language, the architecture the package will install on (think x86, x64, etc), publisher name, package name, package license and a description for the package.  All this information helps people find and install the software.

 

WingetCreate example wizardWingetCreate example wizard

Custom Silent Switches

 

If the piece of software, you are trying to package up requires a bespoke install switch to make it install silently without any user input you can configure that within the installer.yaml file.

 

If we take the VMware Workstation Player as an example, we can see within its installer.yaml file it has a couple of configuration lines:

vmwareexample.PNG

 

Tags

 

Another thing that can be done when submitting is adding in tags in your manifest files.  Tags will help packages/software be found when folks are searching through the winget search command.

 

Searching for anything that relates to audioSearching for anything that relates to audio

Tags inside the VLC manifest fileTags inside the VLC manifest file

 

These tags help expand the search results beyond the software maker or name of the software.

 

Validating and Testing

 

Now that you’ve setup the manifest files it’s time to validate them and test they work as they should before you are ready to submit to the repository.

 

The first thing to do is validate the manifest files, it will check the syntax and configures it confirms to the standards that it should.  If you’ve went through the wingetcreate new process and made no manual changes to the files, then it should pass validation.  However, if you have made some manual changes then there might be changes you need to make to pass the validation test.

 

The command to use to validate your manifest is winget validate –manifest <manifest path>

 

The path to your manifest file will vary depending on your setup, however it should have been displayed to you at the end of the wingetcreate process.

 

Once you’ve had the output from the validate command and everything is okay, you can now move on to testing the manifest installs the package/piece of software that you’ve set it up to do. You might have to test this on a separate machine or uninstall the software if you already have it installed to test this properly.

 

The command you need to use is winget install –manifest <manifest path>

 

Hopefully, this will go through without any issue and install the software as it should.  If there are any issues, then you will need to look at resolving them and going through the process again until it works as expected.

 

Submitting the manifest

 

Now the manifest is validated and tested it’s time to submit your contribution to the Microsoft team to check and merge into the repository for the rest of the community to take advantage of.  

 

The first thing to do is set up a Token, that is a GitHub personal access token that can help avoid you having to put your password into the command line for authentication to GitHub.  If you haven’t set up a token before you can use this great guide from the GitHub team – Creating a personal access token.

 

Once you have the token you need to store it into your command line tool for winget to use, you do this by issue wingetcreate –store <token>

 

You are now ready to submit your creation to the Microsoft team for review.  To do this you should issue the command wingetcreate submit <path to manifest>

 

This will create a repository store within you GitHub profile and then create a pull request on the Windows Package Manager repository.

When that command is complete, it will open a browser session to the pull request (PR). Here you will be asked to complete a checklist.

 

checklistwingetcreate.PNG

 

It will also start to kick off some automated tests, validating the manifest and testing it does what it should do.  You can close your browser and check on this later, or you can watch it update its progress.

 

If any issues are detected you will have to address them, otherwise someone from the Windows Package Manager will check over the submission and either approve or give feedback on improvements.

 

The team do have some SLA’s that they are working on to ensure that your submissions are reviewed within a timely manner.

 

Call to Action

 

So, your call to action is look at Windows Package Manager, see if any of your favourite pieces of software aren’t there and get packaging!

 

Learn more!

If you want to learn more about Windows Package Manager and see a complete overview of it's features, be sure to check out the Microsoft Learn module - Explore the Windows Package Manager Tool.

 

1 Comment
Co-Authors
Version history
Last update:
‎Oct 01 2021 04:26 AM
Updated by: