Error message when running an install.exe

Open forum for end-user questions about Wine. Before asking questions, check out the Wiki as a first step.
Forum Rules
Locked
patrick2 anglum

Error message when running an install.exe

Post by patrick2 anglum »

In a terminal, I try to run an install program "swb32c100.exe"
ie:

[pat@pat .wine]swb32v100.exe
I see a progress window (horizonal progress bar) for a split second, then it goes away and I get the error message:

Usage:

Install a product:

msiexec {package|productcode}
[property]

msiexec /i {package|productcode}
[property]

msiexec /a package [property]

Repair an installation:

msiexec /f[p|o|e|d|c|a|u|m|s|v]
{package|productcode}

Uninstall a product:

msiexec /x {package|productcode}
[property]

Advertise a product:

msiexec /j[u|m] package [/t
transform] [/g languageid]

msiexec {u|m} package [/t transform]
[/g languageid]

Apply a patch:

msiexec /p patchpackage [property]

msiexec /p patchpackage /a package
[property]

Modifiers for above operations:

msiexec
/l[*][i|w|e|a|r|u|c|m|o|p|v|][+|!] logfile

msiexec /q{|n|b|r|f|n+|b+|b-}

Register a module:

msiexec /y module

Unregister a module:

msiexec /z module

Display usage and copyright:

msiexec {/h|/?}

NOTE: Product code on commandline unimplemented as of yet



Copyright 2004 Vincent Béron



I have also tried:
[pat@pat .wine]msiexec swb32v100.exe[pat@pat .wine]wine swb32v100.exe[pat@pat .wine]wine msiexec swb32v100.exe
I get the same error message.
I am running Fedora 9 and Wine 1.1.5I'm assuming this message is from Wine?
Since I am running Fedora 9, I entered the following command:
$ sudo sysctl -w vm.mmap_min_addr=0
(per http://fedoraproject.org/wiki/AndreasBierfert/Wine)

No difference.

I am able to run Notepad OK.
From my windows box I copied 3 .dll's to my .wine directory and drive_c, and Program Files.
No difference.


Any ideas?








_________________________________________________________________
See how Windows Mobile brings your life together—at home, work, or on the go.
http://clk.atdmt.com/MRT/go/msnnkwxp102 ... direct/01/
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://www.winehq.org/pipermail/wine-us ... chment.htm
User avatar
dimesio
Moderator
Moderator
Posts: 13204
Joined: Tue Mar 25, 2008 10:30 pm

Post by dimesio »

gooberpat
Level 1
Level 1
Posts: 9
Joined: Tue Sep 30, 2008 4:01 pm

Post by gooberpat »

I must be misunderstanding something here.

As I said in my original post:
I have also tried:
[pat@pat .wine]msiexec swb32v100.exe
[pat@pat .wine]wine swb32v100.exe
[pat@pat .wine]wine msiexec swb32v100.exe

I get the same error message.
gooberpat
Level 1
Level 1
Posts: 9
Joined: Tue Sep 30, 2008 4:01 pm

Install error message

Post by gooberpat »

If anyone is interested in trying to do the install, the file can be found at:

http://www.bpsoft.com/downloads/

SIP WORKBENCH 1.0.0 for Windows XP
qwertymn
Level 4
Level 4
Posts: 236
Joined: Thu Mar 27, 2008 3:42 am

Post by qwertymn »

this is a known (and annoying) bug in wine. Usually you could try a 'cabextract' on the executable, and the .msi file comes usually out (extracted), but here no msi file comes.

From a log i could see there should be a .msi file extraced somewhere in C:\\windows\\profiles\\yourname\\Application Data\\BreakPoint Software\\SIP Workbench v1\\install\\SIPWorkbench.msi
but that didin't work-> no such file.

If you really need install this application there's one work-around left: install with a very old wine-version ( i tried wine-0.9.32), and then it installs fine
James McKenzie

Error message when running an install.exe

Post by James McKenzie »

qwertymn wrote:
this is a known (and annoying) bug in wine. Usually you could try a 'cabextract' on the executable, and the .msi file comes usually out (extracted), but here no msi file comes.
From a log i could see there should be a .msi file extraced somewhere in C:\\windows\\profiles\\yourname\\Application Data\\BreakPoint Software\\SIP Workbench v1\\install\\SIPWorkbench.msi
but that didin't work-> no such file.

If you really need install this application there's one work-around left: install with a very old wine-version ( i tried wine-0.9.32), and then it installs fine



Bug report on this problem anywhere?

James McKenzie
User avatar
dimesio
Moderator
Moderator
Posts: 13204
Joined: Tue Mar 25, 2008 10:30 pm

Post by dimesio »

gooberpat
Level 1
Level 1
Posts: 9
Joined: Tue Sep 30, 2008 4:01 pm

VIF_MASK and VIP_MASK problem

Post by gooberpat »

I tried making 0.9.32 and get the following errors

signal_i386.c: In function ‘merge_vm86_pending_flags’:
signal_i386.c:482: error: ‘VIF_MASK’ undeclared (first use in this function)
signal_i386.c:482: error: (Each undeclared identifier is reported only once
signal_i386.c:482: error: for each function it appears in.)
signal_i386.c:493: error: ‘VIP_MASK’ undeclared (first use in this function)
signal_i386.c: In function ‘raise_vm86_sti_exception’:
signal_i386.c:1059: error: ‘VIP_MASK’ undeclared (first use in this function)
signal_i386.c: In function ‘__wine_enter_vm86’:
signal_i386.c:1446: error: ‘VIF_MASK’ undeclared (first use in this function)
signal_i386.c:1447: error: ‘VIP_MASK’ undeclared (first use in this function)
make[2]: *** [signal_i386.o] Error 1
make[2]: Leaving directory `/home/pat/downloads/wine-0.9.32/dlls/ntdll'
make[1]: *** [ntdll] Error 2
make[1]: Leaving directory `/home/pat/downloads/wine-0.9.32/dlls'
make: *** [dlls] Error 2

Is there a later version of signal_i386.c I should be using?
austin987
Wine Developer
Wine Developer
Posts: 2383
Joined: Fri Feb 22, 2008 8:19 pm

Error message when running an install.exe

Post by austin987 »

On Tue, Oct 14, 2008 at 6:34 PM, gooberpat <[email protected]> wrote:
I tried making 0.9.32 and get the following errors
Good FSM that's old. Upgrade to 1.1.6 and try again. What distro are
you using, if .9.32 is current?

--
-Austin
gooberpat
Level 1
Level 1
Posts: 9
Joined: Tue Sep 30, 2008 4:01 pm

Need 0.9.32

Post by gooberpat »

According to an earlier post there. is a bug in the current release that prevents my application from installing.

The previous poster tried installing my application on 0.9.32 and was successful.
austin987
Wine Developer
Wine Developer
Posts: 2383
Joined: Fri Feb 22, 2008 8:19 pm

Error message when running an install.exe

Post by austin987 »

On Tue, Oct 14, 2008 at 6:57 PM, gooberpat <[email protected]> wrote:
According to an earlier post there. is a bug in the current release that prevents my application from installing.

The previous poster tried installing my application on 0.9.32 and was successful.





You'll likely run have problems building (as you've seen). This may
help: http://wiki.winehq.org/ReverseRegressionTesting

Though, it'd be best to file a bug and have the installer bug fixed.

--
-Austin
Locked