Advertisement
sebbu

windows updates

Sep 29th, 2024
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. @echo off
  2. echo winget 1
  3. winget upgrade --include-unknown
  4. echo winget 2
  5. winget upgrade --include-unknown --all
  6. echo scoop 1
  7. call scoop update
  8. echo scoop 2
  9. call scoop update "*"
  10. echo choco 1
  11. sudo choco upgrade chocolatey
  12. echo choco 2
  13. sudo choco upgrade all
  14. echo nuget
  15. nuget update -self
  16. echo npm (node)
  17. call npm update
  18. echo go
  19. go-global-update
  20. echo cargo
  21. cargo install-update --all
  22. echo yarn (node)
  23. call yarn upgrade-interactive
  24. echo conda 1
  25. conda update -n base conda
  26. echo conda 2
  27. conda update --all
  28.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement