Calling clist -l
gives me a list of packages with versions:
7zip.install 16.04
ccleaner 5.28.6005
ConEmu 17.3.16.0
...
How do I ge
Here is how I generated my packages.config:
$packageXml = ''
choco list -lo -r | % { $_ -split '\|' | select -first 1 } | % { $packageXml += "`n`t " }
Set-Content "`n$packageXml`n " -Path .\packages.config
Once you have that, you take that file to the other machine and do:
choco install packages.config