Thanks for the link to that msi, but in digging around this board some more it appeared people were having others with it. I whipped up a little something that enabled me to deploy this via SCCM (end result is an .exe not a .msi though) but it seems to work for what I need.
I used iexpress.exe (remember to build vlc 2.0.2 x86 off a x86 machine & x64 on a x64 machine...building it via iexpress.exe off x64 wont execute on a x86 os).
for x64 I used the following for a install.bat - (to which I am sure others have better variables, suggestions welcome)
%~dp0vlc-2.0.2-win64.exe /S
mkdir "%APPDATA%\VLC\"
copy %~dp0vlcrc "%APPDATA%\VLC\"
copy %~dp0vlc-qt-interface.ini "%APPDATA%\VLC\"
mkdir "C:\Users\Default\AppData\Roaming\VLC\"
copy %~dp0vlcrc "C:\Users\Default\AppData\Roaming\VLC"
copy %~dp0vlc-qt-interface.ini "C:\Users\Default\AppData\Roaming\VLC"
del "%PUBLIC%\Desktop\VLC media player.lnk"
del "%ALLUSERSPROFILE%\Microsoft\Windows\Start Menu\Programs\VideoLAN\Documentation.lnk"
del "%ALLUSERSPROFILE%\Microsoft\Windows\Start Menu\Programs\VideoLAN\Release Notes.lnk"
del "%ALLUSERSPROFILE%\Microsoft\Windows\Start Menu\Programs\VideoLAN\Reset VLC media player preferences and cache files.lnk"
del "%ALLUSERSPROFILE%\Microsoft\Windows\Start Menu\Programs\VideoLAN\VideoLAN Website.lnk"
del "%ALLUSERSPROFILE%\Microsoft\Windows\Start Menu\Programs\VideoLAN\VLC media player skinned.lnk"
then the following for x86 - (again, better variables are welcome) -
%~dp0vlc-2.0.2-win32.exe /S
mkdir "%APPDATA%\VLC\"
mkdir "%SystemDrive%\Documents and Settings\Default User\Application Data\VLC\"
copy %~dp0vlcrc "%APPDATA%\VLC\"
copy %~dp0vlc-qt-interface.ini "%APPDATA%\VLC\"
copy %~dp0vlcrc "%SystemDrive%\Documents and Settings\Default User\Application Data\VLC\"
copy %~dp0vlc-qt-interface.ini "%SystemDrive%\Documents and Settings\Default User\Application Data\VLC\"
del "%ALLUSERSPROFILE%\Desktop\VLC media player.lnk"
del "C:\Documents and Settings\All Users\Start Menu\Programs\VideoLAN\Documentation.lnk"
del "C:\Documents and Settings\All Users\Start Menu\Programs\VideoLAN\Release Notes.lnk"
del "C:\Documents and Settings\All Users\Start Menu\Programs\VideoLAN\Reset VLC media player preferences and cache files.lnk"
del "C:\Documents and Settings\All Users\Start Menu\Programs\VideoLAN\VideoLAN Website.lnk"
del "C:\Documents and Settings\All Users\Start Menu\Programs\VideoLAN\VLC media player skinned.lnk"
The 2 files I copy over vlc-qt-interface.ini & vlcrc simply have some custom changes (autoupdates disabled, etc).
I then run it through iexpress & include all 4 files, making sure to remember to tell it cmd /c install.bat for the install line -
http://renegadetech.blogspot.com/2006/0 ... -file.html
http://www.migee.com/2010/09/17/iexpres ... ocess-fix/
At that point you can take the output & just run it, it should be completely unattended & cleanup after itself. Not elegant & no where near as clean as a .MSI, but "good'nuff"....