@echo off

REM ################################################################
REM Installs: Eclipse 3.7.0
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 Tar backup på befintlig installation
SET date
md "C:\dev\old\eclipse%date%"
move "C:\dev\eclipse" "C:\dev\old\eclipse%date%"

REM Skapar katalog
md "c:\dev\eclipse"

REM Kopierar filer
xcopy /h /e "%~dp0E*.*" "c:\dev\eclipse\" /Y

REM Skapar katalog
md "c:\dev\workspaces"

REM Kopierar filer
xcopy /h /e "%~dp0workspaces*.*" "c:\dev\workspaces\" /Y

endlocal

REM Return exit code to SCCM

exit /B %EXIT_CODE%

  • No labels