rzander / ruckzuck

software package manager for windows
https://ruckzuck.tools
Microsoft Public License
221 stars 20 forks source link

show multiple programs #249

Closed famko09 closed 6 months ago

famko09 commented 6 months ago

is it possible to show the metadata of multiple items ? like this: : RZGet.exe show "prog1", "prog2", "prog3""

rzander commented 6 months ago

Can you give some more information about the use-case of your request...

famko09 commented 6 months ago

this "RZGet.exe update --list --all" gives all the available updates but without the versions. This: "RZGet.exe show " gives the metadata including the versions ect. Would be nice if you could add more then one program name and show more info about the the programs that need an update. Solved it now to search in the json file and extract the things i needed. thank for answering me, it a nice peace of software!

rzander commented 6 months ago

if you need the version, I would recommend to use $cat = &".\RZGet.exe" search | ConvertFrom-Json to get the full catalog, and then search the $cat object for the required information... This uses the local cached %temp%\rzcat.json or does one web-request to get the catalog.

If you are using .\RZGet.exe show <shortname>, it does call the Web API for every request...