Continously pop up of windows installer

Anil Kaul 0 Reputation points
2025-03-18T19:48:54.14+00:00

Windows ® Installer. V 5.0.26100.712 msiexec /Option <Required Parameter> [Optional Parameter] Install Options     </package | /i> <Product.msi>         Installs or configures a product     /a <Product.msi>         Administrative install - Installs a product on the network     /j<u|m> <Product.msi> [/t <Transform List>] [/g <Language ID>]         Advertises a product - m to all users, u to current user     </uninstall | /x> <Product.msi | ProductCode>         Uninstalls the product Display Options     /quiet         Quiet mode, no user interaction     /passive         Unattended mode - progress bar only     /q[n|b|r|f]         Sets user interface level         n - No UI         b - Basic UI         r - Reduced UI         f - Full UI (default)     /help         Help information Restart Options     /norestart         Do not restart after the installation is complete     /promptrestart         Prompts the user for restart if necessary     /forcerestart         Always restart the computer after installation Logging Options     /l[i|w|e|a|r|u|c|m|o|p|v|x|+|!|] <LogFile>         i - Status messages         w - Nonfatal warnings         e - All error messages         a - Start up of actions         r - Action-specific records         u - User requests         c - Initial UI parameters         m - Out-of-memory or fatal exit information         o - Out-of-disk-space messages         p - Terminal properties         v - Verbose output         x - Extra debugging information         + - Append to existing log file         ! - Flush each line to the log         * - Log all information, except for v and x options     /log <LogFile>         Equivalent of /l <LogFile> Update Options     /update <Update1.msp>[;Update2.msp]         Applies update(s)     /uninstall <PatchCodeGuid>[;Update2.msp] /package <Product.msi | ProductCode>         Remove update(s) for a product Repair Options     /f[p|e|c|m|s|o|d|a|u|v] <Product.msi | ProductCode>         Repairs a product         p - only if file is missing         o - if file is missing or an older version is installed (default)         e - if file is missing or an equal or older version is installed         d - if file is missing or a different version is installed         c - if file is missing or checksum does not match the calculated value         a - forces all files to be reinstalled         u - all required user-specific registry entries (default)         m - all required computer-specific registry entries (default)         s - all existing shortcuts (default)         v - runs from source and recaches local package Setting Public Properties     [PROPERTY=PropertyValue] Consult the Windows ® Installer SDK for additional documentation on the command line syntax. Copyright © Microsoft Corporation. All rights reserved. Portions of this software are based in part on the work of the Independent JPEG Group.

Windows for business | Windows Client for IT Pros | User experience | Other
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Anonymous
    2025-03-19T03:13:38.8366667+00:00

    Hello,

    It sounds like you’re encountering a situation where the Windows Installer (msiexec) is repeatedly launching, showing its help/usage text or similar pop‐up dialog. This kind of behavior often indicates that something—whether a system update, a scheduled installation, or even a misbehaving third‑party application—is triggering the installer service in an unexpected or corrupted way. Here are some troubleshooting steps you can try:

    1. Check for Pending or Stuck Installations or Updates

     • Sometimes a Windows update or another application installation isn’t completing as it should, causing Windows Installer to repeatedly launch.

     • Open Windows Update (or your update tool) and look for any pending downloads or error messages.

     • Check the “Programs and Features” list in the Control Panel to see if any application appears to be mid‑installation or “advertised” without having properly installed.

    1. Examine Event Viewer Logs

     • Open Event Viewer (type Event Viewer in the Start menu and open it).

     • Look under Windows Logs → Application for entries from “MsiInstaller.”

     • The logs might provide clues as to which product or update is causing the issue.

    1. Unregister and Reregister the Windows Installer Service

     • Corruption in the Windows Installer configuration can sometimes cause repeated pop-ups.

     • Open an elevated Command Prompt (right‑click Command Prompt and choose “Run as administrator”).

     • Type the following commands one at a time and press Enter after each:

       msiexec /unregister

       msiexec /regserver

     • This process will unregister and then reregister the Windows Installer service. Reboot your computer afterward to see if the issue is resolved.

    1. Scan for Corrupted System Files

     • Run the System File Checker to fix potential system file issues that might be affecting Windows Installer.

     • Open an elevated Command Prompt and type:

       sfc /scannow

     • Wait for the process to finish and follow any instructions, then restart your computer.

    1. Check Startup Items and Scheduled Tasks

     • Sometimes an application scheduled to run at startup (or as a scheduled task) may be triggering an installation repeatedly.

     • Use Task Manager (Startup tab) or search for “Task Scheduler” and review tasks that might be related to installations or updates.

     • Disable any suspicious or unnecessary tasks temporarily to test if the behavior stops.

    1. Clean Boot

     • Perform a Clean Boot to start Windows with only essential services. This can help determine if a third‑party software or service is causing the problem.

     • Search for “msconfig” in the Start menu, open System Configuration, and under the “Services” tab, check “Hide all Microsoft services” then click “Disable all.” Also, disable startup items and restart.

     • If the issue stops in a clean boot environment, re‑enable items one by one to pinpoint the culprit.

    1. Update or Repair the Application Triggering the Installer

     • If you identify a specific application that seems to be initiating Windows Installer (via logs or by noticing which software recently failed to install/update), consider repairing or reinstalling that application.


    If the Answer is helpful, please click "Accept Answer" and upvote it.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.