jazz/20-04-25: chc-vhe-base.ps1

File chc-vhe-base.ps1, 963 bytes (added by jazz, 4 years ago)
Line 
1## Note: if you get an error you might need to change the execution policy (i.e. enable Powershell) with
2Set-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')
8iex (new-object net.webclient).downloadstring('https://get.scoop.sh')
9
10scoop 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
17scoop bucket add java
18scoop bucket add extras
19
20scoop install python
21scoop install sbt
22scoop install ojdkbuild8-full
23scoop install chromedriver
24scoop install vscode-portable