I am currently working on a project that would automate the installation of various environments we have within the company. I have several packages created using Chocolatey.
The problem that I am having is creating a dynamic custom installation file. The current internal website allows for users to checkmark the software they wish to install. The idea would be to then allow them to click an install button which would generate an .exe
file. The .exe
would run the command line scripts to install the Chocolatey packages.
An example of the command line after marking the Google Chrome and Notepad++ boxes would be:
> choco install googlechrome
> choco install notepadplusplus.install
I am wondering what would be the best way to go about creating an .exe
file dynamically.
Two examples I am getting inspiration from would be: