
Originally Posted by
enjay
Does anyone have an MSI for VLC Media Player which they'd be willing to share? Alternatively, any suggestions for silently installing it, ideally without it becoming the default player (because that breaks AQA e-Science) but I can work around that if I need to.
Enjay VLC player has switches you can use to deploy the exe you don't need an MSI.
Here is what I Do:
1. send out a batch file to all workstations to un-install previous versions
Code:
REM Remove earlier official VideoLAN versions
"%ProgramFiles%\VideoLAN\VLC\uninstall.exe" /S
REM Tidy up the removal of earlier versions
rmdir /s /q "%ProgramFiles%\VideoLAN"
2. Copy the VLc exe to C:\WINDOWS\TEMP\vlc-1.1.11-win32.exe
3. Send a batch file to all workstations with the following syntax
Code:
CD /d C:\WINDOWS\TEMP
vlc-1.1.11-win32.exe /L=1033 /S
/L=1033 = Language code UK
/S silent install
Maybe this might be a better solution for you
Kili