If possible can someone write a parameter for me?
MA5Enterprise.exe /s /v"
I'm trying to do a silent install for application and I've tried it on my own for a while but seems as though it doesn't want to install silently.
0 Comments
[ + ] Show comments
Answers (3)
Please log in to answer
Posted by:
Channeler
6 years ago
I don't know what software is this, but after doing a Google search for MA5Enterprise.exe, I found the setup guide here:
http://www.thepaynegroup.com/downloads/courseware/metadata/published/MA50InstallGuide.pdf
check page 7
MA5Retail.exe /s /v" /qn"
or
MA5Enterprise.exe /s /v" /qb"
I would suggest to contact the software vendor in regards those parameters since those quotations marks seem odd to me.
http://www.thepaynegroup.com/downloads/courseware/metadata/published/MA50InstallGuide.pdf
check page 7
MA5Retail.exe /s /v" /qn"
or
MA5Enterprise.exe /s /v" /qb"
I would suggest to contact the software vendor in regards those parameters since those quotations marks seem odd to me.
Comments:
-
Revisiting this: I've tried and nothing happens. No install - dbyrd18 6 years ago
Posted by:
vjaneczko
6 years ago
If it's anything like version 3.1, you can extract the files from the EXE to find the MSI, which allows greater control of the install. Here's the command line we put together some years ago for that older version, which might help:
msiexec /i "%~dp0MA3Enterprise.msi" /qb- /L*v "%SYSTEMROOT%\LOGS\MetadataAssistant 3.1.1109.0613.log"
Comments:
-
Revisiting this: I've tried and nothing happens. No install - dbyrd18 6 years ago
Posted by:
anonymous_9363
6 years ago
FFR, when you see the switch '/V', followed by MSI switches/arguments in quotes, you *know* that the EXE is extracting and executing an MSI.
Such EXEs aren't normally those which also perform post-installation steps (like so many InstallShield-built EXEs from vendors do) but there's never any harm in performing delta snapshots (after removing the Windows Installer information for the package in question) just to be sure:
- run the MSI
- perform a 'Before' snapshot using your favoured lightweight snapshotting tool
- delete the Windows Installer information
- run the EXE, making sure you choose exactly the same options as when you ran the MSI
- take an 'After' snapshot
- add any *relevant* changes to a transform, ready to apply to the MSI
- perform a 'Before' snapshot using your favoured lightweight snapshotting tool
- delete the Windows Installer information
- run the EXE, making sure you choose exactly the same options as when you ran the MSI
- take an 'After' snapshot
- add any *relevant* changes to a transform, ready to apply to the MSI