Extract MSI from EXE

前端 未结 8 1404
走了就别回头了
走了就别回头了 2020-11-22 04:16

I want to extract the MSI of an EXE setup to publish over a network.

For example, using Universal Extractor, but it doesn\'t work for Java Runtime Environment.

8条回答
  •  不要未来只要你来
    2020-11-22 04:40

    There is no need to use any tool !! We can follow the simple way.

    I do not know which tool built your self-extracting Setup program and so, I will have to provide a general response.

    Most programs of this nature extract the package file (.msi) into the TEMP directory. This behavior is the default behavior of InstallShield Developer.

    Without additional information, I would recommend that you simply launch the setup and once the first MSI dialog is displayed, you can examine your TEMP directory for a newly created sub-directory or MSI file. Before cancelling/stopping an installer just copy that MSI file from TEMP folder. After that you can cancel the installation.

提交回复
热议问题