I'm trying to install Quicken Premier 2014 on Wine 1.8rc4. I believe I'm close just need a little help figuring out this last bug.
Here is a video showing off the issue (skip to 26 seconds if you want to avoid the loading time):
https://www.youtube.com/watch?v=0wyIG90BPpI
Notice that it loads the content but when I hover over the ribbon at the top everything vanishes, however, opening a window from the ribbon (like Preferences) brings everything back. You can also see that weird shadow overlay. This feels like a graphics issue and I think Quicken uses some kind of web browser to display the content in the window.
At first I assumed it was the libwine-gecko but it should be installed in my system and I have the msi in the /usr/share/wine/gecko directory. I then tried with d3dx9 assuming it was lacking that but does not seem to effect it. I still sometimes get those "Can't find HTML render, being disabled" messages, so I assume libwine-gecko is failing?
I do realize that .NET 4.0 is not considered supported but since I got farther then the last user's attempt (Black title screen. Black application screen.) in the AppDB:
https://appdb.winehq.org/objectManager. ... &iId=29212
I figured things might have changed.
My Setup:
Distro: Debian Strech (2015-12-20)
Kernel: 4.2.0-1-amd64 #1 SMP Debian 4.2.6-3 (2015-12-06) x86_64 GNU/Linux
GPU/Drivers: AMD Radeon 6950 2GB with Mesa 11.0.7-1
Wine: wine-1.8rc4
winetricks: 20140817 - sha1sum: fb1d7184dc186313cf26e1a65a8e6ff3c5fadc50
Mono: No mono installed
winearch: win32
wineprefix: ~/.wine-quicken-2014/
What I have tried/learned:
- .NET 4.0 will not install unless it's a 32bit prefix
- .NET 4.0 will not install if it's not on Windows XP (Win7 fails)
- Quicken will install BUT immediately crash if it's not on Windows 7 (so I install .NET before switching to `winetricks settings win7`)
- It does not seem to matter if d3dx9 & corefonts are installed
- It still seems to complain about HTML rendering even if I have the .msi in /usr/share/wine/gecko/ (.msi permissions are 755)
- Debian Stretch (testing) does not have libwine-gecko-xxx in the repo, is it bundled in wine* package?
- Installing the libwin-gecko.msi manually stops the error messages but I believe it does not really work. What I'm doing is installing in my prefix ~/.wine-quicken-2014/:
Code: Select all
cd ~/Downloads/
wget http://downloads.sourceforge.net/project/wine/Wine%20Gecko/2.40/wine_gecko-2.40-x86.msi
wine msiexec /i wine_gecko-2.40-x86.msi
Here is the full list of commands that work in order (don't put winetricks settings win7 before winetricks dlls dotnet40!)
Code: Select all
# Download the core packages
sudo apt-get install wine winetricks
# Install process
rm -rf ~/.wine-quicken-2014/
export WINEARCH=win32
export WINEPREFIX=$HOME/.wine-quicken-2014/
winecfg
winetricks dlls d3dx9
winetricks dlls dotnet40
winetricks fonts corefonts
winetricks fonts tahoma
winetricks settings fontsmooth=rgb
winetricks settings win7
cd ~/Downloads/
wine Quicken_Premier_2014_OLD_VERSION.exe
# Running Quicken
# Use taskset -c 0 to force wine on only 1 core, this will avoid quicken from
# randomly shutting down (other user's experience for past versions, can't test because I have not gotten that far)
export WINEARCH=win32
export WINEPREFIX=$HOME/.wine-quicken-2014/
taskset -c 0 wine "C:\Program Files\Quicken\qw.exe"