About 50 results
Open links in new tab
  1. What does /v/qn parameter do for windows silent installers?

    This page says to do a silent install you pass in the parameters /s /v/qn. It mentions what /s does - silent install - but not what /v/qn does. So what does it do? Why the weird format? (on one

  2. windows - Silent Install of MSI - Server Fault

    Jun 23, 2009 · Examples: msiexec /package Application.msi /quiet msiexec /uninstall Application.msi /quiet msiexec /update msipatch.msp /quiet msiexec /uninstall msipatch.msp /package …

  3. Silent unattended uninstall switches for vmtools? - Server Fault

    Jun 4, 2020 · Looking for the NON-MSIEXEC totally silent uninstall switches for vmtools. I know the silent install is VMware-tools--x86_64.exe /s /v /qn I just need the uninstall, I feel like it would be simila...

  4. Silently uninstall using msiexec without closing explorer.exe

    This script seems total overkill for uninstalling an application. For a simple uninstall (without the rather dubious looking cleanup script entries above), you simply uninstall from the command line with …

  5. Is there anyway to get msiexec to echo to stdout instead of logging to ...

    At the command line interface level, you can also set logging to flush its buffer immediately to file by adding the ! parameter: msiexec.exe /I "IsWiX.msi" /QN /L*V! "C:\msilog.log" This means the log file …

  6. Powershell - Invoke-command does not run the msiexec.exe

    I want to install the TortoiseSVN-client on a bunch of servers, using Powershell remoting. Basic operations work, but the below command won't work as remoting Invoke-Command -ComputerName …

  7. windows installer - SCCM application deployment detection fails at ...

    Sep 18, 2024 · The installation method uses a short .bat script to run the app's installation program in silent mode and select the correct settings file for an embedded msi: %~dp0MyInstaller.exe /s /v"/qn …

  8. How can I speed up MSI package install and uninstall?

    May 13, 2014 · The most recent update to Windows Installer at the time of writing, Windows Installer 5 (available on Windows Server 2012, Windows 8, Windows Server 2008 R2 or Windows 7), features …

  9. windows - When running silent uninstalls of MSIs, how do you know …

    Jun 9, 2015 · If you have a msi you want to uninstall from the command line, doing MsiExec.exe /qn /X{26A24AE4-039D-4CA4-87B4-2F83217045F0} /norestart for instance, returns immediately. But …

  10. Install .msi from script, detect when install is done

    Apr 13, 2017 · Don't know how Python handles passing commands off to Windows/DOS, but using a plain batch file and the start /wait command the batch file stops and waits until the MSI is done …