via Delphi sorcery: Unattended Delphi installation – how?
Posted by jpluimers on 2015/02/03
Cool: this makes it way easier to do repeated Delphi installs for testing purposes:
Setup.exe /s LANGUAGE=English EN=TRUE DE=TRUE KEY1=XXXX KEY2=XXXXXX KEY3=XXXXXX KEY4=XXXX
There are many more parameters in Delphi sorcery: Unattended Delphi installation – how?, but the above is already a good start.
Thanks Stefan Glienke for having shared this!
–jeroen






garymueller2014 said
I have been looking for this, thanks to you and Stephan. This will help with my continuous deployment efforts along with a repeatable build server setup.
I also found the below if you need to do an uninstall…
<setup.exe> /s MODIFY=FALSE REMOVE=TRUE UNINSTALL=YES
jpluimers said
You are most welcome.
And thanks for this little uninstall gem:
setup.exe /s MODIFY=FALSE REMOVE=TRUE UNINSTALL=YES