I wanted to use Chocolatey to install GeoServer; since there's no package for it in the community feed, I chose to create my own package based on their official (NSIS) Windows installer.
I'm currently using the Install-ChocolateyPackage commandlet's -SilentArgs parameter to hide the installer window:
Install-ChocolateyPackage `
-PackageName $Env:ChocolateyPackageName `
-Url "http://sourceforge.net/.../geoserver-2.14.0.exe" `
-FileType "exe" `
-SilentArgs "/S /D..."
However, the installer has several interesting prompts that e.g. give you the possibility to customize the web server's port number...

Is there a way to feed the fields of the installer from the command line, i.e. like /D for the installation path?