| 1 | ## Note: if you get an error you might need to change the execution policy (i.e. enable Powershell) with |
|---|
| 2 | Set-ExecutionPolicy RemoteSigned -scope CurrentUser |
|---|
| 3 | |
|---|
| 4 | ## NOTE: install to specified folder 'c:\scoop' |
|---|
| 5 | ## https://techformist.com/install-scoop-for-command-line-nirvana/ |
|---|
| 6 | $env:SCOOP='E:\writable\scoop' |
|---|
| 7 | [environment]::setEnvironmentVariable('SCOOP',$env:SCOOP,'User') |
|---|
| 8 | iex (new-object net.webclient).downloadstring('https://get.scoop.sh') |
|---|
| 9 | |
|---|
| 10 | scoop install git |
|---|
| 11 | |
|---|
| 12 | # make Symlinks in Windows available |
|---|
| 13 | ## https://stackoverflow.com/questions/32847697/windows-specific-git-configuration-settings-where-are-they-set/32849199#32849199 |
|---|
| 14 | ## https://www.joshkel.com/2018/01/18/symlinks-in-windows/ |
|---|
| 15 | [environment]::setEnvironmentVariable('MSYS','winsymlinks:nativestrict','User') |
|---|
| 16 | |
|---|
| 17 | scoop bucket add java |
|---|
| 18 | scoop bucket add extras |
|---|
| 19 | |
|---|
| 20 | scoop install python |
|---|
| 21 | scoop install sbt |
|---|
| 22 | scoop install ojdkbuild8-full |
|---|
| 23 | scoop install chromedriver |
|---|
| 24 | scoop install vscode-portable |
|---|