Advertisement
Guest User

chocolatey-win

a guest
Oct 15th, 2019
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 0.90 KB | None | 0 0
  1. @echo off
  2. SETLOCAL EnableDelayedExpansion
  3.  
  4. cls
  5.  
  6. :: install chocolatey (within administrative shell > powershell.exe)
  7. :: https://chocolatey.org/install
  8.  
  9. :: Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
  10.  
  11. :: install and upgrade apps with chocolatey
  12. :: https://chocolatey.org/docs/commands-upgrade
  13.  
  14. choco upgrade ^
  15.     --accept-license ^
  16.     --confirm ^
  17.     --install-if-not-installed ^
  18.     --verbose ^
  19.     7zip.install ^
  20.     adwcleaner ^
  21.     ccenhancer.install ^
  22.     ccleaner ^
  23.     choco-cleaner ^
  24.     choco-shortcuts-winconfig ^
  25.     chocolatey-core.extension ^
  26.     chocolatey-windowsupdate.extension ^
  27.     chocolateygui ^
  28.     clamwin ^
  29.     firefox ^
  30.     libreoffice-fresh ^
  31.     malwarebytes ^
  32.     open-shell ^
  33.     pdfcreator ^
  34.     shutup10 ^
  35.     sumatrapdf.install ^
  36.     vlc
  37.  
  38. pause&exit
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement