I am looking for a way to install TortoiseSVN via a batch file in order to automate the process of setting it up on several Windows machines.
Is it possible to do that maybe with the official installer, or even by using some 3rd party tool, with which i can just type in a command in a batch file, double click it and get it to install with no needed input from the user (and preferably with no GUI..) ?
Thanks in advance!
Answer
It looks like they provide a MSI installer which couldn't be easier to automate. Just run it with /qn, for more see the Command-Line Options.
So you can have a 1 line BAT file with the following:
msiexec /i [msi file] /qn
No comments:
Post a Comment