@echo off

REM ################################################################
REM Installs: TortoiseSVN 1.7.9
REM Download link: http://tortoisesvn.net/downloads.html#
REM Contact information:
REM Documentation:
REM Created:
REM Modifyed:
REM Info:
REM Program reboots during install: No
REM Windows needs to be rebooted by SCCM after install: No
REM User interaction at install: No
REM Application dependencies: No
REM ################################################################

setlocal

REM Kör setup

msiexec /package TortoiseSVN-1.7.9.23248-x64-svn-1.7.6.msi /quiet

REM Kopierar filer
xcopy /h /e "%~dp0bin*.*" "C:\Program Files\TortoiseSVN\bin\" /Y

endlocal

REM Return exit code to SCCM

exit /B %EXIT_CODE%

  • No labels