@echo off

REM ################################################################
REM Installs: VLC Player 2.0.5
REM
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 Installerar VLC Player 2.0.5

%~dp0vlc-2.0.5-win32.exe /L=1053 /S /NCRC

REM Tar bort skrivbordsgenväg
if exist "%PUBLIC%\desktop\VLC media player.lnk" del "%PUBLIC%\desktop\VLC media player.lnk"

endlocal

REM Return exit code to SCCM
exit /B %EXIT_CODE%

  • No labels