Skip to main content
Answer

Is there a way to install two versions of AcumaticaERPInstall.msi simultaneously?

  • May 25, 2025
  • 3 replies
  • 160 views

Forum|alt.badge.img+6

      I need to maintain two versions of Acumatica simultaneously. I noticed that when installing AcumaticaERPInstall.msi, the new version will default to overwriting the old version. Additionally, after installing the new version, attempting to install the old version results in an error. (I’m not sure if uninstalling the new version and then installing the old version will cause issues—can someone let me know?)

       My key question is: Is there a way to install two versions of AcumaticaERPInstall.msi on the same computer, so that I can have two Wizards available simultaneously?

Best answer by aaghaei

You can have as many as instance but you will need to install them in different folders. First unpack the .msi file to a temp folder(s) for each version something like

msiexec /a c:\path\24R2.msi /qb TARGETDIR=c:\path\target\24R2
msiexec /a c:\path\23R2.msi /qb TARGETDIR=c:\path\target\23R2

This can be even for different builds of the same major version but above I am providing example of 23R2 and 24R2.

Then from the data folder of the extracted files using the Acumatica Config install the desired version.

repeat the pattern. I have multiple versions installed this way but if you do coding and debugging you potentially will have some issues with tracing.

3 replies

aaghaei
Captain II
Forum|alt.badge.img+10
  • Captain II
  • Answer
  • May 25, 2025

You can have as many as instance but you will need to install them in different folders. First unpack the .msi file to a temp folder(s) for each version something like

msiexec /a c:\path\24R2.msi /qb TARGETDIR=c:\path\target\24R2
msiexec /a c:\path\23R2.msi /qb TARGETDIR=c:\path\target\23R2

This can be even for different builds of the same major version but above I am providing example of 23R2 and 24R2.

Then from the data folder of the extracted files using the Acumatica Config install the desired version.

repeat the pattern. I have multiple versions installed this way but if you do coding and debugging you potentially will have some issues with tracing.


bcoutermash09
Jr Varsity III
Forum|alt.badge.img
  • Jr Varsity III
  • May 25, 2025

Forum|alt.badge.img+6
  • Author
  • Captain II
  • May 25, 2025

@aaghaei ​@bcoutermash09 Thank you , both of you solved my issue.