https://bugs.winehq.org/show_bug.cgi?id=46838
Bug ID: 46838
Summary: Happy Foto Designer OLE error 80004001
Product: Wine
Version: 4.2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: martin.marmsoler(a)gmail.com
Distribution: ---
Created attachment 63878
--> https://bugs.winehq.org/attachment.cgi?id=63878
Log
Hello,
when I start Happy Foto Designer and create a new Photo book I get the error:
OLE error 80004001
The error can be solved by installing riched20
winetricks riched20
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=44387
Bug ID: 44387
Summary: Unity3D fails with "X11DRV_wglCreateContextAttribsARB
Context creation failed" error
Product: Wine
Version: 3.0-rc5
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: opengl
Assignee: wine-bugs(a)winehq.org
Reporter: bob_lists(a)yahoo.co.uk
Distribution: ---
Created attachment 60307
--> https://bugs.winehq.org/attachment.cgi?id=60307
relevant extracts from glxinfo
I installed Unity 2017.2.0f3 (64-bit) from
https://store.unity.com/download?ref=personal
(click on Windows option)
This gets
UnityDownloadAssistant-2017.2.0f3.exe
Note:
Run winecfg and set Applications->Windows Version to Windows 7. (Otherwise
UnityDownloadAssistant will not run.)
Make sure winbind is installed on your system, otherwise Unity3D does not get
as far as the error reported here.
I ran UnityDownloadAssistant-2017.2.0f3.exe
Some components did not install, but the main installation completed and
claimed to be succesful.
I ran
env WINEPREFIX="/home/bob/.wine" wine C:\\windows\\command\\start.exe /Unix
/home/bob/.wine/dosdevices/c:/users/Public/Start\ Menu/Programs/Unity\
2017.2.0f3\ \(64-bit\)/Unity.lnk &> unitylog.txt
This displays a window headed "Unity 2017.2.0f3". The contents of the window
are black. After a few seconds, the contents turn to grey. The program takes
100% of cpu and does not terminate.
The software outputs a large number of fixme messages plus the error message
005b:err:wgl:X11DRV_wglCreateContextAttribsARB Context creation failed (error
1)
The computer is a Toshiba Satellite with 2 x (AMD E1-1200 APU @ 1.4 GHz with
Radeon HD Graphics).
Ubuntu Mate 16.04
$ lspci
00:01.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI]
Wrestler [Radeon HD 7310]
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=46958
Bug ID: 46958
Summary: trying to install a windows app constantly get "not
enough disk space" error and C: drive shows 0 bytes
Product: Wine
Version: 4.1
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: bmullan.mail(a)gmail.com
Distribution: ---
Created attachment 64093
--> https://bugs.winehq.org/attachment.cgi?id=64093
see but description
Trying to install a windows application I consistently get a "not enough disk
space available" type error (see attachment) which prevents the installation
from succeeding.
I have tried all of the following 64Bit Bottle types: Win7, Win8, Win10
and all of them exhibit the same error.
Wine reports C: with 0 disk space (my actual linux drive has 500GB available).
Also, this only happens with some programs? Others install ok.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=44670
Bug ID: 44670
Summary: GOG Galaxy 1.2.37: crash in GalaxyClient Helper.exe
Product: Wine-staging
Version: 3.3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: magist3r(a)gmail.com
CC: erich.e.hoover(a)wine-staging.com, michael(a)fds-team.de,
sebastian(a)fds-team.de
Distribution: ---
Created attachment 60680
--> https://bugs.winehq.org/attachment.cgi?id=60680
backtrace
After update to GOG Galaxy 1.2.37 I see permanent crash in GalaxyClient
Helper.exe. Version 1.2.17 works fine. Backtrace in attachment. Feel free to
ask me for some more info.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=46956
Bug ID: 46956
Summary: ReplaceFile cannot replace the current executable
Product: Wine
Version: 1.6.2
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: kernel32
Assignee: wine-bugs(a)winehq.org
Reporter: shaggie76(a)hotmail.com
Distribution: ---
Created attachment 64085
--> https://bugs.winehq.org/attachment.cgi?id=64085
A simple VS2017 console project that you can compile to test this.
The ReplaceFile API can be used to update the currently running exe file; this
does not work with WINE.
This bug prevents the Warframe launcher from working properly.
A simple program that demonstrates this is:
#include <windows.h>
#include <tchar.h>
int main(int argc, const char* argv[])
{
TCHAR exePath[MAX_PATH];
TCHAR tmpPath[MAX_PATH];
GetModuleFileName(GetModuleHandle(NULL), exePath, MAX_PATH);
_tcscpy_s(tmpPath, MAX_PATH, exePath);
_tcscat_s(tmpPath, MAX_PATH, TEXT(".tmp"));
if(!CopyFile(exePath, tmpPath, FALSE))
{
_tprintf(TEXT("CopyFile(%s, %s, FALSE) failed [0x%08X]\n"), exePath,
tmpPath, GetLastError());
return(1);
}
/* this has worked from at least as far back as WinXP and continues to work
on Win10 */
if(!ReplaceFile(exePath, tmpPath, NULL, 0, NULL, NULL))
{
_tprintf(TEXT("ReplaceFile(%s, %s, NULL, 0, NULL, NULL) failed
[0x%08X]\n"), exePath, tmpPath, GetLastError());
return(1);
}
/* A proper test would check that the file was actually updated but this is
sufficient to demonstrate the bug */
_tprintf(TEXT("No errors!\n"));
return(0);
}
Under WINE this prints:
ReplaceFile(Z:\home\glen\WineReplaceFile.exe,
Z:\home\glen\WineReplaceFile.exe.tmp, NULL, 0, NULL, NULL) failed [0x00000497]
Under real WinXP to Win10 this prints:
No errors!
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=46853
Bug ID: 46853
Summary: An error when trying to install some games
Product: Wine
Version: 4.2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: ahmed.com(a)protonmail.com
Distribution: ---
When I try to install some games, I get this error message:
"Runtime error 229 at 075A4BCF"
I need to set windows version to xp in order to avoid this error message, but
that is so annoying, because I have to change it back to windows 7 every time
after finishing with the installation.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=46893
Bug ID: 46893
Summary: Error while installing .NET Framework 1.0
Product: Wine
Version: 3.0
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: sk9258user(a)mail.ru
Distribution: ---
Created attachment 63973
--> https://bugs.winehq.org/attachment.cgi?id=63973
Log
Link: https://www.microsoft.com/en-us/download/confirmation.aspx?id=96
CLR Error: 80004001.
On any wine Windows version
On wine stable 3.0.
Need to fix this without changing wine version.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=44488
Bug ID: 44488
Summary: does not to execute a .exe file
Product: Wine
Version: 2.0
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: apphelp
Assignee: wine-bugs(a)winehq.org
Reporter: mrdwili(a)hotmail.fr
Distribution: ---
Created attachment 60443
--> https://bugs.winehq.org/attachment.cgi?id=60443
what is written when I execute the .exe
I tried to install Final Fantasy X-X2 with wine, but when I type wine
/Volumes/Final\ Fantasy\ X\ X-2\ HD\ Remaster/setup.exe I have this whole page
and wine with written "Runtime error 229 at 07494BCF"
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=45250
Bug ID: 45250
Summary: The Sims Double Deluxe crash at startup
Product: Wine
Version: 3.8
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: haakobja(a)gmail.com
Distribution: ---
Created attachment 61494
--> https://bugs.winehq.org/attachment.cgi?id=61494
The Sims log with WINEDEBUG="+ddraw,+d3d"
Hi!
I'm trying to get The Sims Double Deluxe running on my computer. It passes the
CD check before crashing.
I think it has something to do with the pixelformat not being correct (16 bit
not supported, or something).
Following is an excerpt from the log file:
0009:trace:ddraw:DDRAW_dump_members - DDSD_HEIGHT : 600
0009:trace:ddraw:DDRAW_dump_members - DDSD_WIDTH : 800
0009:trace:ddraw:DDRAW_dump_members - DDSD_PIXELFORMAT : ( )
0009:trace:d3d:wined3d_get_adapter_display_mode wined3d 0x16f8e0, adapter_idx
0, display_mode 0x32f784, rotation (nil).
0009:warn:d3d:wined3d_get_adapter_display_mode Overriding format
WINED3DFMT_B8G8R8X8_UNORM with stored format WINED3DFMT_B5G6R5_UNORM.
0009:trace:d3d:wined3d_get_adapter_display_mode Returning 800x600@60
WINED3DFMT_B5G6R5_UNORM 0x1.
0009:trace:ddraw:wined3dformat_from_ddrawformat Convert a DirectDraw
Pixelformat to a WineD3D Pixelformat
0009:trace:ddraw:DDRAW_dump_pixelformat ( )
0009:warn:ddraw:wined3dformat_from_ddrawformat Unknown Pixelformat.
0009:warn:ddraw:ddraw_surface_create Unsupported / unknown pixelformat.
0009:trace:ddraw:ddraw_surface4_AddAttachedSurface iface 0x1935fc, attachment
(nil).
0009:err:seh:raise_exception Unhandled exception code c0000005 flags 0 addr
0x7d9f5bb3
My machine has the following HW:
* CPU: Intel(R) Core(TM) i5-2410M CPU @ 2.30GHz
* 00:02.0 VGA compatible controller: Intel Corporation 2nd Generation Core
Processor Family Integrated Graphics Controller (rev 09)
* 01:00.0 VGA compatible controller: NVIDIA Corporation GF119M [GeForce GT
520M] (rev a1)
I'm only running OpenSource drivers, so maybe this has something to do with my
error?
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=26306
Summary: age of empires ll error
Product: Wine
Version: 1.3.14
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tbone6669(a)gmail.com
every thing installed fine the game just wont run and i get this error message
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.