Getting started with Chocolatey packages
Simple example Taken from chocolatey.org documentation that shows you how to create a basic package to install Notepad++. Open a command prompt and navigate to a preferred location and enter 'choco new notepadplusplus' to create the package files etc: This will create the basic structure as shown: notepadplusplus.nuspec Edit the notepadplusplus.nuspec file as follows (modify the version number according to what Notepad++ version yuo are installing) [code lang="xml"] <?xml version="1.0" encoding="utf-8"?> <package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd"> <metadata> <id>notepadplusplus</id> <title>Notepad++ (Install)</title> <version>7.0</version> <authors>Don Ho</authors> <owners>my company</owners> <!-- also known as package mantainers --> <description>Notepad++ is a free (as ...