wine msiexec problems

Open forum for end-user questions about Wine. Before asking questions, check out the Wiki as a first step.
Forum Rules
Locked
mscf_admin
Newbie
Newbie
Posts: 1
Joined: Mon Mar 25, 2013 5:32 pm

wine msiexec problems

Post by mscf_admin »

I am trying to install an MSI file we use (some in-house software) and I'm having an issue. Sometimes when I start the install everything goes smooth, other times it just sits there and does nothing. I've tried

Code: Select all

wine msiexec -i XXX.msi
and

Code: Select all

wine start XXX.msi
with the same results either way. Any idea how to troubleshoot this one?
User avatar
dimesio
Moderator
Moderator
Posts: 13368
Joined: Tue Mar 25, 2008 10:30 pm

Re: wine msiexec problems

Post by dimesio »

mscf_admin wrote:I've tried

Code: Select all

wine msiexec -i XXX.msi
That should be

Code: Select all

wine msiexec /i XXX.msi
Locked