-
Notifications
You must be signed in to change notification settings - Fork 22
RZGet
RZGet is a portable command-line tool to update and install Software from the RuckZuck Repository or from local JSON Files. It's the successor of RZUpdate.exe.
Download: https://github.com/rzander/ruckzuck/releases/download/1.7.1.5/RZGet.exe
Install:
Install a Software from Shortname : RZGet.exe install "<Shortname>" ["<Shortname2>"]
Install a Software from JSON File : RZGet.exe install "<JSON full path>" ["<JSON full path>"]
Install a Sepcific Version : RZGet.exe install --name "<ProductName>" --vendor "<Manufacturer>" --version "<ProductVersion>"
Update:
Update all missing updates : RZGet.exe update --all
Update missing updates with excludes: RZGet.exe update --all --exclude "<Shortname>;[<Shortname2>]"
Show all missing updates : RZGet.exe update --list --all
check if a Software requires an update : RZGet.exe update --list "<Shortname>"
Update a Software from Shortname : RZGet.exe update "<Shortname>" ["<Shortname2>"]
Note: to exclude multiple products with spaces, you have to set them in double-quotes:
--exclude "Shortname A;Shortname B;Shortname C"
Show:
Show Metadata : RZGet.exe show "<Shortname>"
Show Metadata for a specific Version : RZGet.exe show --name "<ProductName>" --vendor "<Manufacturer>" --version "<ProductVersion>"
Search:
Show full Catalog JSON: RZGet.exe search
Search for a Keyword: RZGet.exe search zip
Search SW in a Category: RZGet.exe search --categories compression
Search for installed SW: RZGet.exe search --isinstalled true
Search for a manufacturer: RZGet.exe search --manufacturer zander
Search for a shortname and return PowerShell Object: RZGet.exe search --shortname ruckzuck | convertfrom-json
UnInstall:
UnInstall a Software from Shortname : RZGet.exe uninstall "<Shortname>"[;"<Shortname2>"] [/cleanup]
UnInstall a Software from JSON File : RZGet.exe uninstall "<JSON full path>"[;"<JSON full path>"]
UnInstall a Sepcific Version : RZGet.exe uninstall --name "<ProductName>" --vendor "<Manufacturer>" --version "<ProductVersion>"