this is my Install CMD file is doing
@echo off
cls
echo --------------------------------------------------------
echo .
echo .
echo . Installing VLC Media Player - Please Wait
echo . Window will close once installed
REM Uninstall existing VLC version
if exist "%PROGRAMFILES%\VideoLAN\VLC\uninstall.exe" "%PROGRAMFILES%\VideoLAN\VLC\uninstall.exe" /S
if exist "%PROGRAMFILES(x86)%\VideoLAN\VLC\uninstall.exe" "%PROGRAMFILES% (x86)\VideoLAN\VLC\uninstall.exe" /S
:: Wait for 20 seconds
ping -n 20 127.0.0.1 > NUL
REM Run VLC Installer
"%~dp0vlc-2.2.4-win32.exe" /language=en_GB /S
REM Removes VLC Desktop Icon - Windows XP
if exist "%allusersprofile%\Desktop\VLC media player.lnk" del "%allusersprofile%\Desktop\VLC media player.lnk" /S
REM Removes VLC Desktop Icon - Windows 7
if exist "%public%\Desktop\VLC media player.lnk" del "%public%\Desktop\VLC media player.lnk" /S
REM Remove all the useless shortcuts from Program Menu
if exist "%ProgramData%\Microsoft\Windows\Start Menu\Programs\VideoLAN\Documentation.lnk" del "%ProgramData%\Microsoft\Windows\Start Menu\Programs\VideoLAN\Documentation.lnk" /S
if exist "%ProgramData%\Microsoft\Windows\Start Menu\Programs\VideoLAN\Release Notes.lnk" del "%ProgramData%\Microsoft\Windows\Start Menu\Programs\VideoLAN\Release Notes.lnk" /S
if exist "%ProgramData%\Microsoft\Windows\Start Menu\Programs\VideoLAN\VideoLAN Website.lnk" del "%ProgramData%\Microsoft\Windows\Start Menu\Programs\VideoLAN\VideoLAN Website.lnk" /S
if exist "%ProgramData%\Microsoft\Windows\Start Menu\Programs\VideoLAN\VLC media player - reset preferences and cache files.lnk" del "%ProgramData%\Microsoft\Windows\Start Menu\Programs\VideoLAN\VLC media player - reset preferences and cache files.lnk" /S
if exist "%ProgramData%\Microsoft\Windows\Start Menu\Programs\VideoLAN\VLC media player skinned.lnk" del "%ProgramData%\Microsoft\Windows\Start Menu\Programs\VideoLAN\VLC media player skinned.lnk" /S
REM Return exit code to SCCM
exit /B %EXIT_CODE%
How can i write to disable auto-updates and Disable Privacy and Network Policies.
I am going to use it to deploy via sccm