Skip to main content

Posts

Showing posts with the label TortoiseSVN

Silent Install of TortoiseSVN

What is It? TortoiseSVN   is an  Apache ™  Subversion (SVN)  client, implemented as a Windows shell extension. It's intuitive and easy to use, since it doesn't require the Subversion command line client to run. The source is ava ilable for dow nload  here . How to Install Silently? To Install: Step 1:  Download the source from  web  and get the installer "TortoiseSVN-1.9.5.27581-x64-svn-1.9.5.msi" Step 2:  Run following command: "%windir%\System32\msiexec.exe" /i  "TortoiseSVN-1.9.5.27581-x64-svn-1.9.5.msi" /qn /norestart            /i: to install the Windows Installer            /qn: silent install with no user interface            /norestart: suppresses any reboot prompt along-with hard reboot itself To Uninstall: Run following command: "%windir%\System32\msiexec.exe" /x  {product code} /qn /noresta...