Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • You can install individual packages via the cmd line like so: choco install <name of package> -y
  • But another way is to create an xml file containing all the packages you want to install:
  • create a file e.g. tis-dev-packages.config which looks something like this:


    <?xml version="1.0" encoding="utf-8"?> 

    <packages> 

      <package id="7zip"/> 

      <package id="openjdk11"/> 

      <package id="jdk8"/> 

      <package id="nodejs-lts"/> 

      <package id="maven"/> 

      <package id="gradle"/> 

      <package id="git"/> 

      <package id="docker-desktop"/> 

      <package id="notepadplusplus"/> 

      <package id="intellijidea-community"/> 

      <package id="vscode"/> 

      <package id="postman"/> 

      <package id="dbeaver"/> 

      <package id="microsoft-teams"/> 

      <package id="slack"/> 

      <package id="mousewithoutborders"/> 

      <package id="mysql.workbench"/> 


  •   <package id="awscli"/>

  • </packages> 

       
  • Then in the cmd line: choco install <file_path to the above file>/tis-dev-packages.config -y 

...