Silent Installer

A "silent" installation of the eVolve software is an implicit acceptance of the EULA agreement. Click the following link to view the most recent version of the eVolve EULA Agreement. The EULA is also found in the following local directory - C:\Program Files\eVolve\eVolve Mechanical for Revit 20xx\Resources\Licenses.

Overview

The eVolve Mechanical software may now be installed "silently" via a command line prompt so that updates can be performed via scripts.

This can only be used for updating the software. The initial install must happen at the local computer, because of user registration.

Notes and Limitations

  • Because the software is distributed as an .msi file, the scope of this is limited to only supporting silent installations via Windows MsiExec tool
  • Silent installs must be launched with escalated permissions(run the command prompt as an administrator)
  • The installation folder cannot be specified (the default location is used)
  • All failures occur silently (with the exception of Windows failures outside of eVolve's control).
  • eVolve cannot perform any error reporting outside of what MsiExec provides
  • Known possible failure conditions:
    • Silent install not launched with escalated rights
  • If the respective the Revit version for the installer is not detected, a warning is displayed, but will continue if dismissed. Checks used (both must pass or warning is displayed):
    • Directory exists: %ALLUSERSPROFILE%\Autodesk\Revit\Addins\(RevitVersion)
    • Registry path exists: HKLM\SOFTWARE\Autodesk\Revit\Autodesk Revit (RevitVersion)\Components

Usage Notes

The following command (console must be run with escalated rights) launches the installer in the background and runs the installation silently.

MsiExec /i eVolveMechancialForRevit-2020.msi /quiet

Note: A success or failure notice is not displayed after the installation is complete.

Tip: By prefacing the installation command with START /WAIT the installer is launched in the background - the console waits until the install is complete. To determine the success/failure of the installation, run the following command%ERRORLEVEL% ; a 0 value is successful, any other value is a failure.

Typically, a failure will be due to either invalid permissions (not launched in an admin console). Full diagnostics may be viewed using the logging capabilities of MsiExec.

A sample batch file that strings together the logic mentioned above is displayed below:

START /WAIT MsiExec /i eVolveMechanicalForRevit-2020.msi /quiet 
REM Any value other than 0 indicates an error.
IF NOT "%ERRORLEVEL%"=="0" (
ECHO Error occurred during installation.
)
A "silent" installation of the eVolve software is an implicit acceptance of the EULA agreement. Click the following link to view the most recent version of the eVolve EULA Agreement. The EULA is also found in the following local directory - C:\Program Files\eVolve\eVolve Mechanical for Revit 20xx\Resources\Licenses.

Relevant Articles

About

License Info

Silent Installer


How did we do?


Powered by HelpDocs (opens in a new tab)