AlimusSifar

Simplify Scoop - Windows

Nov 21st, 2022
248
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 0.89 KB | Source Code | 0 0
  1. @ECHO OFF
  2.  
  3. @REM "If git is not installed, Use this command"
  4. @REM scoop install git &&
  5. @REM git config --global credential.helper manager-core &&
  6.  
  7. @REM "Initialize scoop buckets"
  8. scoop add bucket extras &&
  9. scoop add bucket versions &&
  10. scoop add bucket java &&
  11. scoop add bucket php &&
  12.  
  13. @REM "Install scoop packages"
  14. scoop install vscode &&
  15. @REM "Add Visual Studio Code as a context menu option by running: change the dir_path"
  16. @REM reg import "D:\bin\apps\vscode\current\install-context.reg"
  17. @REM "For file associations, run: change the dir_path"
  18. @REM reg import "D:\bin\apps\vscode\current\install-associations.reg"
  19.  
  20. scoop install adb &&
  21. scoop install android-sdk &&
  22. scoop install android-studio &&
  23. scoop install temurin8-jdk &&
  24. START CMD /k "scoop install flutter" &&
  25.  
  26. @REM "Manually: Accept android licenses"
  27. @REM flutter doctor --android-licenses
  28.  
  29. @TIMEOUT 10
  30.  
Add Comment
Please, Sign In to add comment