- Download the latest release of hoop command line for your architecture (usually hoop-windows-amd64) and save in the Downloads folder
- Extract the file using winrar or winzip
- Move the extracted file
hoop.exe
to the folderC:\Windows\System32\
- Open a terminal session and type
hoop version
, if it show the version of program it’s installed with success.
Run this script in the command prompt to automate steps 2 through 4:
powershell# enter in the Downloads folder cd $HOME/Downloads # change <FILE> with the name of the downloaded file tar -xf <FILE> # move the extracted file to C:\Windows\System32 mv hoop.exe C:\Windows\System32 # check if it's working hoop version
:::