Replies: 7 comments 11 replies
-
A good start. Thanks. |
Beta Was this translation helpful? Give feedback.
-
So some comments:
A good start. AND a good start on an object model for eventual PowerShell use. |
Beta Was this translation helpful? Give feedback.
-
Re 1. Good luck with that! :-) Re 2. Re 4. installer.exe /blah1 foo.bar /s myuser.txt /o c:\foo\bar\
``
In PowerShell, this might look sort of like
installer.exe /blah1 $input1 /s $input2 /o $output1 With azure templates you have variables ($input1, etc) that are substituted at run time. Re 10 |
Beta Was this translation helpful? Give feedback.
-
I'm wondering which programs will be exported? Anything that was installed through Also, will we be able to pick items to import/export manually? Maybe export/import everything by default, but add a flag/switch that allows us to unselect certain items. |
Beta Was this translation helpful? Give feedback.
-
We're about to make "import" a stable feature that doesn't require the experimental setting. Several additional features came up in this thread. Please make a new issue for each one. The smaller they are, the faster we can implement them. If they have lots of 👍 that moves them up in priority. We do support versions in the file with the --include-versions argument in |
Beta Was this translation helpful? Give feedback.
-
Export is still very lacking in terms of matching ARP entries with manifests in the winget default source or the msstore experimental source. We're still enhancing that logic before we release export as stable. It also has the prerequisite of |
Beta Was this translation helpful? Give feedback.
-
Import is great, however it does not work when some packages names could correspond to multiple packages. |
Beta Was this translation helpful? Give feedback.
-
Hello everybody,
We're working on the import / export feature for the package manager. I wanted to share what we're thinking for the JSON schema.
The package manager will be able to export the list of packages that have been installed from a known source, and subsequently "import" the list of packages onto another machine.
Beta Was this translation helpful? Give feedback.
All reactions