hi i have given an exe for packaging. can i know how msi can be extracted in temp folder thr command line out of it?
hi i have given an exe for packaging. can i know how msi can be extracted in temp folder thr command line out of it?
Answers (7)
Hi jay, Click through the installation up to the point that files begin to install, do not complete the install, leave setup at the screen where Next or Finish needs to be clicked, before clicking to continue with the setup, do a search from Windows for *.msi and see if a msi file has been extracted to a temp folder and look for similar filenames and or dates of the msi file(s) from the search Note: sometimes msi files are within the setup.exe file and can also be used. Run Setup to see if an embedded msi file can be used to automate the install. I think this will work or you Thanks
You can use either 7-zip or winzip for it to extract the msi from exe or when you are trying to run the exe it will itself get extracted to temp folder. go copy it.
Comments:
-
i cant see it in temp folder. i ran .exe..can we use exe for packaging? or only msi could be used? - jay25oct 11 years ago
When I see a post like this worded and misspelled to the point I barely understand it, I'm tempted to answer it in the same way it was presented... I'll make it simple.
Not all exe files need to be repackaged. Go to the vendor or search here on IT ninja for the Command Line switches you can use to deploy the software silently.
Comments:
-
But you have to keep in mind that there are a good number of people on this site who want/need help with packaging but English isn't their first language. But still recognize that this is the best site to get help on, despite the language barrier.
Granted OP didn't specify English wasn't his first language as they sometimes do, I like to pretend at least that's the case, to preserve my sanity in case it's not. - samzeeco 11 years ago-
I do forget this from time to time. Thanks for the reminder. - GeekSoldier 11 years ago
There are several options: As mentioned before try first to extract with 7-zip. If that doesn't work you can look in the %temp% folder - once you have started the exe - if there is a new folder with an msi. If it is a Wise package you can find the msi after starting the exe in the folder C:\Program Files\Common Files\Wise Installation Wizard. Bear in mind not to end the installation before you have secured the msi's because the temporary folders might disappear. Another option is to try an administrative install with the commandline syntax XXX.exe /v/a after you will be prompted to enter a location for your installation set.
Comments:
-
if you are using Admin Studio then follow these steps:
1)Clear %Temp% folder before installing the application.
2)Type regedit in start menu and open it, Go to the hive HKLM\SOFTWARE\Microsoft\Windows and create installer key. Select installer and add new string value and name it as Logging and its value should be voicewarmup
3)Also open eventveiwer and clear application log before installing the application.
4)Clear C:\Windows\Installer folder before oyu start the application
5)Now install the application and simultaneously open the %temp% folder and eventveiwer. - shaik.asifafzal 11 years ago