Changes between Version 6 and Version 7 of jazz/20-03-30
- Timestamp:
- Apr 6, 2020, 10:34:45 AM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
jazz/20-03-30
v6 v7 6 6 ## Note: if you get an error you might need to change the execution policy (i.e. enable Powershell) with 7 7 Set-ExecutionPolicy RemoteSigned -scope CurrentUser 8 8 9 ## 9 10 ## https://techformist.com/install-scoop-for-command-line-nirvana/ … … 13 14 [environment]::setEnvironmentVariable('SCOOP_GLOBAL',$env:SCOOP_GLOBAL,'Machine') 14 15 iex (new-object net.webclient).downloadstring('https://get.scoop.sh') 16 17 ## make c:\scoop writable for different users 18 ## https://superuser.com/a/584653 19 20 icacls c:\scoop /grant Everyone:F /t 15 21 16 22 scoop install -g git … … 36 42 scoop install -g IntelliJ-IDEA-portable 37 43 scoop install -g PyCharm-portable 38 39 ## https://superuser.com/a/58465340 icacls c:\scoop /grant Everyone:F /t41 44 }}}