installation - Winrar sfx deletes files too early -


i'm trying build sfx (self extracting archive) using winrar.

i'm using vs2008 build setup.exe , myapp.msi. if setup.exe executed checking launches myapp.msi

i'm using sfx options make extraction quiet , make extract temp folder:

;der folgende kommentar enthält sfx-skriptbefehle  setup=setup.exe tempmode silent=2 overwrite=1 

it seems winrar deletes msi right after setup.exe launched. setup.exe can't find msi , crashes. there way fix this?

// edit:

i solved problem (a while ago) calling myapp.msi instead of setup.exe:

;der folgende kommentar enthält sfx-skriptbefehle  setup=myapp.msi tempmode silent=2 overwrite=1 

the msi not exit until installation finished.

7-zip provides tools creating sfx installers, give try :)


Comments

Popular posts from this blog

List<T>().Add problem C# -

Javascript natural sort array/object and maintain index association -