Scoop helps installed application from the command line



This content originally appeared on DEV Community and was authored by hardyweb

Bismillahirahmanirahim, nota ini merupakan nota rujukan aku sahaja. sesapa pun boleh guna.

Guna window powershell , execute command di bawah untuk install scoop.

Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
Invoke-RestMethod -Uri https://get.scoop.sh | Invoke-Expression

Dalam windows 11, kena buat work around sikit dalam proses install scoop , boleh semak sini

  1. https://stackoverflow.com/questions/74870579/error-installing-scoop-command-line-installer

  2. https://community.wappler.io/t/scoop-installer-failed/40795/2

Antara command yang biasa digunakan dalam scoop

1. Scoop install 7zip  // install perisian
2. scoop update 7zip // update perisian
3. scoop cleanup 7zip // remove perisian versi lama setelah update versi baru
4. scoop uninstall 7zip // remove perisian 
5. scoop status 

ada perisian yang tiada dalam senarai asas scoop, perlu masukkan menggunakan arahan

scoop bucket add extras

boleh tengok senarai bucket di sini untuk perisian-perisian lain ..

  1. https://scoop.netlify.app/buckets/
  2. https://rasa.github.io/scoop-directory/by-bucket


This content originally appeared on DEV Community and was authored by hardyweb