About 513,000 results
Open links in new tab
  1. What is the purpose of administrative installation initiated using ...

    Jun 2, 2020 · Windows Installer technology supports administrative installation. The command line for initiating administrative installation is: 'msiexec /a setup.msi'. I want to understand the purpose of this t...

  2. How to get msiexec to install and/or reinstall as necessary

    Jan 18, 2016 · What about trying: msiexec /i <path to msi> ADDLOCAL=<top level feature name> You can get the top level feature (s) by opening the package in Orca.exe and looking at the Feature table.

  3. Difference between msiexec log /lv VS /l*v - Stack Overflow

    Oct 13, 2020 · Microsoft's documentation for msiexec says this: /lv Turns on logging and includes verbose output in the output log file. /l* Turns on logging and logs all information, except verbose …

  4. How do you install an MSI with msiexec into a specific directory?

    Feb 13, 2020 · TARGETDIR represents the installation directory for an InstallScript installation, or for an administrative Windows Installer based installation (when the user runs Setup.exe or MsiExec.exe …

  5. How to use Start-Process and msiexec to install from a .msi file?

    Jan 4, 2024 · How to use Start-Process and msiexec to install from a .msi file? [duplicate] Asked 1 year, 11 months ago Modified 1 year, 11 months ago Viewed 3k times

  6. Powershell Call MSI with Arguments - Stack Overflow

    I'm working on a powershell script to install Autodesk products and I am having some trouble. I've tried this many different ways and keep running into errors. Using double quotes (Start-Process "

  7. wix - Silent installation of an MSI package - Stack Overflow

    This answer provides details on the msiexec.exe command line options and a description of how to find the "public properties" that you can set on the command line at install time.

  8. Make msiexec wait until the installation completes

    Jul 20, 2016 · 8 I am trying to run a powershell script to install an application using msiexec.exe. msiexec.exe /a "C:\Users\tempuser\Desktop\AppInstall.msi" /passive wait So I want the installation to …

  9. logging - Create an MSI log file - Stack Overflow

    msiexec /i "installer.msi" /l*v "log.log" msiexec /i "installer.msi" /l*v msiexec /l*v /i "installer.msi" msiexec /l*v "log.log" /i "installer.msi" and several other variations of the command, but it always pops up the …

  10. Enable installation logs for MSI installer without any command line ...

    Jan 31, 2019 · How can I enable logging in my MSI project and set MsiLogFileLocation? Now I am running my setup.msi with command line arguments: msiexec /i install.msi /l*v InstallLog.log I want to …