0
I need to create a command line that will install TortoiseSVN and include the Subversion command line utilities.
What options on the msiexec.exe command line would tell the installer to include the command set?
TortoiseSVN-1.9.3.27038-x64-svn-1.9.3.msi
Try running
TortoiseSVN-1.9.3.27038-x64-svn-1.9.3.msi /?
in acmd
shell. – DavidPostill – 2016-04-26T16:54:07.687@DavidPostill - Using
/?
brings up the Microsoft msiexec.exe help dialog box. While it does mentionSetting Public Properties
, it does not show what properties can be set nor what they mean. – lit – 2016-04-26T17:12:38.853SlikSVN has an INSTALLLEVEL property which can be used to ensure that svnserve.exe is installed.
msiexec /q /i Slik-Subversion-1.7.9-x64.msi /log "%TEMP%\slik-subversion-install.log INSTALLLEVEL=300
– lit – 2016-04-26T17:14:12.800