Skip to content

Instantly share code, notes, and snippets.

@mikepsinn
Forked from zaccb/install-choco-script.bat
Last active August 6, 2021 19:20
Show Gist options
  • Select an option

  • Save mikepsinn/cfef95e04db3da26f02083770a69616c to your computer and use it in GitHub Desktop.

Select an option

Save mikepsinn/cfef95e04db3da26f02083770a69616c to your computer and use it in GitHub Desktop.

Revisions

  1. mikepsinn revised this gist Aug 6, 2021. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion install-choco-script.bat
    Original file line number Diff line number Diff line change
    @@ -10,7 +10,7 @@ choco install firefox -fy
    choco install atom -fy
    choco install sublimetext3 -fy
    choco install visualstudiocode -fy
    choco install visualstudio2015community -fy
    :: choco install visualstudio2015community -fy

    :::: Dev tools
    choco install git -fy
  2. @zaccb zaccb revised this gist Dec 19, 2016. 1 changed file with 1 addition and 0 deletions.
    1 change: 1 addition & 0 deletions install-choco-script.bat
    Original file line number Diff line number Diff line change
    @@ -10,6 +10,7 @@ choco install firefox -fy
    choco install atom -fy
    choco install sublimetext3 -fy
    choco install visualstudiocode -fy
    choco install visualstudio2015community -fy

    :::: Dev tools
    choco install git -fy
  3. @zaccb zaccb revised this gist Dec 19, 2016. 1 changed file with 1 addition and 0 deletions.
    1 change: 1 addition & 0 deletions install-choco-script.bat
    Original file line number Diff line number Diff line change
    @@ -22,3 +22,4 @@ choco install vlc -fy
    choco install 7zip.install -fy
    choco install dropbox -fy
    choco install slack -fy
    choco install office365proplus -fy
  4. @zaccb zaccb revised this gist Dec 19, 2016. 1 changed file with 1 addition and 4 deletions.
    5 changes: 1 addition & 4 deletions install-choco-script.bat
    Original file line number Diff line number Diff line change
    @@ -1,9 +1,6 @@
    :: Install choco .exe and add choco to PATH
    @powershell -NoProfile -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"

    :: Open up the exeuction policy to allow for script execution
    Set-ExecutionPolicy Unrestricted

    :: Install all the packages
    :::: Browsers
    choco install googlechrome -fy
    @@ -15,7 +12,7 @@ choco install sublimetext3 -fy
    choco install visualstudiocode -fy

    :::: Dev tools
    choco install github -fy
    choco install git -fy
    choco install nodejs.install -fy

    :::: Media
  5. @zaccb zaccb revised this gist Dec 19, 2016. 1 changed file with 8 additions and 8 deletions.
    16 changes: 8 additions & 8 deletions install-choco-script.bat
    Original file line number Diff line number Diff line change
    @@ -1,27 +1,27 @@
    # Install choco .exe and add choco to PATH
    :: Install choco .exe and add choco to PATH
    @powershell -NoProfile -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"

    # Open up the exeuction policy to allow for script execution
    :: Open up the exeuction policy to allow for script execution
    Set-ExecutionPolicy Unrestricted

    # Install all the packages
    ## Browsers
    :: Install all the packages
    :::: Browsers
    choco install googlechrome -fy
    choco install firefox -fy

    ## Text editors / IDEs
    :::: Text editors / IDEs
    choco install atom -fy
    choco install sublimetext3 -fy
    choco install visualstudiocode -fy

    # Dev tools
    :::: Dev tools
    choco install github -fy
    choco install nodejs.install -fy

    # Media
    :::: Media
    choco install vlc -fy

    # Utilities + other
    :::: Utilities + other
    choco install 7zip.install -fy
    choco install dropbox -fy
    choco install slack -fy
  6. @zaccb zaccb created this gist Dec 19, 2016.
    27 changes: 27 additions & 0 deletions install-choco-script.bat
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,27 @@
    # Install choco .exe and add choco to PATH
    @powershell -NoProfile -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"

    # Open up the exeuction policy to allow for script execution
    Set-ExecutionPolicy Unrestricted

    # Install all the packages
    ## Browsers
    choco install googlechrome -fy
    choco install firefox -fy

    ## Text editors / IDEs
    choco install atom -fy
    choco install sublimetext3 -fy
    choco install visualstudiocode -fy

    # Dev tools
    choco install github -fy
    choco install nodejs.install -fy

    # Media
    choco install vlc -fy

    # Utilities + other
    choco install 7zip.install -fy
    choco install dropbox -fy
    choco install slack -fy