Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 415885
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T18:25:31+00:00 2026-05-12T18:25:31+00:00

I have an MSI installer in which I need to add or modify a

  • 0

I have an MSI installer in which I need to add or modify a short text property from the command-line.

This has to be done after the installer is built; I cannot modify the process that produces the installer in the first place. It also has to be executed headless from a script.

When I say “property,” it could be an MSI property, a value that gets written to the registery at install-time, or any other mechanism that can get this short custom text into the installed application when it runs.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T18:25:31+00:00Added an answer on May 12, 2026 at 6:25 pm

    Example VBScript that you could use to update (or add) a property post-build…

        Option Explicit
    
        Const MSI_FILE = "myfile.msi"
    
    
        Dim installer, database, view
    
        Set installer = CreateObject("WindowsInstaller.Installer")
        Set database = installer.OpenDatabase (MSI_FILE, 1)
    
        ' Update
        Set view = database.OpenView ("UPDATE Property SET Value = '" & myproperty & "' WHERE Property = 'MYPROPERTY'")
    
        ' .. or Add (Insert)
        Set view = database.OpenView ("INSERT INTO Property (Property, Value) VALUES ('MYPROPERTY', '" & myproperty & "')")
        view.Execute
        database.Commit
    
        Set database = Nothing
        Set installer = Nothing
        Set view = Nothing
    

    For more information check out the Windows Installer SDK (part of the Windows SDK)

    There’s a bunch of example scripts that you can use from the command line to do various MSI manipulation tasks

    For example WiRunSQL.vbs lets you execute arbitrary SQL against an MSI.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Using WiX (Windows Installer XML) I have created an MSI installer which installs Word
Does anyone have an example AUTORUN.INF which can launch an MSI installer automatically when
I have a product which has been traditionally shipped as an MSI file. It
We have an MSI installer for a .Net WinForms app for Windows XP that
I used windows installer (msi project) and actually I have the msi file after
I have created a windows installer for a windows forms app as an MSI.
I have a main product which is installed using Wix and has its own
I have a Setup project (MSI) in VS2008 which installs my project. Within the
I have a C++/Qt/mingw app and would like to use msi.h (Microsoft Installer interface),
i have a input tag which is non editable, but some times i need

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.