Last active
October 15, 2021 03:23
-
-
Save mawiseman/54fef1543f6ac8c06a16a49a15d80b36 to your computer and use it in GitHub Desktop.
Chocolatey package file to install default applications
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<!-- choco install chocolatey-packages.config -y --> | |
<packages> | |
<!-- Windows Features --> | |
<package id="webdeploy" /> | |
<package id="urlrewrite" /> | |
<!-- Default Apps --> | |
<package id="googlechrome" /> | |
<package id="firefox" /> | |
<package id="notepadplusplus" /> | |
<package id="lastpass" /> | |
<package id="slack" /> | |
<!-- Dev Tools --> | |
<package id="vscode" /> | |
<package id="microsft-windows-terminal" /> | |
<package id="7zip.install" /> | |
<package id="beyondcompare" /> | |
<package id="mRemoteNG" /> | |
<package id="postman" /> | |
<package id="git-fork" /> | |
<package id="putty.install" /> | |
<package id="windirstat" /> | |
<package id="filezilla" /> | |
<package id="iishosts" /> | |
<!-- Sitecore --> | |
<package id="nodejs" /> | |
<package id="openjdk" /> <!-- might just be able to use "jre8" --> | |
<package id="mongodb" version="3.0.3" /> <!-- Version is important https://kb.sitecore.net/articles/633863 --> | |
</packages> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment