Hi, i wonder if it would be possible to improve winetricks dotnet 1.1, so that
it's actually able to run
.net-1.1 applications. Currently it only installs the framework, but due to
bugs the apps don't run. Atm moment i use pretty worthless script below to get
them running, but i'm sure one of the winetricks hackers could turn this into a
nice script
Note, the dlls gdiplus and mscoree should be set to native only, not (native,
builtin), so override_dll should look tiny bit different then in winetricks.
__________________________________________________________
Sent from Yahoo! Mail.
The World's Favourite Email http://uk.docs.yahoo.com/nowyoucan.html
override_dlls() {
echo Overriding following DLLs: $@
cat > /tmp/override-dll.reg <<_EOF_
REGEDIT4
[HKEY_CURRENT_USER\Software\Wine\DllOverrides]
_EOF_
while test "$1" != ""
do
echo "\"$1\"=\"native\"" >> /tmp/override-dll.reg
shift
done
regedit /tmp/override-dll.reg
rm /tmp/override-dll.reg
}
cd /tmp
wget http://bugs.winehq.org/attachment.cgi?id=11046
sh attachment.cgi?id=11046
cp -rf ~/.wine/drive_c/windows/Microsoft.NET/Framework/v1.1.4322/gdiplus.dll
~/.wine/drive_c/windows/system32/
override_dlls gdiplus
winetricks allfonts
wineprefixcreate #to register the fonts
cp -rf ~/.wine/drive_c/windows/system32/URTTemp/mscoree.dll
~/.wine/drive_c/windows/system32/
override_dlls mscoree