Link to home
Start Free TrialLog in
Avatar of longjumps
longjumps

asked on

MS Windows - how to "silent" install "MyProgram Install 32Bit msi.exe"?

how to "silent" install "MyProgram Install 32Bit msi.exe"?

ASKER CERTIFIED SOLUTION
Avatar of aparis99
aparis99
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Avatar of sarabande
sarabande
Flag of Luxembourg image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of longjumps
longjumps

ASKER

msiexec /i "MyProgram Install 32Bit msi.exe" /quiet


nothing happens, why? Can see any output.

Please advice,
Semyon
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
I run

msiexec /i "MyProgram Install 32Bit msi.exe" /quiet /log slog.log

and slog.log is empty!

Please advice.

does it work when you omit the /quiet?

Sara
Did the program install maybe?
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Without /quiet I get error

 User generated image
Please put attention that it is not MSI file, but MSI.EXE!

And when I run this MSI.EXE without msiexec it is fine.

I need it in silent mode without GUI.

Please advice.
try to start the msi.exe with the /quiet added.

if that doesn't work you either would need to recreate the msi.exe such that the /quiet option is included or you find the .msi file which in my opinion should be part of the project that creates the msi.exe

Sara
I am going lost...

I created msi.exe file which is install good in regular mode with gui,

so what I should do run it in silent mode??

It seems that "msiexe" can run exe files like ".msi.exe"! Isn't?

SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Once

"MyProgram Install 32Bit msi.exe"  /quiet

it is running gui, not silent.
do you have a msi project where you built the "MyProgram Install 32Bit msi.exe" ?

Sara
Yes I have project.

Do you know how to convert it from msi.exe to .msi?
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
not precise answers.
Expert "sarabande" didn't provided information on last question

---
no, it is normally not necessary to do it that way cause an msi project would make a msi.exe out of a .msi. but i will try to find out whether the .msi can be extracted from exe.

Sara
--

Best regards,
longjumps
i found an article where they made a local installation with the msi.exe and while the installation was running looked at installation folder (or temp folder). here the extracted  .msi file was available. additional to the .msi you would need .cab files also extracted from executable.

once you have the unpacked files you can copy them to another folder and then run the msiexec with the .msi. unfortunately there is no guarantee that it works that way, but i think there is a good chance.

Sara