Error Windows Installer 4.5.6001.22308

Questions about Wine on Linux
Locked
maamil
Newbie
Newbie
Posts: 1
Joined: Sun Oct 10, 2021 5:41 am

Error Windows Installer 4.5.6001.22308

Post by maamil »

I am running on Ubuntu using a virtual machine on top of a MacOS.

I am trying to install this Windows only software (https://www.palmsens.com/software/ps-trace/). I have installed Wine already. But everytime I write on my terminal

Code: Select all

$ wine PSTrace\ 5.9.2109\ Setup.exe 
I get an error as shown in the image attachment.

How do I solve this issue? What is going wrong ?

Thanks
Attachments
Screenshot from 2021-10-10 03-47-48.png
jkfloris
Level 12
Level 12
Posts: 3136
Joined: Thu Aug 14, 2014 10:10 am

Re: Error Windows Installer 4.5.6001.22308

Post by jkfloris »

This is the default msiexec screen (wine msiexec gives you the same).
The question is why do you see this screen and not the installation program?

Two things you can try:
- Make sure you are using the latest version of Wine. (version 6.19)
- Can you extract the file "PSTrace 5.9.2109 Setup.exe"?
If you can, it probably contains a .msi file. If so, try to run the .msi file with Wine (replace setup.msi with the actual name):

Code: Select all

wine msiexec /i setup.msi
Locked