@echo off

REM ################################################################
REM Installs: CRAN R
REM Download link: http://www...
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
%~dp0R-2.15.1-win.exe /VERYSILENT

REM Tar bort skrivbordsgenvägar

if exist "%PUBLIC%\desktop\R i386 2.15.1.lnk" del "%PUBLIC%\desktop\R i386 2.15.1.lnk"
if exist "%PUBLIC%\desktop\R x64 2.15.1.lnk" del "%PUBLIC%\desktop\R x64 2.15.1.lnk"

endlocal

REM Return exit code to SCCM

exit /B %EXIT_CODE%

  • No labels