Passat1983ICTech Posted July 24, 2023 Posted July 24, 2023 (edited) Hi all trying to install vlc player put its not working form sccm just hangs I have the right command to install as well ive old other thing is i have changed the win file any ides what is going on thanks Edited July 24, 2023 by Dos_Box
Passat1983ICTech Posted July 24, 2023 Author Posted July 24, 2023 What command are you running for it? this is the cammand line msiexec /i "vlc-3.0.16-win64.msi" \qn
chris_uk Posted July 24, 2023 Posted July 24, 2023 this is the cammand line msiexec /i "vlc-3.0.16-win64.msi" \qn It should be /qn
Passat1983ICTech Posted July 24, 2023 Author Posted July 24, 2023 It should be /qn it is right but why dose it not work
Passat1983ICTech Posted July 24, 2023 Author Posted July 24, 2023 Anything in the Config Manager logs? how do you get to it ? log time science I used it thanks
localzuk Posted July 24, 2023 Posted July 24, 2023 All the log files are detailed here: https://learn.microsoft.com/en-us/mem/configmgr/core/plan-design/hierarchy/log-files They're best viewed with the CMTrace log viewer that is included with Config Manager.
6Foot2 Posted July 24, 2023 Posted July 24, 2023 it is right but why dose it not work You have "" where you should have "/" I can't test if this will/would make the difference (I no longer have access to SCCM)
Passat1983ICTech Posted July 24, 2023 Author Posted July 24, 2023 you haven't used a 32bit wim by mistake have you? I think its 64bit didn't do it - - - Updated - - - you haven't used a 32bit wim by mistake have you? I think its 64bit didn't do it
clareq Posted July 25, 2023 Posted July 25, 2023 Have you redistributed the application once you updated the file?
DavR Posted July 25, 2023 Posted July 25, 2023 It may not be relevant to the MSI installers, but we're using the exe version of VLC in a script, and my command line is below. We had to add /L=1033 to specify language. "vlc-3.0.11-win64.exe" /L=1033 /S
6Foot2 Posted July 25, 2023 Posted July 25, 2023 Suggestion: A thread where known working scripts for SCCM deployments for packages like VLC are posted to act as a library/reference. 3
mdrabble Posted August 29, 2023 Posted August 29, 2023 This is my VLC installation script for SCCM - I cannot take credit for it as I found it somewhere and cannot remember where. @echo off cls echo ---------------------------------------------------------- echo . . echo . . echo . Installing/Updating VLC Media Player - Please Wait . echo . This window will close once installed . echo . . echo . . echo ---------------------------------------------------------- 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 Silent install for 64-bit if defined ProgramFiles(x86) "%~dp0vlc-3.0.18-win64.exe" /language=en_GB /S if defined ProgramFiles(x86) exit REM Silent install for 32-bit "%~dp0vlc-3.0.18-win64.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 Return exit code to SCCM exit /B %EXIT_CODE%
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now