About 204,000 results
Open links in new tab
  1. How to install .MSI using PowerShell - Stack Overflow

    Jul 24, 2013 · I am very new to PowerShell and have some difficulty with understanding. I want to install an .MSI inside PowerShell script. Can please explain me how to do that or provide me …

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

    Feb 13, 2020 · 60 I want to install an MSI file with msiexec into a specific directory. I am using: msiexec /i "msi path" INSTALLDIR="C:\myfolder" /qb Using "INSTALLDIR" is not working …

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

    114 I have a MSI package that I need to install if the package is not already installed. Also I need to install it silently. The package prompts user for: Installation location (C:\Program …

  4. windows installer - Batch script to install MSI - Stack Overflow

    Aug 10, 2014 · On double clicking on a MSI file, Windows looks in registry which application is associated with this file extension for opening action. And the application to use is msiexec …

  5. c# - Programmatically installing MSI packages - Stack Overflow

    Apr 23, 2011 · I would like to install a given .msi package programmatically from my C# .NET application, preferably with the installation parameters that my application specifies (like the …

  6. 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 2 years ago Modified 2 years ago Viewed 3k times

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

    Jan 31, 2019 · 8 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 …

  8. Where the MSI file is copied after the installation?

    Jan 15, 2010 · 20 I have to replace it because of a bug that blocks the software uninstallation, but Windows can't find the MSI file if I use the file search utility, but I think the MSI is stored …

  9. MSI installation quietly with default values - Stack Overflow

    Jul 9, 2014 · To install a .msi file silently, you should be able to use the /quiet switch with msiexec. If you need to customize anything, you can set property values like this: PROPERTY=Value …

  10. Installing an MSI file on a remote machine with PowerShell

    Jun 28, 2018 · I'm working on a utility to automate some processes and one task is to install a .msi file on a remote machine. The file is found in C:\Users\username on the remote machine …