Windows Package Manager can help you export and import a collection of software!

This post has been republished via RSS; it originally appeared at: New blog articles in Microsoft Tech Community.

Have you ever got your PC to the state where it has all the settings and software installed and configured that you need to use and it’s just in the right state for your daily tasks and then bam something happens, and you need to rebuild or start from scratch with a new PC?

Yip, I’ve been there and it’s always super annoying trying to get your PC back to the state you had it in before.  Thankfully, a lot of things are getting better, and you have technology that can sync your settings that can then be pulled down again easily speeding up the rebuild of your PC to the way you like it.  But what about the software you like to have installed with that specific version installed that does just what you want?

 

Well, this is where Windows Package Manager can come into play!

 

What is it?

 

Windows Package Manager is an open-source project that Microsoft announced at Build 2020 and version 1.0 was released at Build 2021.  It can help you manage and install software onto your machines in an easy and consistent way.

 

It’s straightforward to get it installed on your machine and start installing software.

 

Exporting your software list

So how can it help with the initial problem, well the Windows Package Manager has an import and export features that allows you to export a list of software installed on your PC and then use that file to install the same software on another machine.   And I might be a bit biased, but I really like this feature, so let me show you how it works.

 

Within Windows Package Manager installed on your machine open your favourite command shell, I like Windows Terminal.

 

Enter the command:

 

winget export -o nameoflist.json

 

This will export a list of software that is installed on your machine to a file location of your choosing.  The file will be a JSON file.

 

Windows Package Manager export commandWindows Package Manager export command

 

Windows Package Manager export listWindows Package Manager export list

 

As you can see from the output file picture above Windows Package Manager lists out each of the software that’s installed.

You do have another option when exporting the list. You can use this command:

 

winget export -o nameoffile.json --include-versions

 

Windows Package Manager export with versionsWindows Package Manager export with versions

 

Windows Package Manager export list with versionsWindows Package Manager export list with versions

 

Now you can see from the output file the file contains the version of software you have as well, so if you have a need for a specific version to be installed and want to take a note of that you can.  

 

Editing the output file

Now what happens if you want a specific version of a specific piece of software, but you don’t care about the versions of the other?

Well, you can edit the output file to suit your needs.  As I said earlier it’s a JSON file so can be easily edited within something like Visual Studio Code.

 

Windows Package Manager modify export listWindows Package Manager modify export list

 

Hopefully, you can see from that short clip, that Intellisense within Visual Studio Code is helping to identify where my syntax is wrong, in this case by leaving trailing commas and accidentally deleting quotation marks I need.

 

Import onto another machine

Now that we have a list of software that we like to have installed, we can start to use this on other machines.

 

So transfer the JSON file you’ve created to another machine and make sure that you have Windows Package Manager installed.

 

Now you have the JSON file and Windows Package Manager setup it’s time to use that file to install the software you want, with the versions you prefer.

 

With the winget import command there are some switches that you can use when importing.  You have --ignore-unavailable and --ignore-versions.

 

The --ignore-unavailable command will continue if any packages are unavailable and the --ignore-versions will ignore any specified versions in the import file and install the latest version instead.

 

Your needs and wants will depend on how you use those switches.  For me I’m going to take my JSON file with listed software and versions and install as per that file with this command:

 

winget import –import-file installlistversion.json --ignore-unavailable

 

Windows Package Manager import commandWindows Package Manager import command

 

After a few minutes, the software I want is now installed on that second machine!

 

Give it a try!

I’d love to hear how you are using this feature in your environment or if you have any feedback after using it!

Leave a Reply

Your email address will not be published. Required fields are marked *

*

This site uses Akismet to reduce spam. Learn how your comment data is processed.