Using UPlay

Open forum for end-user questions about Wine. Before asking questions, check out the Wiki as a first step.
Forum Rules
Locked
User avatar
DanKegel
Moderator
Moderator
Posts: 1164
Joined: Wed May 14, 2008 11:44 am

Using UPlay

Post by DanKegel »

The recommended way to install UPlay is to get the latest winetricks (20130624),
then to do 'winetricks uplay'. You can then use the desktop icon to start uplay.

(Or, if you like commandlines, put the following in your .bashrc:

prefix() {
export WINEPREFIX="$HOME/.local/share/wineprefixes/$1"
}

goc() {
cd $WINEPREFIX/drive_c
}

and then (after doing . ~/.bashrc) do
prefix uplay
goc
wine start run-uplay.bat

)

How well does this work for everybody? Let's use this thread to discuss problems.
reaVer
Newbie
Newbie
Posts: 2
Joined: Sat Jun 22, 2013 8:43 pm

Re: Using UPlay

Post by reaVer »

uplay is crashing like I mentioned with my AC Revelations thread. I don't seem to have the .bat file installed either. My winetricks.log shows:
1 uplay
2 w_workaround_wine_bug-33742
3 crypt32
4 msasn1

The results of winetricks uplay is:
zsh/3 1256 % winetricks uplay
Executing w_do_call uplay
Executing load_uplay
Executing wine UplayInstaller.exe
fixme:shell:SHAutoComplete stub
------------------------------------------------------
Working around wine bug 33742 -- Using native crypt32 so uplay's autoupdater doesn't abort
------------------------------------------------------
Executing w_do_call crypt32
Executing load_crypt32
Executing w_do_call msasn1
Executing load_msasn1
Executing cabextract -q -d /home/reaver/.local/share/wineprefixes/uplay/dosdevices/c:/windows/temp/_msasn1 -L -F i386/msasn1.dl_ /home/reaver/.cache/winetricks/win2ksp4/W2KSP4_EN.EXE
Executing cabextract -q --directory=/home/reaver/.local/share/wineprefixes/uplay/dosdevices/c:/windows/syswow64 /home/reaver/.local/share/wineprefixes/uplay/dosdevices/c:/windows/temp/_msasn1/i386/msasn1.dl_
------------------------------------------------------
msasn1 install completed, but installed file /home/reaver/.local/share/wineprefixes/uplay/dosdevices/c:/windows/system32/msasn1.dll not found
------------------------------------------------------
User avatar
DanKegel
Moderator
Moderator
Posts: 1164
Joined: Wed May 14, 2008 11:44 am

Re: Using UPlay

Post by DanKegel »

I suspect this means it doesn't work in 64 bit prefixes yet.

Try it in a 32 bit prefix (by wiping out the old one and doing
export WINEARCH=win32
first), maybe.
Locked