|
|
4 өдөр өмнө | |
|---|---|---|
| bin | 2 жил өмнө | |
| bucket | 4 өдөр өмнө | |
| deprecated | 1 жил өмнө | |
| docs | 3 сар өмнө | |
| programs | 2 сар өмнө | |
| scripts | 2 жил өмнө | |
| README.md | 8 сар өмнө | |
| scoop-bucket.code-workspace | 10 сар өмнө |
This is my "scoop" bucket list, for personal use. In order to install as a new bucket, run following:
scoop bucket add kunago https://git.kunago.com/kunago/scoop-bucket
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
Invoke-RestMethod -Uri https://get.scoop.sh | Invoke-Expression
If you need to set custom directories, run these:
# for user, run as user
$env:SCOOP='<user path>'
[Environment]::SetEnvironmentVariable('SCOOP', $env:SCOOP, 'User')
# globally, run as admin
$env:SCOOP_GLOBAL='<global path>'
[Environment]::SetEnvironmentVariable('SCOOP_GLOBAL', $env:SCOOP_GLOBAL, 'Machine')
In case you already set custom directories in past and need to remove them, run these:
# for user, run as user
[Environment]::SetEnvironmentVariable("SCOOP",$null,"User")
# globally, run as admin
[Environment]::SetEnvironmentVariable("SCOOP_GLOBAL",$null,"Machine")