[SOLVED] VLC Media Player Package
Published: January 25, 2018 - 1:12 PM
Hello,
I downloaded the VLC package from the TIS repository and deployed it on a test machine.
Contrary to what I expected, I get the security policy screen at startup.
After analysis, there are in the code the options " --no-qt-privacy-ask" and " --no-qt-updates-notif":
if iswin64():
install_exe_if_needed('vlc-%s-win64.exe' % versionpaquet,silentflags='/S --no-qt-privacy-ask --no-qt-updates-notif',key='VLC media player',min_version=versionpaquet,killbefore=['vlc.exe'])
else:
install_exe_if_needed('vlc-%s-win32.exe' % versionpaquet,silentflags='/S --no-qt-privacy-ask --no-qt-updates-notif',key='VLC media player',min_version=versionpaquet,killbefore=['vlc.exe'])
While watching the VLC FAQ ((https://wiki.videolan.org/WindowsFAQ-2.1.x/), it seems, unless I'm mistaken, that these options must be passed when running the binary and not during installation.
Do you have a way to make these options permanent during installation or in a configuration file?
Thanks in advance.
I downloaded the VLC package from the TIS repository and deployed it on a test machine.
Contrary to what I expected, I get the security policy screen at startup.
After analysis, there are in the code the options " --no-qt-privacy-ask" and " --no-qt-updates-notif":
if iswin64():
install_exe_if_needed('vlc-%s-win64.exe' % versionpaquet,silentflags='/S --no-qt-privacy-ask --no-qt-updates-notif',key='VLC media player',min_version=versionpaquet,killbefore=['vlc.exe'])
else:
install_exe_if_needed('vlc-%s-win32.exe' % versionpaquet,silentflags='/S --no-qt-privacy-ask --no-qt-updates-notif',key='VLC media player',min_version=versionpaquet,killbefore=['vlc.exe'])
While watching the VLC FAQ ((https://wiki.videolan.org/WindowsFAQ-2.1.x/), it seems, unless I'm mistaken, that these options must be passed when running the binary and not during installation.
Do you have a way to make these options permanent during installation or in a configuration file?
Thanks in advance.