http://bugs.winehq.org/show_bug.cgi?id=22749
Summary: Hard link creation from a Finddupe-generated batch
file fails (needs fsutil.exe implemented)
Product: Wine
Version: 1.1.44
Platform: x86-64
URL: http://www.sentex.net/~mwandel/finddupe/
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: RandomAccountName(a)mail.com
Finddupe has an option to generate a batch file that can be run later to create
hard links for the duplicate files it find, but these batch files don't work in
Wine:
wine: cannot find L"C:\\windows\\system32\\fsutil.exe"
The particular command it's using is this:
fsutil hardlink create "C:\test6\testfile_1.gif" "C:\test6\testfile.gif"
Copying over fsutil.exe from WinXP lets it work as expected (aside from the
native app producing corrupted output). Fsutil is documented here:
http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en…
A lot of these functions probably wouldn't translate to Wine well (setting NTFS
attributes, etc.) but "fsutil hardlink create" seems to do the same thing as
CreateHardLink...
--
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.
https://bugs.winehq.org/show_bug.cgi?id=50153
Bug ID: 50153
Summary: HID doesn't work on macOS Catalina and Big Sur unless
"Input Monitoring" permission is granted
Product: Wine
Version: 5.22
Hardware: x86-64
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: hid
Assignee: wine-bugs(a)winehq.org
Reporter: bshanks(a)codeweavers.com
On macOS Catalina and Big Sur, if the user-level app (usually Terminal) doesn't
have permission granted for "Input Monitoring" in System Preferences ->
Security & Privacy, the IOHID support in winebus will fail with 'Couldn't open
IOHIDManager.'.
And when Wine is quitting and the driver unloads, it tries to call the
IOHIDManager that was already released, causing a crash.
IOHIDManagerOpen() is failing with kIOReturnNotPermitted because it actually
tries to "open" every matching device, which is every HID device on the system,
including the keyboard (which requires Input Monitoring permission).
(Yes, this API design is very confusing, and poorly documented).
Better is to open individual devices instead, so even if the keyboard fails to
open other devices will still work.
Also it would be ideal to not "open" a device until it's necessary, so there
won't be a permission prompt unless a Windows app actually wants to read from
the keyboard. Currently some part of Wine's HID stack requests input reports
when the device gets enumerated, triggering the permission prompt.
--
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=48396
Bug ID: 48396
Summary: 'cmd.exe /c move file1 file2' doesn't respect
non-interactive mode, causing prompt for overwrite if
destination file exists
Product: Wine
Version: 5.0-rc3
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: cmd
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Distribution: ---
Hello folks,
as it says. Noticed this with some scene installers that use batch files to
uncompress and concatenate files. At one point the progress stalls and a number
of 'cmd.exe' processes just sit around, waiting for input (they are
non-interactive). Reason: Wine's cmd.exe 'move' doesn't take non-interactive
mode into account when destination file exists.
Cmd's 'copy' works.
--- snip ---
$ echo "1" > test1
$ echo "2" > test2
# fails but should work
$ wine cmd /c move test1 test2
Overwrite Z:\home\focht\test2? (Yes|No)
--- snip ---
Setting 'COPYCMD' environment variable to '/Y' avoids the prompt, but still
doesn't overwrite the destination file with original which is another bug.
Oh boy, cmd.exe really needs some love. Still so broken after years.
Wine source:
https://source.winehq.org/git/wine.git/blob/HEAD:/programs/cmd/builtins.c#l…
--- snip ---
2959 void WCMD_move (void)
2960 {
2961 BOOL status;
2962 WIN32_FIND_DATAW fd;
2963 HANDLE hff;
2964 WCHAR input[MAX_PATH];
2965 WCHAR output[MAX_PATH];
2966 WCHAR drive[10];
2967 WCHAR dir[MAX_PATH];
2968 WCHAR fname[MAX_PATH];
2969 WCHAR ext[MAX_PATH];
...
3023 /* If destination exists, prompt unless /Y supplied */
3024 if (GetFileAttributesW(dest) != INVALID_FILE_ATTRIBUTES) {
3025 BOOL force = FALSE;
3026 WCHAR copycmd[MAXSTRING];
3027 DWORD len;
3028
3029 /* /-Y has the highest priority, then /Y and finally the COPYCMD
env. variable */
3030 if (wcsstr (quals, parmNoY))
3031 force = FALSE;
3032 else if (wcsstr (quals, parmY))
3033 force = TRUE;
3034 else {
3035 static const WCHAR copyCmdW[] =
{'C','O','P','Y','C','M','D','\0'};
3036 len = GetEnvironmentVariableW(copyCmdW, copycmd,
ARRAY_SIZE(copycmd));
3037 force = (len && len < ARRAY_SIZE(copycmd) && !lstrcmpiW(copycmd,
parmY));
3038 }
3039
3040 /* Prompt if overwriting */
3041 if (!force) {
3042 WCHAR* question;
3043
3044 /* Ask for confirmation */
3045 question = WCMD_format_string(WCMD_LoadMessage(WCMD_OVERWRITE),
dest);
3046 ok = WCMD_ask_confirm(question, FALSE, NULL);
3047 LocalFree(question);
3048
3049 /* So delete the destination prior to the move */
3050 if (ok) {
3051 if (!DeleteFileW(dest)) {
3052 WCMD_print_error ();
3053 errorlevel = 1;
3054 ok = FALSE;
3055 }
3056 }
3057 }
3058 }
...
--- snip ---
While at it you could really refactor/unify the code more. Even basic 'COPYCMD'
handling is implemented in different code style (move vs. copy):
https://source.winehq.org/git/wine.git/blob/HEAD:/programs/cmd/builtins.c#l…
$ wine --version
wine-5.0-rc3
Regards
--
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=42731
Bug ID: 42731
Summary: stack overflow when .bat script variable has more than
256 characters
Product: Wine
Version: 2.3
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: lucianposton(a)gmail.com
Distribution: ---
Created attachment 57723
--> https://bugs.winehq.org/attachment.cgi?id=57723
bug demo
When a variable with more than (roughly) 256 characters in a .bat script is
passed as a parameter, the script fails with the following error:
err:seh:setup_exception_record stack overflow 1408 bytes in thread 0009 eip
7bc4887d esp 00240db0 stack 0x240000-0x241000-0x340000
attached .bat file that demonstrates the bug
--
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=49643
Bug ID: 49643
Summary: Calling ClipCursor too frequently can cause stack
overflow in foreground window thread.
Product: Wine
Version: 5.13
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winex11.drv
Assignee: wine-bugs(a)winehq.org
Reporter: rbernon(a)codeweavers.com
Distribution: ---
Created attachment 67845
--> https://bugs.winehq.org/attachment.cgi?id=67845
Reproducing sample application
Calling ClipCursor too frequently in a non-foreground thread may cause the
foreground window thread to overflow its stack. This is happening under some
circumstances with CoD: WWII.
This is inherent to the current implementation where every ClipCursor request
from a non-foreground thread involves synchronously sending internal messages
to the foreground window thread, then to the desktop thread. Each ClipCursor
request is processed when the desktop thread is notified, growing the stack
every time, until it overflows.
The attached program can be used to easily reproduce the issue.
--
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=44061
Bug ID: 44061
Summary: Destiny 2 crashes on launch
Product: Wine
Version: 2.21
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: zombieff(a)gmail.com
Distribution: ArchLinux
Created attachment 59774
--> https://bugs.winehq.org/attachment.cgi?id=59774
Crash report shown by the app
The game "Destiny 2" crashes on launch.
It installs successfully via Blizzard client, but crashes on launch.
There's a delay between "Launching" → "Ready to Launch" (not launched) →
crashed with an error.
Tested on Arch Linux.
Wine version is wine-2.21 (Staging).
Terminal output (app crash report is in the attachment):
fixme:thread:create_user_shared_data_thread Creating user shared data update
thread.
fixme:heap:RtlSetHeapInformation (nil) 1 (nil) 0 stub
fixme:crypt:CRYPT_LoadProvider Failed to load dll
L"C:\\windows\\system32\\rsaenh.dll"
fixme:seh:call_stack_handlers nested exception
wine: Unhandled exception 0xc06d007e in thread 556 at address 0x7b450c67
(thread 0556), starting debugger...
fixme:module:load_dll Loader redirect from L"uxtheme.dll" to L"uxtheme-gtk.dll"
fixme:module:load_dll Loader redirect from L"uxtheme.dll" to L"uxtheme-gtk.dll"
fixme:msg:pack_message msg 14 (WM_ERASEBKGND) not supported yet
fixme:uxthemegtk:SetWindowTheme (0xf0054, (null), (null))
--
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=49982
Bug ID: 49982
Summary: A '(call )' line does not reset %ERRORLEVEL% to 0
Product: Wine
Version: 5.18
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: cmd
Assignee: wine-bugs(a)winehq.org
Reporter: aa1ronham(a)gmail.com
Distribution: ---
The following batch script:
```
@echo off
echo Initial error level: %errorlevel%
call missing
echo After bad call: %errorlevel%
(call )
echo After empty call: %errorlevel%
```
gives the following output under Wine:
```
Initial error level: 0
Can't recognize 'missing' as an internal or external command, or batch script.
After bad call: 1
After empty call: 1
```
However, Windows 10 gives the following output:
```
Initial error level: 0
'missing' is not recognized as an internal or external command,
operable program or batch file.
After empty call: 1
After empty call: 0
```
It looks like the Windows cmd.exe resets %errorlevel% to 0 after a '(call )' is
executed, while Wine's cmd.exe leaves it unchanged.
--
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=49774
Bug ID: 49774
Summary: macDriver no longer functions within macOS VM
Product: Wine
Version: 4.15
Hardware: x86-64
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winemac.drv
Assignee: wine-bugs(a)winehq.org
Reporter: gcenx83(a)gmail.com
Regression SHA1: 792521f33b2786cb100cb202dcb4181a579ef3b3
Wine-4.14 macDriver would function within a macOS VM from Wine-4.15 that’s no
longer the case.
--
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=49172
Bug ID: 49172
Summary: Always true condition `code > 0xffff` in
vbscript/global.c
Product: Wine
Version: 5.8
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: vbscript
Assignee: wine-bugs(a)winehq.org
Reporter: mikrutrafal54(a)gmail.com
Distribution: ---
code > 0xffff is always true - probably code > 0 should look like code < 0
https://github.com/wine-mirror/wine/blob/59987bc9ecdd0dbafd768a95c21a14884b…
--
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=47570
Bug ID: 47570
Summary: FotoBizX - Installer throws backtrace
Product: Wine
Version: 4.11
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: maiktapwagner(a)aol.com
Distribution: ---
Created attachment 64971
--> https://bugs.winehq.org/attachment.cgi?id=64971
Backtrace (4.11 Staging)
Hello everyone,
I have been trying out FotoBizX which is a business software for photographers
and agencies allowing invoices and quotes.
There is a demo version available at:
https://www.cradocfotosoftware.com/fotobiz/fotobiz-x-demo
sha256sum installfotoBizX1005.exe
7f6bcc85413442e4fe4f61919a98e0fffbcef32f2d99272abec9fe0dec0adffd
installfotoBizX1005.exe
Will try to add an AppDB entry later on.
--
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=50179
Bug ID: 50179
Summary: Future Pinball: parse_hex_literal invalid literal
Product: Wine
Version: 5.22
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: vbscript
Assignee: wine-bugs(a)winehq.org
Reporter: sloper42(a)yahoo.com
Distribution: ---
Start Future Pinball
Choose File->Table Launcher->SegmentDisplayDemo
VBscript crashes at
Disp2.SetRightCursor 0,
&H0001or&H1000or&H0100or&H2000or&H0200or&H0008or&H0010or&H0800,
&H0001or&H0400or&H0200or&H0020or&H0010,
&H0100or&H0800or&H0020or&H0040or&H0010or&H8000, 0
0024:fixme:vbscript:VBScript_AddTypeLib (001BD050)->()
0024:fixme:vbscript:parse_hex_literal invalid literal
0024:fixme:vbscript:parser_error
L"&H0001or&H1000or&H0100or&H2000or&H0200or&H000
8or&H0010or&H0800, &H0001or&H0400or&H0200or&H0020or&H0010,
&H0100or&H0800or&H002
0or&H0040or&H0010or&H8000, 0\r\n\r\n\t'\t\t\t\t\t
\"1234123412341234123412341234
1234\"\r\tDisp2.QueueText \"PRINTF (\"\"HELLO WORLD\"\").\", seNone, 4000, 0,
Fa
lse,"...: "syntax error"
0024:fixme:vbscript:VBScriptError_GetSourceLineText (00190248)->(0031EA68)
0024:fixme:vbscript:VBScript_InterruptScriptThread (001BD050)->()
--
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=49309
Bug ID: 49309
Summary: vbscript:run test fails in Japanese locale
Product: Wine
Version: 5.9
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: vbscript
Assignee: wine-bugs(a)winehq.org
Reporter: madewokherd(a)gmail.com
Distribution: ---
For example:
https://test.winehq.org/data/48020f4846cca1a02f4e1dc037e2cc2068df5e9c/linux…
run.c:1877: Error in line 1585: 0 L"Invalid procedure call or argument"
run.c:1891: Test failed: unexpected call OnScriptError
run.c:2943: Test failed: expected global_success_d
run.c:2944: Test failed: expected global_success_i
run.c:2946: Test failed: parse_script failed: 800a0005
It seems that the call testAsc(Chr(255), 255) causes a runtime error when Asc
is called with Chr(255). For some reason, on the Japanese locale, this Chr call
gives us U+F8F3. It makes sense to get different results depending on encoding,
but I don't understand why we get this one.
Since this hasn't been observed on Windows, I assume this is a bug in Wine's
vbscript and not the test.
--
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=34770
Bug #: 34770
Summary: DS License Server: Cannot obtain a valid computer ID
Product: Wine
Version: 1.7.4
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lukasz.wojnilowicz(a)gmail.com
Classification: Unclassified
Created attachment 46363
--> http://bugs.winehq.org/attachment.cgi?id=46363
Error message
Steps to reproduce:
1) remove ~/.wine
2) wine start DSLS_17022013_32bit_SSQ.msi
3) default installation except selecting "Install Server from scratch."
Behaviour:
Error message (see attachment) and interrupted installation.
Expected behaviour:
No error message and successful installation.
Terminal output:
fixme:exec:SHELL_execute flags ignored: 0x00000100
fixme:storage:create_storagefile Storage share mode not implemented.
err:rpc:I_RpcGetBuffer no binding
err:rpc:I_RpcGetBuffer no binding
fixme:volume:GetVolumePathNameW (L"C:\\users\\Public\\Application Data",
0x33c1f0, 260), stub!
fixme:ole:CoInitializeSecurity ((nil),-1,(nil),(nil),0,3,(nil),0,(nil)) - stub!
fixme:wbemprox:client_security_SetBlanket 0xf712d2c0, 0x120fd0, 10, 0, (null),
3, 3, (nil), 0x00000000
fixme:wbemprox:client_security_Release 0xf712d2c0
fixme:wbemprox:class_object_GetNames flags 00000070 not supported
err:msi:ITERATE_Actions Execution halted, action L"ActionInitData" returned
1603
err:msi:ITERATE_Actions Execution halted, action L"ExecuteAction" returned 1603
err:rpc:I_RpcGetBuffer no binding
err:rpc:I_RpcGetBuffer no binding
--
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.
https://bugs.winehq.org/show_bug.cgi?id=49143
Bug ID: 49143
Summary: RTF Editor does not support cyrillic letters using MS
Sans Serif Font
Product: Wine
Version: 5.8
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: fonts
Assignee: wine-bugs(a)winehq.org
Reporter: sulimova08(a)mail.ru
Distribution: ---
Created attachment 67145
--> https://bugs.winehq.org/attachment.cgi?id=67145
RTF_CYR_MSSER
Look at the picture attached.
There should be "кириллица" text inside the Red ellipse.
--
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=21150
Summary: exPressit crashes
Product: Wine
Version: 1.1.35
Platform: x86
URL: http://www.jumpjet.info/Win2k/05/exPressit_Label_Desig
n_Studio/exPressit.zip
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: shdocvw
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: xerox_xerox2000(a)yahoo.co.uk
Hi a user reported this crash in appdb. I gave it a try and after starting ,
and choosing default project it crashes. I'll attach a crash log. The problem
seems to be unimplemented OleObject_Advise in shdocvw. Faking success like in
the hack below makes the app start fine.
diff --git a/dlls/shdocvw/oleobject.c b/dlls/shdocvw/oleobject.c
index dde850f..8322525 100644
--- a/dlls/shdocvw/oleobject.c
+++ b/dlls/shdocvw/oleobject.c
@@ -516,7 +516,7 @@ static HRESULT WINAPI OleObject_Advise(IOleObject *iface,
IA
{
WebBrowser *This = OLEOBJ_THIS(iface);
FIXME("(%p)->(%p, %p)\n", This, pAdvSink, pdwConnection);
- return E_NOTIMPL;
+ return 0;//E_NOTIMPL;
}
--
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.
https://bugs.winehq.org/show_bug.cgi?id=50160
Bug ID: 50160
Summary: VstHost crashes on start call to unimplemented
function avrt.dll.AvSetMmMaxThreadCharacteristicsA,
aborting
Product: Wine
Version: 5.22
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: avrt
Assignee: wine-bugs(a)winehq.org
Reporter: minion.procyk(a)gmail.com
Distribution: ---
per the title. vsthost crashes on start
wine: Call from 000000007B0114FE to unimplemented function
avrt.dll.AvSetMmMaxThreadCharacteristicsA, aborting
--
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=50031
Bug ID: 50031
Summary: The Foundation Game crashes with bundled ucrtbase
Product: Wine
Version: 5.13
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ucrtbase
Assignee: wine-bugs(a)winehq.org
Reporter: vavooon(a)gmail.com
Distribution: ---
The game (https://store.steampowered.com/app/690830/Foundation/) is crashing
during startup. Although it works fine if I extract the file from VC_redist
(https://aka.ms/vs/15/release/vc_redist.x64.exe) and place it into
Windows/system32 instead of the bundled one.
--
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=40430
Bug ID: 40430
Summary: PhysX 9.15.0428 fails to install on 32-bit and 64-bit
prefixes
Product: Wine
Version: 1.9.7
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: fjfrackiewicz(a)gmail.com
Distribution: ---
Created attachment 54174
--> https://bugs.winehq.org/attachment.cgi?id=54174
terminal output from Wine 1.9.7 Staging (64-bit prefix)
Wine 1.9.7 Staging.
Steps to reproduce:
Download the installer.
Run it via "wine PhysX-9.15.0428-SystemSoftware.exe"
It manages to check the system and lets you agree to the license agreement but
then it completely fails afterwards.
This issue occurs in 32-bit and 64-bit prefixes.
--
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=50016
Bug ID: 50016
Summary: PS Remote Play can't install: "The operating system is
not adequate for running PS Remote Play"
Product: Wine
Version: 5.19
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: sergi_g_12(a)hotmail.com
Distribution: ---
Wine 5.19 on archlinux.
"PS4 Remote Play" has been updated to also support the PS5, and therefore has
been renamed to "PS Remote Play" [1].
When trying to install it, a popup says "The operating system is not adequate
for running PS Remote Play".
Looking at the log:
```
$ wine ~/Downloads/RemotePlayInstaller.exe
002c:fixme:ver:GetCurrentPackageId (000000000031FDB0 0000000000000000): stub
0024:fixme:ole:CoInitializeSecurity 0031ECDC, -1, 00000000, 00000000, 6, 2,
00000000, 8192, 00000000 stub
0100:fixme:ole:CoInitializeSecurity 0031ECDC, -1, 00000000, 00000000, 6, 2,
00000000, 8192, 00000000 stub
0108:err:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is outdated.
Make sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in
the winbind package of your distribution.
0100:fixme:file:NtLockFile I/O completion on lock not implemented yet
0100:fixme:wintrust:SOFTPUB_VerifyImageHash Cannot verify hash for
pszObjId="1.3.6.1.4.1.311.2.1.30"
0114:fixme:file:NtLockFile I/O completion on lock not implemented yet
0114:fixme:ntdll:NtQuerySystemInformation info_class
SYSTEM_PERFORMANCE_INFORMATION
0114:fixme:ntdll:EtwEventRegister ({319dc449-ada5-50f7-428e-957db6791668},
1002A1A0, 10082460, 10082478) stub.
0114:fixme:ntdll:EtwEventSetInformation (deadbeef, 2, 10003241, 28) stub
```
Seems like PS Remote Play is using NtQuerySystemInformation with
SYSTEM_PERFORMANCE_INFORMATION to make sure the system it powerful enough.
1: https://remoteplay.dl.playstation.net/remoteplay/lang/es/index.html
--
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=32613
Bug #: 32613
Summary: Tom Clancy's Rainbow Six: Lockdown crashes after the
intro videos (without native dxdiagn.dll)
Product: Wine
Version: 1.5.20
Platform: x86
URL: http://www.fileplanet.com/160005/160000/fileinfo/Tom-C
lancy%27s-Rainbow-Six:-Lockdown-Demo
OS/Version: Linux
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gyebro69(a)gmail.com
Classification: Unclassified
Created attachment 43039
--> http://bugs.winehq.org/attachment.cgi?id=43039
terminal output
The game crashes after playing the 2 intro videos without native dxdiagn.dll.
After the crash the game opens a crash report file in notepad and generates a
minidump file. Removing videos doesn't help.
Can be reproduced with the demo version as well, just skip the DirectX
installation step (or set dxdiagn=builtin).
--
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.
https://bugs.winehq.org/show_bug.cgi?id=49811
Bug ID: 49811
Summary: cmd /c "cd "directory"&&"somecommand.exe"" tries to cd
to "directory"&&"somecommand.exe"
Product: Wine
Version: 5.16
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: cmd
Assignee: wine-bugs(a)winehq.org
Reporter: lolisamurai(a)tfwno.gf
Distribution: ---
Created attachment 68139
--> https://bugs.winehq.org/attachment.cgi?id=68139
trace with WINEDEBUG=+cmd
I ran into a scene installer that calls cmd /c with very convoluted quoting. I
narrowed the bug down to this example (run from C:\):
> cmd /c "cd "windows"&&"system32\notepad.exe""
when you run this on windows 10 cmd, it cd's to windows and opens notepad as
expected
on wine, it interprets "windows"&&"system32\notepad.exe" as the directory to cd
to. I have attached a trace with WINEDEBUG=+cmd
--
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=49808
Bug ID: 49808
Summary: Regression in wine 4.0-rc1 cause Stellaris loads very
slow, long time black screen
Product: Wine
Version: 4.0-rc1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: tim110011(a)163.com
Distribution: ---
Stellaris on the recent wine version loads very slowly and the black screen
takes a long time.
Tested many wine versions:
# 3.2 game loads very fast
# 3.11 game loads very fast
# 3.20-staging game loads very fast
# 3.21 game loads very fast
# 4.0-rc1 (for fedora28) game loads very slow, long time black screen
# 4.0-rc1 (for fedora29) game loads very slow, long time black screen
# 4.1 game loads very slow, long time black screen
# 4.6 game loads very slow, long time black screen
Regression in 4.0-rc1 may affect many PDS Clausewitz engine games. Could it
affect many games that load a lot of loose files?
CPU: Intel Xeon E3-1275L v3
Memory: 8GiB
VGA: nVidia GeForce GTX 750 Ti
Distro: Fedora 32
kernel: 5.8.6-201.fc32.x86_64
--
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=49314
Bug ID: 49314
Summary: Wine segfaults with too many command-line arguments
Product: Wine
Version: 5.7
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: esteve.varela(a)gmail.com
Distribution: ---
Running the `wine` command on any program, with too many arguments (or too long
of a command-line) causes a segfault.
An example of a command that can reproduce this bug on most systems:
wine start '/?' /usr/bin/*
Expected output: A list of option flags for wine start
Gotten result: Segmentation fault
This bug is problematic because it can happen with command-lines shorter than
32767 bytes (which I believe to be the upper limit supported by wine), though
the exact circumstances aren't exactly clear.
The reported behavior has been observed with wine 5.7, but is still present in
5.9. On wine-staging, the error is instead:
0024:err:seh:segv_handler_early Got unexpected trap 14 during process
initialization
--
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=49821
Bug ID: 49821
Summary: Seismobuild crashes at start
Product: Wine
Version: 5.16
Hardware: x86-64
URL: https://seismosoft.com/wp-content/uploads/prods/Seismo
Build_v2020_Release-3_ENG.zip
OS: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: xerox.xerox2000x(a)gmail.com
Distribution: ---
Hi, a user submitted this program rated as garbage in Appdb, so i gave it a try
It crashes on msado15 stubs;
By just stupidly returning S_OK instead of E_NOTIMPL for a 6 or so functions
the program starts.
Maybe someone could simply improve stubs a bit in right way to get this program
started, or otherwise this bugreport is for tracking correct implementation of
at least the 1st one (connection_put_CursorLocation)
(below output with stupidly faking success for the below mentioned functions)
0024:fixme:msado15:connection_put_CursorLocation 09C87FA8, 3
0024:fixme:msado15:connection_get_Mode 09C87FA8, 0887FB7C
0024:fixme:msado15:connection_put_Mode 09C87FA8, 16
0024:fixme:msado15:connection_get_Provider 09C87FA8, 0887FB68
0024:fixme:msado15:connection_put_Provider 09C87FA8, L"MSDASQL.1"
0024:fixme:msado15:command_putref_ActiveConnection 09C770D8, 00000000
0024:fixme:msado15:command_putref_ActiveConnection 09C87F78, 00000000
0024:fixme:msado15:command_putref_ActiveConnection 09C87F90, 00000000
0024:fixme:msado15:connection_put_CursorLocation 0AFA0070, 3
0024:fixme:msado15:command_putref_ActiveConnection 0AF64520, 00000000
0024:fixme:msado15:command_putref_ActiveConnection 0AF6EC50, 00000000
0024:fixme:msado15:connection_put_CursorLocation 0AF33370, 3
0024:fixme:msado15:connection_get_Mode 0AF33370, 0887FB7C
0024:fixme:msado15:connection_put_Mode 0AF33370, 16
0024:fixme:msado15:connection_get_Provider 0AF33370, 0887FB68
0024:fixme:msado15:connection_put_Provider 0AF33370, L"MSDASQL.1"
0024:fixme:msado15:command_putref_ActiveConnection 0AF64520, 00000000
0024:fixme:msado15:command_putref_ActiveConnection 0AF6EC50, 00000000
0024:fixme:msado15:command_putref_ActiveConnection 0AE60AD8, 00000000
0024:fixme:msado15:command_putref_ActiveConnection 0AE7E770, 00000000
--
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=32877
Bug #: 32877
Summary: Gnomoria Demo crashes on launch.
Product: Wine
Version: 1.5.22
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: rovanion.luckey(a)gmail.com
Classification: Unclassified
Created attachment 43422
--> http://bugs.winehq.org/attachment.cgi?id=43422
Backtrace of Gnomoria crash.
Gnomoria Demo crashes on launch running 64-bit Ubuntu 12.10 with Wine 1.5.22.
You can download the demo at the fallowing location:
https://s3.amazonaws.com/Gnomoria/GnomoriaDemoSetup.exe
--
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.
https://bugs.winehq.org/show_bug.cgi?id=49909
Bug ID: 49909
Summary: Win Toolkit v.1.4.37.20 (.NET 3.5 app) crashes with
wine-mono
Product: Wine
Version: 5.18
Hardware: x86-64
URL: https://www.pcworld.pl/ftp/pobierz/pc/113590.html
OS: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: mscoree
Assignee: wine-bugs(a)winehq.org
Reporter: gijsvrm(a)gmail.com
Distribution: ArchLinux
Created attachment 68277
--> https://bugs.winehq.org/attachment.cgi?id=68277
output
I used wine-5.18-35-g2ee75bf9ade with wine-mono 5.1.1.
--
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=49900
Bug ID: 49900
Summary: Unimplemented function ntdll.dll.RtlDefaultNpAcl
Product: Wine
Version: 5.18
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: toadking(a)toadking.com
Distribution: ---
Go programs built using the go-winio package fail on this unimplemented
function. The code in question that calls it:
https://github.com/microsoft/go-winio/blob/06bcafdc246846a25d2a46135607fd57…
Test program - https://github.com/ToadKing/rtlDefaultNpAcl (binary in release
section)
--
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=49728
Bug ID: 49728
Summary: Appear (a 4K rendering demo) crashes on unimplemented
function user32.dll.SetWindowFullScreenState
Product: Wine
Version: 5.15
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: user32
Assignee: wine-bugs(a)winehq.org
Reporter: alexhenrie24(a)gmail.com
Distribution: ---
Created attachment 68005
--> https://bugs.winehq.org/attachment.cgi?id=68005
Terminal output
Very easy to reproduce: Unzip the archive and run `wine
appear_debug_nomusic.exe`. Since the program changes your screen resolution, I
recommend enabling the virtual desktop in winecfg beforehand.
First reported at
https://github.com/w23/jetlag_appear/issues/1#issuecomment-399741830
$ sha256sum appear_debug_nomusic.exe
d0fbf762726ed8ca5b3432bbecedccaf6c5c4f898ab2a00bf922500ee1369ff8
--
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=33996
Bug #: 33996
Summary: IncrediMail: installer fails after EULA
Product: Wine
Version: 1.6-rc4
Platform: x86-64
URL: http://www5l.incredimail.com/im/imsetup/201104120001/d
efault/installer/fullsetup/IncrediMailSetup.exe
OS/Version: Linux
Status: NEW
Keywords: download, Installer
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: frederic.delanoy(a)gmail.com
Classification: Unclassified
Created attachment 45174
--> http://bugs.winehq.org/attachment.cgi?id=45174
Terminal log wine-1.6-rc4-65-g6cf05f9
Using wine-1.6-rc4-65-g6cf05f9, I get a window telling the installation is
incomplete (after some msi errors) after the EULA is accepted.
--
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.
https://bugs.winehq.org/show_bug.cgi?id=49805
Bug ID: 49805
Summary: Pyxel Edit crashes when clicking the "File" dropdown
option.
Product: Wine
Version: 5.16
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: ldhacker(a)live.com
Distribution: ---
Created attachment 68127
--> https://bugs.winehq.org/attachment.cgi?id=68127
Pyxel Edit Backtrace
Pyxel Edit crashes when I click the "File" drop down menu. See attached back
trace for further information.
--
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=49575
Bug ID: 49575
Summary: Delphi applications no longer show their main window
in the WM's taskbar
Product: Wine
Version: 5.12
Hardware: x86-64
OS: Linux
Status: NEW
Keywords: regression
Severity: normal
Priority: P2
Component: winex11.drv
Assignee: wine-bugs(a)winehq.org
Reporter: dmitry(a)baikal.ru
Regression SHA1: 3ad40bf64732cbef4ba199a45eefa12f4b491419
Distribution: ---
Created attachment 67724
--> https://bugs.winehq.org/attachment.cgi?id=67724
test app (source + binary)
This is probably a resurface of the bug 12264. Main window of the applications
created with Delphi no longer appears in the WM's taskbar. Once main window of
the application is minimized it's no longer possible to restore it.
This is a regression caused by
commit 3ad40bf64732cbef4ba199a45eefa12f4b491419
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Mon Oct 29 14:37:56 2012 +0100
winex11: Delay mapping a layered window until its attributes are set.
Please find in the attachment a simple test app that reproduces the problem.
--
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=48860
Bug ID: 48860
Summary: RegiStax 6: mouse does not work in open file dialog
Product: Wine
Version: 5.0
Hardware: x86
URL: http://www.astronomie.be/registax/setupregistax6.exe
OS: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: eserradi(a)gmx.com
Regression SHA1: 62ed79ae1ad14d8c46309e93d521cef5797625de
setupregistax6.exe
Distribution: Debian
Mouse does not work in open file dialog in RegiStax V6. A workaround to restore
mouse functionality is to press the tab key until the combobox with label "Look
in:", then press down key to expand the item list and move mouse over one item
to make the mouse work again.
It worked very well in wine version 1.8.7, then switched to wine v4 and v5 and
stop working. It looks like wine opens two instances of RegiStax as in the
title bar appears "RegiStax V6 <2>", it might be related to the mouse problem.
Previous versions of the program are not affected.
--
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=46967
Bug ID: 46967
Summary: [Regression] GOG Galaxy doesn't run in virtual desktop
Product: Wine-staging
Version: 4.5
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: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
git bisect bad
a02caca06d041972bdc053acb29e99c84e0d30dc is the first bad commit
commit a02caca06d041972bdc053acb29e99c84e0d30dc
Author: Alistair Leslie-Hughes <leslie_alistair(a)hotmail.com>
Date: Wed Mar 27 11:07:38 2019 +1100
Rebase against 829170f3d6b875f7a6f065072cc3334a20ff805e
:040000 040000 dfa87306380bb5244360e1db555ce48bcda1bfe3
6526053bea3eaf43704d26cfe1d2831e48a49a9a M patches
With this commit latest GOG Galaxy client 1.2.54 doesn't run with virtual
desktop enabled in winecfg. Error from the output:
X Error of failed request: BadWindow (invalid Window parameter)
Major opcode of failed request: 1 (X_CreateWindow)
Resource id in failed request: 0x7c00008
Serial number of failed request: 12
Current serial number in output stream: 16
I guess this is caused by disabling server-Desktop_Refcount patchset.
I had this error in vanilla wine 4.4, and now in wine-staging 4.5 too.
--
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=48529
Bug ID: 48529
Summary: Avencast fails to launch
Product: Wine
Version: 5.0
Hardware: x86
OS: Linux
Status: NEW
Keywords: patch
Severity: normal
Priority: P2
Component: directx-d3dx9
Assignee: wine-bugs(a)winehq.org
Reporter: z.figura12(a)gmail.com
Distribution: ---
It gets about 39% of the way through loading and then fails with a message box:
"DXC_Mesh: ch01_upperbody01_mesh: OptimizeInplace failed: E_NOTIMPL"
Removing the E_NOTIMPL return, as in the linked staging patch, fixes it.
--
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=18670
Summary: 1
Product: Wine
Version: 1.1.22
Platform: PC
URL: http://qip.ru
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: roman_romul(a)mail.ru
Qip Infium (http://qip.ru), ver.9026 and ver. 9030, wine 1.1.22.
Qip Infium ver.9026 works well, but when I close it - Program Error:
"The program infium.exe has encountered a serious problem and needs to close.
We are sorry for the inconvenience. ......"
--
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.
https://bugs.winehq.org/show_bug.cgi?id=50049
Bug ID: 50049
Summary: Fallout 76 opens black screen then crashes on start
Product: Wine
Version: 5.19
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: o.dierick(a)piezo-forte.be
Distribution: ---
Created attachment 68502
--> https://bugs.winehq.org/attachment.cgi?id=68502
terminal output wine 5.19
Hello,
There is a free week for Fallout 76, so I tested it.
Installing Bethesda.net launcher and downloading the game goes without issues
(I only had to use 'winetricks corefonts', to please CEF).
At first the game failed to start because it couldn't find XD3DAudio2_7.dll.
I worked around that with 'winetricks xact_x64'.
The game doesn't start (opens a black screen then crashes).
I saw on the AppDB [1] mentions of known issues and a lutris script that works
around them. I tried to replicate the script manually but nothing from it does
fix the present crash.
The Steam version is also affected. It appears that the issue appeared after an
update to the game ([2], [3]).
People have reported the issue on the Steam Proton github. [4]
Using DXVK, vcrun2012 and/or wine-staging doesn't fix the issue.
Someone said that using a native dbghelp.dll works around the issue. I didn't
test that.
> 018c:fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children
That line appears in the log and is similar to bug 41286, but it might just be
a side effect and not the actual cause of the crash.
[1] https://appdb.winehq.org/objectManager.php?sClass=version&iId=37660
[2] https://steamcommunity.com/app/1151340/discussions/0/2962764912486941912/
[3] https://steamcommunity.com/app/1151340/discussions/0/2965016081077718322/
[4] https://github.com/ValveSoftware/Proton/issues/3766
Regards.
--
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=15225
Summary: dvdflick v1.3.0 doesn't work
Product: Wine
Version: 1.1.3
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jcoder24(a)yahoo.com
Created an attachment (id=15986)
--> (http://bugs.winehq.org/attachment.cgi?id=15986)
console output from running dvdflick
DVDFlick v1.3.0 installs successfully and starts up without problem. When
trying to add a title the program freezes after selecting the video to be used
as the source of the title.
The last version to successfully work with wine that I'm aware of is 1.3.0 beta
build 616.
Tests were done with wine v1.0 and v1.1.3.
dvdflick's homepage is dvdflick.net and the downloads are available on
sourceforge
http://sourceforge.net/project/showfiles.php?group_id=170196&package_id=194….
--
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.
http://bugs.winehq.org/show_bug.cgi?id=29830
Bug #: 29830
Summary: dvdflick has an error on startup: ActiveX component
can't create object
Product: Wine
Version: 1.4-rc2
Platform: x86
URL: http://sourceforge.net/project/showfiles.php?group_id=
170196&package_id=194180
OS/Version: Linux
Status: NEW
Keywords: download, source
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
CC: jacek(a)codeweavers.com
Blocks: 23912
Classification: Unclassified
austin@aw25 ~/.wine/drive_c/Program Files/DVD Flick $ wine dvdflick.exe
err:ole:CoGetClassObject class {0d43fe01-f093-11cf-8940-00a0c9054228} not
registered
err:ole:create_server class {0d43fe01-f093-11cf-8940-00a0c9054228} not
registered
err:ole:CoGetClassObject no class object {0d43fe01-f093-11cf-8940-00a0c9054228}
could be created for context 0x5
An error occured during startup. Number 429 from dvdflick:
ActiveX component can't create object
Last DLL error: 0
`winetricks -q wsh57` works around it.
--
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.
http://bugs.winehq.org/show_bug.cgi?id=30715
Bug #: 30715
Summary: DVDFlick 1.3.x fails on startup with "automation
error" (needs Scripting.Dictionary implementation)
Product: Wine
Version: 1.5.4
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Classification: Unclassified
Hello,
now that Scripting.FileSystemObject is present (bug 29344) it runs further but
still complains on startup.
--- snip ---
...
0024:Call
ole32.CoCreateInstanceEx(004190b0,00000000,00000005,00000000,00000004,0032f7f0)
ret=660e3937
0024:trace:ole:CoCreateInstance (rclsid={ee09b103-97e0-11cf-978f-00a02463e06f},
pUnkOuter=(nil), dwClsContext=00000005,
riid={00000000-0000-0000-c000-000000000046}, ppv=0x32f708)
...
0024:trace:ole:apartment_getclassobject found
L"C:\\windows\\system32\\scrrun.dll" already loaded
0024:trace:ole:apartment_getclassobject calling DllGetClassObject 0x7e3bb7a0
0024:Call scrrun.DllGetClassObject(004190b0,7eac550c,0032f69c) ret=7e9e5c12
0024:fixme:scrrun:DllGetClassObject {ee09b103-97e0-11cf-978f-00a02463e06f}
{00000001-0000-0000-c000-000000000046} 0x32f69c
0024:Ret scrrun.DllGetClassObject() retval=80040111 ret=7e9e5c12
0024:err:ole:apartment_getclassobject DllGetClassObject returned error
0x80040111
...
0024:err:ole:create_server class {ee09b103-97e0-11cf-978f-00a02463e06f} not
registered
0024:err:ole:CoGetClassObject no class object
{ee09b103-97e0-11cf-978f-00a02463e06f} could be created for context 0x5
0024:Ret ole32.CoCreateInstanceEx() retval=80040152 ret=660e3937
...
0024:Call KERNEL32.RaiseException(c000008f,00000001,00000002,0032f7e4)
ret=660d0956
0024:trace:seh:raise_exception code=c000008f flags=1 addr=0x7b8393ff
ip=7b8393ff tid=0024
0024:trace:seh:raise_exception info[0]=deadcafe
0024:trace:seh:raise_exception info[1]=deadcafe
0024:trace:seh:raise_exception eax=7b826429 ebx=7b8b06b0 ecx=deadcafe
edx=0032f70c esi=0032f7e4 edi=0032f760
0024:trace:seh:raise_exception ebp=0032f748 esp=0032f6e4 cs=0023 ds=002b
es=002b fs=0063 gs=006b flags=00000287
0024:trace:seh:call_stack_handlers calling handler at 0x403be6 code=c000008f
flags=1
...
0024:trace:variant:VarBstrCat L"An error occured during startup. Number
-2147221166 from dvdflick:\r\nAutomation error\r\nLast DLL error: 0"
--- snip ---
"Scripting.Dictionary" is the friendly name of CLSID
{EE09B103-97E0-11CF-978F-00A02463E06F}
'winetricks -q wsh57' works around.
Regards
--
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.
http://bugs.winehq.org/show_bug.cgi?id=23912
Summary: dvdflick has an error on startup: "Object doesn't
support this property or method"
Product: Wine
Version: 1.3.0
Platform: x86
URL: http://sourceforge.net/project/showfiles.php?group_id=
170196&package_id=194180
OS/Version: Linux
Status: NEW
Keywords: download, regression, source
Severity: trivial
Priority: P2
Component: oleaut32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
CC: huw(a)codeweavers.com
Created an attachment (id=30022)
--> (http://bugs.winehq.org/attachment.cgi?id=30022)
terminal output
Regression caused by:
baef9a7e92d93bde21303d8f81c7d80dee9b1780 is the first bad commit
commit baef9a7e92d93bde21303d8f81c7d80dee9b1780
Author: Huw Davies <huw(a)codeweavers.com>
Date: Thu Jul 29 13:20:21 2010 +0100
oleaut32: Don't invoke a function that has the restricted attribute or is
part of an interface that's marked as restricted.
:040000 040000 b3bd2113fdf40b71ba94ba11f68607422777a388
b3e20e99539ff392dd8edce0af67d4c2491fae57 M dlls
easy to reproduce. Download app, install, and run. I'm not sure what it breaks,
if anything. The app itself is kinda useless, see bug 15225.
--
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.
http://bugs.winehq.org/show_bug.cgi?id=16462
Summary: DVD Flick 1.0.3.X freezes when adding a video file
Product: Wine
Version: 1.1.9
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: protomank(a)gmail.com
DVD Flick is a very good open-source Windows app for creating DVDs. The 1.0.2.X
version works fine in Wine, but the new, 1.0.3 version have two problems:
- fonts are too small (if you install some extra windows fonts the problem
diminishes, but still not good)
- freeze when adding a video to the project.
Sadly, for #2, no message is seen in prompt (and I do not know how to use
winedbg, sorry), it just stops executing without any output for the user.
According to DVD Flick author, no changes in the video import were made, only
the ffmpeg version was upgraded.
(I'll try to put the old one over the new to test today).
--
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.
http://bugs.winehq.org/show_bug.cgi?id=24152
Summary: wine1.3.1 powerdesigner12 can not open *.pdm file
Product: Wine
Version: 1.3.1
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: stormyangtao(a)hotmail.com
Yesterday I update Wine1.3.0 to Wine1.3.1 . And then My Power Designer 12 can
not open the pdm file. Before I update wine, PowerDesigner works well.
--
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.
http://bugs.winehq.org/show_bug.cgi?id=34823
Bug #: 34823
Summary: regasm.exe Error parsing
c:\windows\Microsoft.Net\Framework\v4.0.30319\config\m
achine.config Parser returned error 0x80004001
Product: Wine
Version: 1.7.5
Platform: x86-64
OS/Version: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: 11602011(a)qq.com
Classification: Unclassified
when setup sysbase powerdesigner 16.5.0.3982, and run pdshell16.exe, Error
info:
regasm.exe
Error parsing
c:\windows\Microsoft.Net\Framework\v4.0.30319\config\machine.config
Parser returned error 0x80004001
my system: Mac OS X Mavericks 10.9
--
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.
https://bugs.winehq.org/show_bug.cgi?id=46614
Bug ID: 46614
Summary: Readiris 17 crashes when opening pdf, Unknown heap
type: SmartAssembly
Product: Wine
Version: 4.1
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: tinywrkbee(a)gmail.com
Distribution: ---
Created attachment 63514
--> https://bugs.winehq.org/attachment.cgi?id=63514
Readiris 17 default output
App: Readiris 17, latest trial version, can be downloaded freely from
http://www.irislink.com/EN-IL/c1760/Readiris-17---Trial-version--PDF-Softwa…
Wine: 4.1, WINEARCH=win32, Window 7, winetricks riched20 msxml6.
Behavior:
Application crashes when opening pdf files.
To reproduce start the app, press the icon of the "From Files" action and
choose a pdf file.
This happened with any pdf file I tried but not with jpg.
Here's an example of pdf file I tested:
http://ww1.microchip.com/downloads/en/DeviceDoc/00002330B.pdf
I'm attaching a log with the default output and another with
WINEDEBUG=twain,+msvcrt,+msvcm,+msvcirt,+dll,+twain,+msvcr71,+msvcr40.
Let me know if any other debug channel would be helpful.
Errors:
0009:fixme:msvcm:CrtImplementationDetails_DoDllLanguageSupportValidation stub
Unknown heap type: SmartAssembly
0009:fixme:msvcm:CrtImplementationDetails_RegisterModuleUninitializer
0xdc68220: stub
Unhandled Exception:
System.NullReferenceException: Object reference not set to an instance of an
object
0009:fixme:msvcrt:__clean_type_info_names_internal (0x9df833c) stub
0009:fixme:msvcrt:__clean_type_info_names_internal (0x3f5a8a8) stub
0009:fixme:msvcrt:__clean_type_info_names_internal (0x40ea700) stub
[ERROR] FATAL UNHANDLED EXCEPTION: System.NullReferenceException: Object
reference not set to an instance of an object
--
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=36210
Bug ID: 36210
Summary: Sybase PowerDesigner 16.5 'pdshell16.exe' (.NET 4.x
WPF app) wants oleacc.CreateStdAccessibleObject
Product: Wine
Version: 1.7.17
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Hello folks,
it's unclear if the missing implementation (stub) is really harmful to the app
(there are various Wine bugs exposed in the app).
When a main menu item (popup) is navigated for the first time, the terminal
gets:
--- snip ---
fixme:oleacc:CreateStdAccessibleObject 0x44021a -4
{618736e0-3c3d-11cf-810c-00aa00389b71} 0x33d6f4
--- snip ---
Since I've seen that Piotr Caban is working on 'oleacc' component right now
(probably motivated by MS Office/Adobe ui automation bugs?), it might be useful
to track this too.
Debugger:
--- snip ---
Stopped on breakpoint 1 at 0x7d76fe08 CreateStdAccessibleObject
[/home/focht/projects/wine/wine.repo/src/dlls/oleacc/main.c:41] in oleacc
CreateStdAccessibleObject () at
/home/focht/projects/wine/wine.repo/src/dlls/oleacc/main.c:41
41 {
Wine-dbg>bt
Backtrace:
=>0 0x7d76fe08 CreateStdAccessibleObject(hwnd=0x1021c, idObject=0xfffffffc,
riidInterface=0x53833df8, ppvObject=0x33d6f4)
[/home/focht/projects/wine/wine.repo/src/dlls/oleacc/main.c:41] in oleacc
(0x0033d700)
1 0x5384d53a in uiautomationcore (+0x1d539) (0x0033d71c)
2 0x5384db45 in uiautomationcore (+0x1db44) (0x0033d754)
3 0x5383777c in uiautomationcore (+0x777b) (0x0033d76c)
4 0x0f51af8c (0x0033d7e4)
5 0x0f51ae80 (0x0033d7f8)
...
Wine-dbg>info locals
0x7d76fe08 CreateStdAccessibleObject: (0033d700)
HWND hwnd=0x1021c (parameter [ESP+4])
LONG idObject=0xfffffffc (parameter [ESP+8])
IID* riidInterface=0x53833df8 (parameter [ESP+12])
void** ppvObject=0x33d6f4 (parameter [ESP+16])
Wine-dbg>p *riidInterface
{Data1=0x618736e0, Data2=0x3c3d, Data3=0x11cf, Data4="????"}
--- snip ---
Source:
http://source.winehq.org/git/wine.git/blob/817222558d3e3dd09aba1f348f24eda2…
--- snip ---
39 HRESULT WINAPI CreateStdAccessibleObject( HWND hwnd, LONG idObject,
40 REFIID riidInterface, void** ppvObject )
41 {
42 FIXME("%p %d %s %p\n", hwnd, idObject,
43 debugstr_guid( riidInterface ), ppvObject );
44 return E_NOTIMPL;
45 }
--- snip ---
$ sha1sum PowerDesigner165_DMR.exe
c74e4cfd99500d9e3e32713b302ea35bc3f911fb PowerDesigner165_DMR.exe
$ du -sh PowerDesigner165_DMR.exe
810M PowerDesigner165_DMR.exe
$ wine --version
wine-1.7.17-148-g2e5cb7a
Regards
--
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=33554
Bug #: 33554
Summary: Pervasive SQL v10 w3dbsmgr.exe (Database Service
Manager) crashes due to unimplemented function
clusapi.dll.GetClusterInformation
Product: Wine
Version: 1.5.29
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Classification: Unclassified
Hello folks,
as the summary says ...
--- snip ---
...
0062:trace:process:create_process_impl app (null) cmdline L"C:\\Program
Files\\Pervasive Software\\PSQL\\bin\\w3dbsmgr.exe -service -srde"
...
006d:trace:loaddll:load_builtin_dll Loaded
L"C:\\windows\\system32\\clusapi.dll" at 0xf7460000: builtin
006d:fixme:clusapi:OpenCluster ((null)) stub!
...
Unhandled exception: unimplemented function clusapi.dll.GetClusterInformation
called in 32-bit code (0x7b83aabb).
Register dump:
CS:0023 SS:002b DS:002b ES:002b FS:0063 GS:006b
EIP:7b83aabb ESP:00b7d8b4 EBP:00b7d918 EFLAGS:00000283( - -- I S - - -C)
EAX:7b826979 EBX:7b8ba000 ECX:f746a2e0 EDX:00b7d8d4
ESI:deadbeef EDI:f7460000
...
Module Address Debug info Name (70 modules)
PE 400000- 46b000 Deferred w3dbsmgr
PE 470000- 54c000 Deferred pscl3
PE b80000- bcc000 Deferred w3sqlmgr
PE bd0000- dfd000 Deferred w3odbcei
PE 1020000- 1082000 Deferred clientrb
PE 10000000-1004b000 Deferred pscore3
PE 67d00000-67d57000 Export w3mif190
PE 78130000-781cb000 Deferred msvcr80
...
Threads:
process tid prio (all id:s are in hex)
...
00000030 (D) C:\Program Files\Pervasive Software\PSQL\bin\w3dbsmgr.exe
0000006d 0 <==
0000006c 0
0000006b 0
00000061 0
System information:
Wine build: wine-1.5.29-208-gfdedaba
Platform: i386
Host system: Linux
Host version: 3.8.11-200.fc18.x86_64
--- snip ---
Regards
--
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.
http://bugs.winehq.org/show_bug.cgi?id=29194
Bug #: 29194
Summary: Batman Arkham Asylum demo: black screen with Catalyst
>= 11.6
Product: Wine
Version: 1.3.33
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: danxuliu(a)gmail.com
Classification: Unclassified
Created attachment 37672
--> http://bugs.winehq.org/attachment.cgi?id=37672
Batman Arkham Asylum demo log with Catalyst 11.11
I'm not sure if this is a real Wine bug or just a Catalyst bug. If it is a
Catalyst bug, sorry for bothering you :)
In a fresh wineprefix, I have configured Wine (1.3.33) to run in windowed mode,
in 1024x768 resolution. After that, I have installed Batman Arkham Asylum demo
(http://cdn2.netops.eidosinteractive.com/batmanarkhamasylum/BMDemo_installer…).
Then, I have installed dotnet20 with winetricks (as .NET is needed to run the
game). Due to bug http://bugs.winehq.org/show_bug.cgi?id=20651, I also have to
add in "installed Batman Demo directory"/BmGame/Config/UserEngine.ini:
[Engine.Engine]
Language=int
Once all this is done, executing "installed Batman Demo
directory"/Binaries/ShippingPC-BmGame.exe with Catalyst 11.5 shows a Batman
image and then the intro videos (bink videos) start.
However, with Catalyst 11.6 and newer (the newest at the time of this writing
is 11.11, and it shows the problem too) instead of the intro videos a black
screen appears. If I change to other window and then show the Wine desktop
again, the game window is not refreshed (I mean, the contents of the game
window are those of the window I showed over it).
My graphics card is an Ati Radeon HD 4890.
I have attached the Wine log. Note that the "^C" in the eighth line from the
end was caused by a Ctrl-C in the console to stop the game.
I don't know what other information is needed, so please ask :)
--
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.
http://bugs.winehq.org/show_bug.cgi?id=24461
Summary: Batman: Arkham Asylum Demo aborts on startup in
system.management?
Product: Wine
Version: 1.3.3
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Work around bug 24460 to get the game to install, then try to
start it with
cd "$programfilesdir_x86_win\\Eidos\\Batman Arkham Asylum Demo\\Binaries"
ShippingPC-BmGame.exe
It crashes with an error report dialog box; the following log
lines correspond to the dialog box:
fixme:advapi:RegisterEventSourceW ((null),L".NET Runtime 2.0 Error Reporting"):
stub
fixme:advapi:ReportEventW
(0xcafe4242,0x0001,0x0000,0x00001388,(nil),0x000b,0x000000fa,0x3009a1b4,0x5dc624):
stub
err:eventlog:ReportEventW L"clr20r3"
err:eventlog:ReportEventW L"bmlauncher.exe"
err:eventlog:ReportEventW L"1.0.0.0"
err:eventlog:ReportEventW L"4a65eeb5"
err:eventlog:ReportEventW L"system.management"
Workaround from appdb: download the three files
http://www.glio.net/UserEngine.inihttp://www.glio.net/UserInput.inihttp://www.glio.net/UserGame.ini
to
c:/users/$USERNAME/My Documents/Eidos/Batman Arkham Asylum Demo/BmGame/Config
--
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.
http://bugs.winehq.org/show_bug.cgi?id=24460
Summary: Batman: Arkham Asylum Demo won't install without
dotnet30 and gfw
Product: Wine
Version: 1.3.3
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
If you try to install the demo with no native libraries,
the install fails with
DXSetup.exe - Error
A fatal error occurred. However, mscorees.dll could not be loaded to display
the appropriate error message. Please reinstall the .NET framework.
"winetricks dotnet30 gfw" works around this.
At one point, I think "winetricks mono26 gfw" also worked around it,
but that's not working for me at the moment.
--
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.
https://bugs.winehq.org/show_bug.cgi?id=37599
Bug ID: 37599
Summary: AlphaShadow v1.2 - AlphaVSS Volume Shadow Copy Library
Sample Client (.NET 4.0 app) needs VSSAPI.DLL
Product: Wine
Version: 1.7.31
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Distribution: ---
Hello folks,
since there is a patch pending introducing vssapi stub dll
(https://source.winehq.org/patches/data/107766) it might be useful to have some
bug report :)
Found .NET Framework based (managed wrapper) library and example client.
CW probably has some different, specific app in mind :)
Download: https://alphavss.codeplex.com/
Prerequisite: 'winetricks -q dotnet40'
--- snip ---
$ pwd
/home/focht/Downloads/AlphaVSS-1.2.4000.3/Bin/Release
$ wine ./AlphaShadow.exe lws
...
fixme:shell:URL_ParseUrl failed to parse L"AlphaVSS.Common"
fixme:shell:URL_ParseUrl failed to parse L"System.Core"
fixme:shell:URL_ParseUrl failed to parse L"System.EnterpriseServices"
AlphaShadow v1.2 - AlphaVSS Volume Shadow Copy Library Sample Client
Copyright c Peter Palotas 2008-2012
fixme:shell:URL_ParseUrl failed to parse L"System"
Final context: 0
fixme:shell:URL_ParseUrl failed to parse L"AlphaVSS.51.x86"
err:module:import_dll Library VSSAPI.DLL (which is needed by
L"Z:\\home\\focht\\Downloads\\AlphaVSS-1.2.4000.3\\Bin\\Release\\AlphaVSS.51.x86.dll")
not found
Error: Could not load file or assembly 'AlphaVSS.51.x86.dll'
or one of its dependencies. Module not found.
--- snip ---
$ sha1sum AlphaVSS-1.2.4000.3.zip
d465732a6a8909bde092d6a8ce3961086a5a57d4 AlphaVSS-1.2.4000.3.zip
$ du -sh AlphaVSS-1.2.4000.3.zip
5.4M AlphaVSS-1.2.4000.3.zip
$ wine --version
wine-1.7.31-64-gd22928f
Regards
--
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=38734
Bug ID: 38734
Summary: Application Impact Telemetry Static Analyzer from
Windows SDK 8.1 App Certification Kit needs
api-ms-win-core-path-l1-1-0.dll
Product: Wine
Version: 1.7.44
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Distribution: ---
Hello folks,
as the summary says.
Prerequisite for Windows SDK 8.1 install:
* new 32-bit WINEPREFIX
* 'winetricks -q dotnet40 corefonts'
* change WinVer to 'Vista'
* install .NET Framework 4.5 from 'winetricks' cache or download (to avoid .NET
Framework 2.x, 3.x install which is not needed here)
Run the SDK installer with WinVer set to 'Windows 8.1' and 'dwrite' component
disabled to get all Windows 8+ components installed
--- snip ---
$ WINEDLLOVERRIDES=dwrite=d wine ./sdksetup.exe
--- snip ---
Run the tool:
--- snip ---
$ pwd
/home/focht/.wine/drive_c/Program Files/Windows Kits/8.1/App Certification Kit
$ wine ./aitstatic.exe
fixme:wer:WerSetFlags (2) stub!
fixme:heap:RtlSetHeapInformation (nil) 1 (nil) 0 stub
fixme:process:SetProcessShutdownParameters (00000380, 00000000): partial stub.
fixme:ntdll:WinSqmIsOptedIn () stub
fixme:ole:RemUnknown_QueryInterface No interface for iid
{00000019-0000-0000-c000-000000000046}
err:module:import_dll Library AEPIC.dll (which is needed by L"C:\\Program
Files\\Windows Kits\\8.1\\App Certification Kit\\aitstatic.exe") not found
err:module:import_dll Library api-ms-win-core-path-l1-1-0.dll (which is needed
by L"C:\\Program Files\\Windows Kits\\8.1\\App Certification
Kit\\aitstatic.exe") not found
err:module:LdrInitializeThunk Main exe initialization for L"C:\\Program
Files\\Windows Kits\\8.1\\App Certification Kit\\aitstatic.exe" failed, status
c0000135
--- snip ---
Windows 8+ API sets:
https://msdn.microsoft.com/en-us/library/windows/desktop/dn505783%28v=vs.85…
--- quote ---
api-ms-win-core-path-l1-1-0.dll
PathAllocCanonicalize
PathAllocCombine
PathCchAddBackslash
PathCchAddBackslashEx
PathCchAddExtension
PathCchAppend
PathCchAppendEx
PathCchCanonicalize
PathCchCanonicalizeEx
PathCchCombine
PathCchCombineEx
PathCchFindExtension
PathCchIsRoot
PathCchRemoveBackslash
PathCchRemoveBackslashEx
PathCchRemoveExtension
PathCchRemoveFileSpec
PathCchRenameExtension
PathCchSkipRoot
PathCchStripPrefix
PathCchStripToRoot
PathIsUNCEx
--- quote ---
$ sha1sum sdksetup.exe
4540251f0ca62da5fd8e68cd4e3129930e7c5ae9 sdksetup.exe
$ du -sh sdksetup.exe
976K sdksetup.exe
$ wine --version
wine-1.7.44-173-g42cbc05
Regards
--
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=38736
Bug ID: 38736
Summary: Volume Shadow Copy Service (VSS) Backup/Restore Test
Tool from Windows SDK 8.1 needs
api-ms-win-security-lsalookup-l1-1-0.dll
Product: Wine
Version: 1.7.44
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Distribution: ---
Hello folks,
as the summary says.
Prerequisite for Windows SDK 8.1 install:
* new 32-bit WINEPREFIX
* 'winetricks -q dotnet40 corefonts'
* change WinVer to 'Vista'
* install .NET Framework 4.5 from 'winetricks' cache or download (to avoid .NET
Framework 2.x, 3.x install which is not needed here)
Run the SDK installer with WinVer set to 'Windows 8.1' and 'dwrite' component
disabled to get all Windows 8+ components installed
--- snip ---
$ WINEDLLOVERRIDES=dwrite=d wine ./sdksetup.exe
--- snip ---
Run the tool:
--- snip ---
$ pwd
/home/focht/.wine/drive_c/Program Files/Windows Kits/8.1/bin/x86
$ wine ./betest.exe
fixme:wer:WerSetFlags (2) stub!
fixme:heap:RtlSetHeapInformation (nil) 1 (nil) 0 stub
fixme:process:SetProcessShutdownParameters (00000380, 00000000): partial stub.
fixme:ntdll:WinSqmIsOptedIn () stub
fixme:ole:RemUnknown_QueryInterface No interface for iid
{00000019-0000-0000-c000-000000000046}
err:module:import_dll Library api-ms-win-security-lsalookup-l1-1-0.dll (which
is needed by L"C:\\Program Files\\Windows Kits\\8.1\\bin\\x86\\betest.exe") not
found
err:module:LdrInitializeThunk Main exe initialization for L"C:\\Program
Files\\Windows Kits\\8.1\\bin\\x86\\betest.exe" failed, status c0000135
--- snip ---
Windows 7 API set:
http://www.geoffchappell.com/studies/windows/win32/apisetschema/ms-win-secu…
--- quote ---
API-MS-Win-Security-LSALookup-L1-1-0
All the functions in the API-MS-Win-Security-LSALookup-L1-1-0 set are exports
from SECHOST version 6.1 and higher, and are not documented (though they are
each declared in one or another SDK header file):
LookupAccountNameLocalA
LookupAccountNameLocalW
LookupAccountSidLocalA
LookupAccountSidLocalW
LsaLookupClose
LsaLookupFreeMemory
LsaLookupGetDomainInfo
LsaLookupManageSidNameMapping
LsaLookupOpenLocalPolicy
LsaLookupTranslateNames
LsaLookupTranslateSids
The Windows 7 schema redirects this API Set to SECHOST.
--- quote ---
$ sha1sum sdksetup.exe
4540251f0ca62da5fd8e68cd4e3129930e7c5ae9 sdksetup.exe
$ du -sh sdksetup.exe
976K sdksetup.exe
$ wine --version
wine-1.7.44-173-g42cbc05
Regards
--
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=38738
Bug ID: 38738
Summary: VSS Agent from Windows SDK 8.1 needs
api-ms-win-security-lsalookup-l1-1-1.dll
Product: Wine
Version: 1.7.44
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Distribution: ---
Hello folks,
as the summary says.
Similar to bug 38736 which is about 'api-ms-win-security-lsalookup-l1-1-0.dll'
Prerequisite for Windows SDK 8.1 install:
* new 32-bit WINEPREFIX
* 'winetricks -q dotnet40 corefonts'
* change WinVer to 'Vista'
* install .NET Framework 4.5 from 'winetricks' cache or download (to avoid .NET
Framework 2.x, 3.x install which is not needed here)
Run the SDK installer with WinVer set to 'Windows 8.1' and 'dwrite' component
disabled to get all Windows 8+ components installed
--- snip ---
$ WINEDLLOVERRIDES=dwrite=d wine ./sdksetup.exe
--- snip ---
Run the tool:
--- snip ---
$ pwd
/home/focht/.wine/drive_c/Program Files/Windows Kits/8.1/bin/x86
$ wine ./vssagent.exe
fixme:wer:WerSetFlags (2) stub!
fixme:heap:RtlSetHeapInformation (nil) 1 (nil) 0 stub
fixme:process:SetProcessShutdownParameters (00000380, 00000000): partial stub.
fixme:ntdll:WinSqmIsOptedIn () stub
fixme:ole:RemUnknown_QueryInterface No interface for iid
{00000019-0000-0000-c000-000000000046}
err:module:import_dll Library api-ms-win-security-lsalookup-l1-1-1.dll (which
is needed by L"C:\\Program Files\\Windows Kits\\8.1\\bin\\x86\\vssagent.exe")
not found
err:module:LdrInitializeThunk Main exe initialization for L"C:\\Program
Files\\Windows Kits\\8.1\\bin\\x86\\vssagent.exe" failed, status c0000135
--- snip ---
Couldn't find info on this Windows 7 API set - unlike
API-MS-Win-Security-LSALookup-L1-1-0 - maybe it's a minor patch level.
$ sha1sum sdksetup.exe
4540251f0ca62da5fd8e68cd4e3129930e7c5ae9 sdksetup.exe
$ du -sh sdksetup.exe
976K sdksetup.exe
$ wine --version
wine-1.7.44-173-g42cbc05
Regards
--
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=38737
Bug ID: 38737
Summary: 'makeappx' tool from Windows SDK 8.1 crashes on
unimplemented function
ntdll.dll.RtlInitializeGenericTableAvl
Product: Wine
Version: 1.7.44
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Distribution: ---
Hello folks,
as the summary says.
Prerequisite for Windows SDK 8.1 install:
* new 32-bit WINEPREFIX
* 'winetricks -q dotnet40 corefonts'
* change WinVer to 'Vista'
* install .NET Framework 4.5 from 'winetricks' cache or download (to avoid .NET
Framework 2.x, 3.x install which is not needed here)
Run the SDK installer with WinVer set to 'Windows 8.1' and 'dwrite' component
disabled to get all Windows 8+ components installed
--- snip ---
$ WINEDLLOVERRIDES=dwrite=d wine ./sdksetup.exe
--- snip ---
Run the tool:
--- snip ---
$ pwd
/home/focht/.wine/drive_c/Program Files/Windows Kits/8.1/bin/x86
$ wine ./makeappx.exe
fixme:wer:WerSetFlags (2) stub!
fixme:heap:RtlSetHeapInformation (nil) 1 (nil) 0 stub
fixme:process:SetProcessShutdownParameters (00000380, 00000000): partial stub.
fixme:ntdll:WinSqmIsOptedIn () stub
fixme:ole:RemUnknown_QueryInterface No interface for iid
{00000019-0000-0000-c000-000000000046}
fixme:heap:RtlSetHeapInformation (nil) 1 (nil) 0 stub
wine: Call from 0x7bc61787 to unimplemented function
ntdll.dll.RtlInitializeGenericTableAvl, aborting
wine: Unimplemented function ntdll.dll.RtlInitializeGenericTableAvl called at
address 0x7bc61787 (thread 0009), starting debugger...
--- snip ---
MSDN: https://msdn.microsoft.com/en-us/library/hh406465%28v=vs.85%29.aspx
Also mentioned here:
https://msdn.microsoft.com/en-us/library/ff552989%28v=vs.85%29.aspx (part of
'RtlInitializeGenericTable' documentation)
$ sha1sum sdksetup.exe
4540251f0ca62da5fd8e68cd4e3129930e7c5ae9 sdksetup.exe
$ du -sh sdksetup.exe
976K sdksetup.exe
$ wine --version
wine-1.7.44-173-g42cbc05
Regards
--
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=38731
Bug ID: 38731
Summary: TopoEdit tool from Windows SDK 8.1 crashes on
unimplemented function mf.dll.MFCreateTopology
Product: Wine
Version: 1.7.44
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Distribution: ---
Hello folks,
as the summary says.
Prerequisite for Windows SDK 8.1 install:
* new 32-bit WINEPREFIX
* 'winetricks -q dotnet40 corefonts'
* change WinVer to 'Vista'
* install .NET Framework 4.5 from 'winetricks' cache or download (to avoid .NET
Framework 2.x, 3.x install which is not needed here)
Run the SDK installer with WinVer set to 'Windows 8.1' and 'dwrite' component
disabled to get all Windows 8+ components installed
--- snip ---
$ WINEDLLOVERRIDES=dwrite=d wine ./sdksetup.exe
--- snip ---
Run the tool:
--- snip ---
$ pwd
/home/focht/.wine/drive_c/Program Files/Windows Kits/8.1/bin/x86
$ wine ./topoedit.exe
fixme:wer:WerSetFlags (2) stub!
fixme:heap:RtlSetHeapInformation (nil) 1 (nil) 0 stub
fixme:process:SetProcessShutdownParameters (00000380, 00000000): partial stub.
fixme:ntdll:WinSqmIsOptedIn () stub
fixme:ole:RemUnknown_QueryInterface No interface for iid
{00000019-0000-0000-c000-000000000046}
fixme:heap:RtlSetHeapInformation (nil) 1 (nil) 0 stub
fixme:mfplat:MFStartup (131184, 0): stub
wine: Call from 0x7b845511 to unimplemented function mf.dll.MFCreateTopology,
aborting
wine: Unimplemented function mf.dll.MFCreateTopology called at address
0x7b845511 (thread 0009), starting debugger...
--- snip ---
Source: https://source.winehq.org/git/wine.git/blob/HEAD:/dlls/mf/mf.spec#l63
MSDN: https://technet.microsoft.com/pt-pt/library/ms701584
$ sha1sum sdksetup.exe
4540251f0ca62da5fd8e68cd4e3129930e7c5ae9 sdksetup.exe
$ du -sh sdksetup.exe
976K sdksetup.exe
$ wine --version
wine-1.7.44-173-g42cbc05
Regards
--
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=38733
Bug ID: 38733
Summary: appcertui helper tool from Windows SDK 8.1 App
Certification Kit crashes on unimplemented function
api-ms-win-core-processthreads-l1-1-1.dll.OpenProcessT
oken
Product: Wine
Version: 1.7.44
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Distribution: ---
Hello folks,
as the summary says.
Prerequisite for Windows SDK 8.1 install:
* new 32-bit WINEPREFIX
* 'winetricks -q dotnet40 corefonts'
* change WinVer to 'Vista'
* install .NET Framework 4.5 from 'winetricks' cache or download (to avoid .NET
Framework 2.x, 3.x install which is not needed here)
Run the SDK installer with WinVer set to 'Windows 8.1' and 'dwrite' component
disabled to get all Windows 8+ components installed
--- snip ---
$ WINEDLLOVERRIDES=dwrite=d wine ./sdksetup.exe
--- snip ---
Run the tool:
--- snip ---
$ pwd
/home/focht/.wine/drive_c/Program Files/Windows Kits/8.1/App Certification Kit
$ WINEDEBUG=+tid,+seh,+loaddll,+process wine ./appcertui.exe
...
0047:trace:process:create_process_impl starting L"C:\\Program Files\\Windows
Kits\\8.1\\Testing\\Runtimes\\TAEF\\TE.exe" as Win32 binary (0x400000-0x43c000,
arch 014c)
000d:trace:loaddll:load_builtin_dll Loaded L"KERNEL32.dll" at 0x7b820000:
builtin
000d:trace:process:init_current_directory starting in L"C:\\Program
Files\\Windows Kits\\8.1\\App Certification Kit\\" 0x1c
000d:trace:process:__wine_kernel_init starting process name=L"C:\\Program
Files\\Windows Kits\\8.1\\Testing\\Runtimes\\TAEF\\Te.exe"
argv[0]=L"C:\\Program Files\\Windows
Kits\\8.1\\Testing\\Runtimes\\TAEF\\TE.exe"
000d:trace:loaddll:load_native_dll Loaded L"C:\\Program Files\\Windows
Kits\\8.1\\Testing\\Runtimes\\TAEF\\Te.exe" at 0x400000: native
0047:trace:process:create_process_impl started process pid 000b tid 000d
...
000d:trace:loaddll:load_builtin_dll Loaded
L"C:\\windows\\system32\\api-ms-win-core-processthreads-l1-1-1.dll" at
0x7eff0000: builtin
000d:trace:seh:raise_exception code=80000100 flags=1 addr=0x7b845511
ip=7b845511 tid=000d
000d:trace:seh:raise_exception info[0]=7effcbec
000d:trace:seh:raise_exception info[1]=7effcced
wine: Call from 0x7b845511 to unimplemented function
api-ms-win-core-processthreads-l1-1-1.dll.OpenProcessToken, aborting
--- snip ---
Windows 8+ API sets:
https://msdn.microsoft.com/en-us/library/windows/desktop/dn505783%28v=vs.85…
Wine is missing the forward in the API set dll.
$ sha1sum sdksetup.exe
4540251f0ca62da5fd8e68cd4e3129930e7c5ae9 sdksetup.exe
$ du -sh sdksetup.exe
976K sdksetup.exe
$ wine --version
wine-1.7.44-173-g42cbc05
Regards
--
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=40334
Bug ID: 40334
Summary: AION - Wine /Unhandled exception: page fault on read
access to 0x00000000 in 64-bit code
(0x0000000000000000).
Product: Wine
Version: 1.7.55
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: ryancasanovalv(a)gmail.com
Distribution: ---
Created attachment 54000
--> https://bugs.winehq.org/attachment.cgi?id=54000
Got this error message after installing AION on wine/ubuntu 15.10
Unhandled exception: page fault on read access to 0x00000000 in 64-bit code
(0x0000000000000000).
--
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=35910
Bug ID: 35910
Summary: not open programs
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: midela73(a)gmail.com
Created attachment 47958
--> http://bugs.winehq.org/attachment.cgi?id=47958
not open programs
not open programs
--
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=42011
Bug ID: 42011
Summary: Eve Online Launcher doesn't display correctly
Product: Wine
Version: 2.0-rc1
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: maiktapwagner(a)aol.com
Distribution: ---
Created attachment 56451
--> https://bugs.winehq.org/attachment.cgi?id=56451
Terminal Output
Hello everyone,
I am trying to get "Eve Online" running on my openSUSE "Tumbleweed" system.
Unfortunately the Launcher doesn't display any graphics or text, just a grey
box except for the "minimize", "maximize" etc. icons in the upper right corner
which do work.
Please let me know should you need further information.
Maik
--
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=42473
Bug ID: 42473
Summary: Eve Online Launcher is completely white (no content
displayed)
Product: Wine
Version: 1.8
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: d.marksbarber(a)gmail.com
Distribution: ---
Created attachment 57329
--> https://bugs.winehq.org/attachment.cgi?id=57329
Error when attempting to refresh the launcher's GUI
I am running wine 1.8 on Ubuntu, attempting to play Eve Online.
Downloading the game seems to work fine, running the game seems to work fine.
But logging in through the client has been disabled. So logging in through the
launcher is a must.
Unfortunately no content (main launcher) is displayed, so I am unable to see
the login buttons and such. Eve's launcher has a fall back to a less GUI
intensive launcher which is basically just a downloader, I have not found an
option to log in through that launcher as of posting this.
Is there a fix for this issue?
--
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=25776
Summary: Windows Live Mesh installer renders incorrectly
Product: Wine
Version: 1.3.11
Platform: x86-64
URL: http://explore.live.com/windows-live-mesh?os=other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: trygve.vea(a)gmail.com
Created an attachment (id=32848)
--> (http://bugs.winehq.org/attachment.cgi?id=32848)
Terminal output, wine 1.3.11
While attempting to test bug 4538, I'm unable to install Windows Live Mesh due
to the installer rendering incorrectly (PS: Prerequisite for getting thus far
is setting Windows version to Windows 7). There are no visible buttons, only
some text.
Uploaded attachment shows terminal output.
Will upload screenshot shortly.
--
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.
http://bugs.winehq.org/show_bug.cgi?id=16884
Summary: .NET 3.0: WCF installer fails due to LsaLookupNames2
stub
Product: Wine
Version: 1.1.12
Platform: Other
URL: http://www.microsoft.com/downloads/details.aspx?FamilyID
=10cc340b-f857-4a14-83f5-25634c3bf043
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: advapi32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Hello,
after getting past bug 16883 the next one...
Prerequisites:
---
1. clean WINEPREFIX
2. sh mywinetricks -q wmicore
3. sh winetricks -q dotnet20
4. download .NET 3.0 Framework installer from: http://download.microsoft.com
/download/4/d/a/4da3a5fa-ee6a-42b8-8bfa-ea5c4a458a7d/dotnetfx3setup.exe
(sha1sum:
a566bcd2ffffc3842a95adc57f7df3f8cd11577f)
5. export _SFX_CAB_SHUTDOWN_REQUEST=1 (workaround, see bug 9158)
6. wine ./dotnetfx3setup.exe
It might take a while until all required packages are downloaded using BITS.
Note: If you need to redo steps, backup the directory "dotnetfx304506.30" from
"c:\\windows\\temp" to a different location, remove ~/.wine, copy
"dotnetfx304506.30" again to "c:\\windows\\temp" to prevent BITS from
downloading over and over again.
---
The WCF installer still fails:
"c:\\windows\\temp\\dd_wcf_retCA5476.txt":
--- snip ---
ServiceModelReg [14:57:53:680]: Starting tool
'C:\windows\system32\wbem\mofcomp.exe' with parameters
'"C:\windows\Microsoft.NET\Framework\v3.0\Windows Communication
Foundation\ServiceModel.mof"'.
ServiceModelReg [14:57:55:965]: Microsoft (R) 32-bit MOF Compiler Version
1.50.1085.0001
ServiceModelReg [14:57:55:966]: Copyright (c) Microsoft Corp. 1997-1999. All
rights reserved.
ServiceModelReg [14:58:03:464]:
ServiceModelReg [14:58:03:467]: Parsing MOF file:
C:\windows\Microsoft.NET\Framework\v3.0\Windows Communication
Foundation\ServiceModel.mof
ServiceModelReg [14:58:06:160]: MOF file has been successfully parsed
ServiceModelReg [14:58:06:164]: Storing data in the repository...
ServiceModelReg [14:58:07:047]: An error occurred while creating object 3
defined on lines 20 - 24:
ServiceModelReg [14:58:07:053]: 0X80041002 Class, instance, or property
'HostingModel' was not found.
ServiceModelReg [14:58:07:280]: Compiler returned error 0x80041001
ServiceModelReg [14:58:07:280]:
ServiceModelReg [14:58:07:291]:
ServiceModelReg [14:58:07:330]: Tool 'C:\windows\system32\wbem\mofcomp.exe'
with parameters '"C:\windows\Microsoft.NET\Framework\v3.0\Windows Communication
Foundation\ServiceModel.mof"' exited with code '3'.
ServiceModelReg [14:58:07:473]: Warning: Failure executing
"C:\windows\system32\wbem\mofcomp.exe" with parameters
""C:\windows\Microsoft.NET\Framework\v3.0\Windows Communication
Foundation\ServiceModel.mof"": System.ApplicationException: Unexpected result 3
executing C:\windows\system32\wbem\mofcomp.exe with
"C:\windows\Microsoft.NET\Framework\v3.0\Windows Communication
Foundation\ServiceModel.mof"
at System.ServiceModel.Install.InstallHelper.ExecuteWait(String program,
String parameters, Int32[] allowedExitCodes)
at System.ServiceModel.Install.WmiInstallComponent.OnInstall(OutputLevel
outputLevel)
ServiceModelReg [14:58:08:291]: Error: WMI classes are not installed.
ServiceModelReg [14:58:08:304]: Repairing: Windows CardSpace (idsvc)
ServiceModelReg [14:58:08:610]: Repairing: Net.Tcp Port Sharing Service
(NetTcpPortSharing)
ServiceModelReg [14:58:09:011]:
System.Security.Principal.IdentityNotMappedException: Some or all identity
references could not be translated.
at System.Security.Principal.NTAccount.Translate(IdentityReferenceCollection
sourceAccounts, Type targetType, Boolean forceSuccess)
at System.Security.Principal.NTAccount.Translate(Type targetType)
at
System.Security.AccessControl.CommonObjectSecurity.ModifyAccess(AccessControlModification
modification, AccessRule rule, Boolean& modified)
at
System.Security.AccessControl.CommonObjectSecurity.AddAccessRule(AccessRule
rule)
at
System.ServiceModel.Install.ListenerServiceInstallComponent.SetConfigSecurity(OutputLevel
outputLevel)
at
System.ServiceModel.Install.ListenerServiceInstallComponent.OnReinstall(OutputLevel
outputLevel)
at System.ServiceModel.Install.ServiceInstallComponent.Reinstall(OutputLevel
outputLevel)
at Microsoft.Tools.ServiceModel.ServiceModelReg.PerformAction(ActionItem
actionItem, Nullable`1 confirmUninstall)
at Microsoft.Tools.ServiceModel.ServiceModelReg.Run(String[] args)
at Microsoft.Tools.ServiceModel.ServiceModelReg.TryRun(String[] args)
=== Verbose logging stopped: 1/11/2009 14:58:09 ===
--- snip ---
Relevant trace log:
--- snip ---
0035:fixme:advapi:LsaLookupNames2
(0xcafe,0x00000000,0x00000001,0x1421c0,0x33efdc,0x33efd0) stub
...
0035:trace:seh:raise_exception code=e0434f4d flags=1 addr=0x7b844f54
ip=0x7b844fd7 tid=0035
0035:trace:seh:raise_exception info[0]=80131501
0035:trace:seh:raise_exception eax=7b82cc91 ebx=7b8c3940 ecx=00000000
edx=0033f0b8 esi=0033f0b8 edi=e0434f4d
0035:trace:seh:raise_exception ebp=0033f080 esp=0033f01c cs=0023 ds=002b
es=002b fs=0063 gs=006b flags=00000246
0035:trace:seh:call_stack_handlers calling handler at 0x79f9a3c8 code=e0434f4d
flags=1
0035:CALL
MSVCR80._except_handler4_common(7a381240,79e717fb,0033f02c,0033f0d0,0033ecb8,0033eb60)
ret=79f9a3e7
0035:RET MSVCR80._except_handler4_common() retval=00000001 ret=79f9a3e7
0035:trace:seh:call_stack_handlers handler at 0x79f9a3c8 returned 1
0035:trace:seh:call_stack_handlers calling handler at 0x7a3197d4 code=e0434f4d
flags=1
0035:CALL MSVCR80.__CxxFrameHandler3() ret=7bc729f1
0035:RET MSVCR80.__CxxFrameHandler3() retval=00000001 ret=7bc729f1
0035:trace:seh:call_stack_handlers handler at 0x7a3197d4 returned 1
0035:trace:seh:call_stack_handlers calling handler at 0x79f948ec code=e0434f4d
flags=1
....
0035:fixme:advapi:RegisterEventSourceW (L".",L"System.ServiceModel.Install
3.0.0.0"): stub
0035:fixme:advapi:ReportEventW
(0xcafe4242,0x0001,0x0000,0x00000000,(nil),0x0001,0x00000000,0xa55c64,0xa55b0c):
stub
0035:err:eventlog:ReportEventW
L"System.Security.Principal.IdentityNotMappedException: Some or all identity
references could not be translated.\r\n at
System.Security.Principal.NTAccount.Translate(IdentityReferenceCollection
sourceAccounts, Type targetType, Boolean forceSuccess)\r\n at
System.Security.Principal.NTAccount.Transla"...
--- snip ---
Oh joy, LSA again ...
There already exist other bugs falling into same problem domain, example: bug
16418
If developer resources are short maybe this could be part of some SoC project:
making transition from current approach towards LSA rpc interface and lsass
(and fleshing out stubs of course).
http://www.hsc.fr/ressources/articles/win_net_srv/msrpc_lsarpc.html
I fleshed the stub a bit just for proof and it gets the WCF installer further.
Regards
--
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.
http://bugs.winehq.org/show_bug.cgi?id=16886
Summary: .NET 3.0: WCF installer requires ChangeServiceConfig2
with SERVICE_CONFIG_FAILURE_ACTIONS support
Product: Wine
Version: 1.1.12
Platform: Other
URL: http://www.microsoft.com/downloads/details.aspx?FamilyID
=10cc340b-f857-4a14-83f5-25634c3bf043
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: advapi32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Hello,
actually bug 16883 contained two bugs and this one slipped through.
ChangeServiceConfig2W API needs SERVICE_CONFIG_FAILURE_ACTIONS support.
---
1. clean WINEPREFIX
2. sh mywinetricks -q wmicore
3. sh winetricks -q dotnet20
4. download .NET 3.0 Framework installer from: http://download.microsoft.com
/download/4/d/a/4da3a5fa-ee6a-42b8-8bfa-ea5c4a458a7d/dotnetfx3setup.exe
(sha1sum:
a566bcd2ffffc3842a95adc57f7df3f8cd11577f)
5. export _SFX_CAB_SHUTDOWN_REQUEST=1 (workaround, see bug 9158)
6. wine ./dotnetfx3setup.exe
It might take a while until all required packages are downloaded using BITS.
Note: If you need to redo steps, backup the directory "dotnetfx304506.30" from
"c:\\windows\\temp" to a different location, remove ~/.wine, copy
"dotnetfx304506.30" again to "c:\\windows\\temp" to prevent BITS from
downloading over and over again.
---
Relevant log:
--- snip ---
ServiceModelReg [16:55:11:288]: Repairing: Windows CardSpace (idsvc)
ServiceModelReg [16:55:11:307]: System.AccessViolationException: Attempted to
read or write protected memory. This is often an indication that other memory
is corrupt.
at
System.ServiceModel.Install.NativeMethods.ChangeFailureActions(ServiceHandle
hService, Int32 dwInfoLevel, SERVICE_FAILURE_ACTIONS& lpInfo)
at System.ServiceModel.Install.ServiceHandle.SetFailureActions(TimeSpan
resetPeriod, TimeSpan[] restartPeriods)
at System.ServiceModel.Install.ServiceInstallComponent.OnInstall(OutputLevel
outputLevel)
at
System.ServiceModel.Install.InfoCardServiceInstallComponent.OnInstall(OutputLevel
outputLevel)
at System.ServiceModel.Install.ServiceInstallComponent.Reinstall(OutputLevel
outputLevel)
at Microsoft.Tools.ServiceModel.ServiceModelReg.PerformAction(ActionItem
actionItem, Nullable`1 confirmUninstall)
at Microsoft.Tools.ServiceModel.ServiceModelReg.Run(String[] args)
at Microsoft.Tools.ServiceModel.ServiceModelReg.TryRun(String[] args)
=== Verbose logging stopped: 1/11/2009 16:55:11 ===
--- snip ---
After fleshing out programs/services/svcctl_ChangeServiceConfig2W() a bit the
problem is prevented (fake seems also ok).
Regards
--
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.
http://bugs.winehq.org/show_bug.cgi?id=16891
Summary: .NET 3.0: Windows Workflow Foundation installer claims
.NET 2.0 Framework needed, MsiNetAssemblySupport/msi
fusion version retrieval bug
Product: Wine
Version: 1.1.12
Platform: Other
URL: http://www.microsoft.com/downloads/details.aspx?FamilyID
=10cc340b-f857-4a14-83f5-25634c3bf043
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Hello,
after getting past bug 16888 another subinstaller "Windows Workflow Foundation"
fails, claiming ".NET 2.0 Framework is required".
This is of course already installed as part of prerequisite.
Prerequisites:
---
1. clean WINEPREFIX
2. sh mywinetricks -q wmicore
3. sh winetricks -q dotnet20
4. download .NET 3.0 Framework installer from: http://download.microsoft.com
/download/4/d/a/4da3a5fa-ee6a-42b8-8bfa-ea5c4a458a7d/dotnetfx3setup.exe
(sha1sum:
a566bcd2ffffc3842a95adc57f7df3f8cd11577f)
5. export _SFX_CAB_SHUTDOWN_REQUEST=1 (workaround, see bug 9158)
6. wine ./dotnetfx3setup.exe
It might take a while until all required packages are downloaded using BITS.
Note: If you need to redo steps, backup the directory "dotnetfx304506.30" from
"c:\\windows\\temp" to a different location, remove ~/.wine, copy
"dotnetfx304506.30" again to "c:\\windows\\temp" to prevent BITS from
downloading over and over again.
---
The corresponding logfile "dd_WF_3.0_x86retMSI48DE.txt" reveals nothing, it's
empty.
Using ORCA on "WF_3.0_x86.msi" shows that MsiNetAssemblySupport >="2.0.50727"
condition needs to be satisfied.
The "MsiNetAssemblySupport" property should be set in set_msi_assembly_prop()
but it doesn't seem so.
Trace log shows:
--- snip ---
0016:Call version.GetFileVersionInfoSizeW(00149050
L"C:\\windows\\Microsoft.NET\\Framework\\v3.0\\fusion.dll",0032f2d0)
ret=6024ad80
0016:Call KERNEL32.GetModuleHandleExW(00000000,00149050,0032ef90) ret=609ecc77
0016:Ret KERNEL32.GetModuleHandleExW() retval=00000000 ret=609ecc77
0016:Call KERNEL32.LoadLibraryExW(00149050
L"C:\\windows\\Microsoft.NET\\Framework\\v3.0\\fusion.dll",00000000,00000002)
ret=609ecc99
0016:Call PE DLL (proc=0x60c431f0,module=0x60c40000
L"psapi.dll",reason=PROCESS_ATTACH,res=(nil))
...
0016:Ret PE DLL (proc=0x60bd98c4,module=0x60bd0000
L"fusion.dll",reason=PROCESS_ATTACH,res=(nil)) retval=1
0016:Ret KERNEL32.LoadLibraryExW() retval=60bd0000 ret=609ecc99
0016:Call KERNEL32.FindResourceW(60bd0000,00000001,00000010) ret=609ecd25
0016:Ret KERNEL32.FindResourceW() retval=00000000 ret=609ecd25
0016:Call KERNEL32.FreeLibrary(60bd0000) ret=609ecd94
...
0016:Ret KERNEL32.FreeLibrary() retval=00000001 ret=609ecd94
0016:Call KERNEL32.SetLastError(00000714) ret=609ed6e6
0016:Ret KERNEL32.SetLastError() retval=00000714 ret=609ed6e6
0016:Ret version.GetFileVersionInfoSizeW() retval=00000000 ret=6024ad80
--- snip ---
Looking into "C:\\windows\\Microsoft.NET\\Framework\\v3.0\\fusion.dll" path
there is no native fusion.dll.
Hence Wine's builtin fusion.dll is loaded by LoadLibraryExW().
The builtin fusion doesn't contain version resource so it fails.
This is a subtile problem: adding version resource to Wine's fusion might cause
problems because every .NET Framework might ship it's own version of fusion
which ought to override builtin fusion.
http://msdn.microsoft.com/en-us/library/aa370325.aspx
Usually:
C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\fusion.dll
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\fusion.dll
AFAIK .NET 3.0 and 3.5 don't bring their own fusion version (someone might
check a real Windows installation with these Frameworks present).
The problem is how dlls/msi/package.c:get_fusion_filename() works.
At the point where the installation fails the following registry data is
present at the location get_fusion_filename() reads:
--- snip ---
[HKEY_LOCAL_MACHINE\Software\Microsoft\NET Framework Setup]
[HKEY_LOCAL_MACHINE\Software\Microsoft\NET Framework Setup\NDP]
[HKEY_LOCAL_MACHINE\Software\Microsoft\NET Framework Setup\NDP\v2.0.50727]
"Increment"="42"
"Install"=dword:00000001
"MSI"=dword:00000001
"SP"=dword:00000000
[HKEY_LOCAL_MACHINE\Software\Microsoft\NET Framework Setup\NDP\v2.0.50727\1033]
"Install"=dword:00000001
"MSI"=dword:00000001
"SP"=dword:00000000
[HKEY_LOCAL_MACHINE\Software\Microsoft\NET Framework Setup\NDP\v3.0]
[HKEY_LOCAL_MACHINE\Software\Microsoft\NET Framework Setup\NDP\v3.0\Setup]
[HKEY_LOCAL_MACHINE\Software\Microsoft\NET Framework
Setup\NDP\v3.0\Setup\Windows Communication Foundation]
"InstallSuccess"=dword:00000001
"ReferenceInstallPath"="C:\\Program Files\\Reference
Assemblies\\Microsoft\\Framework\\v3.0\\"
"RuntimeInstallPath"="C:\\windows\\Microsoft.NET\\Framework\\v3.0\\Windows
Communication Foundation\\"
"Version"="3.0.04506.30"
[HKEY_LOCAL_MACHINE\Software\Microsoft\NET Framework
Setup\NDP\v3.0\Setup\Windows Presentation Foundation]
@="Windows Presentation Foundation"
"InstallRoot"="C:\\windows\\Microsoft.Net\\Framework\\v3.0\\WPF\\"
"InstallSuccess"=dword:00000001
"ProductVersion"="3.0.6920.0"
"Version"="3.0.6920.0"
"WPFCommonAssembliesPathx86"="C:\\windows\\system32\\"
"WPFNonReferenceAssembliesPathx86"="C:\\windows\\Microsoft.Net\\Framework\\v3.0\\WPF\\"
"WPFReferenceAssembliesPathx86"="C:\\Program Files\\Reference
Assemblies\\Microsoft\\Framework\\v3.0\\"
--- snip ---
I don't know how Windows msi does MsiNetAssemblySupport.
Maybe a check for real existence of (native) fusion.dll to prevent false load
of "builtin" fusion is better.
If native fusion is not present in full path, that .NET Framework subkey data
(version) can't be used for MsiNetAssemblySupport property.
Regards
--
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.
http://bugs.winehq.org/show_bug.cgi?id=16888
Summary: .NET 3.0: WCF installer requires httpapi.dll with some
stubs
Product: Wine
Version: 1.1.12
Platform: Other
URL: http://www.microsoft.com/downloads/details.aspx?FamilyID
=10cc340b-f857-4a14-83f5-25634c3bf043
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Hello,
after getting past bug 16883 the next one...
Prerequisites:
---
1. clean WINEPREFIX
2. sh mywinetricks -q wmicore
3. sh winetricks -q dotnet20
4. download .NET 3.0 Framework installer from: http://download.microsoft.com
/download/4/d/a/4da3a5fa-ee6a-42b8-8bfa-ea5c4a458a7d/dotnetfx3setup.exe
(sha1sum:
a566bcd2ffffc3842a95adc57f7df3f8cd11577f)
5. export _SFX_CAB_SHUTDOWN_REQUEST=1 (workaround, see bug 9158)
6. wine ./dotnetfx3setup.exe
It might take a while until all required packages are downloaded using BITS.
Note: If you need to redo steps, backup the directory "dotnetfx304506.30" from
"c:\\windows\\temp" to a different location, remove ~/.wine, copy
"dotnetfx304506.30" again to "c:\\windows\\temp" to prevent BITS from
downloading over and over again.
---
The WCF installer still fails:
--- snip ---
ServiceModelReg [15:38:17:256]: Repairing: Net.Tcp Port Sharing Service
(NetTcpPortSharing)
ServiceModelReg [15:38:17:279]: Uninstalling: HTTP Namespace Reservations
ServiceModelReg [15:38:17:294]: System.DllNotFoundException: Unable to load DLL
'httpapi.dll': Exception from HRESULT: 0x8007007E
at System.ServiceModel.Install.NativeMethods.HttpTerminate(Int32 Flags,
IntPtr pReserved)
at
System.ServiceModel.Install.HttpNamespaceReservationInstallComponent.get_IsInstalled()
at
System.ServiceModel.Install.HttpNamespaceReservationInstallComponent.Uninstall(OutputLevel
outputLevel)
at
System.ServiceModel.Install.ServiceModelInstallComponent.Reinstall(OutputLevel
outputLevel)
at Microsoft.Tools.ServiceModel.ServiceModelReg.PerformAction(ActionItem
actionItem, Nullable`1 confirmUninstall)
at Microsoft.Tools.ServiceModel.ServiceModelReg.Run(String[] args)
at Microsoft.Tools.ServiceModel.ServiceModelReg.TryRun(String[] args)
=== Verbose logging stopped: 1/11/2009 15:38:17 ===
--- snip ---
Native httpapi override makes things only worse since it expects http service
present ...
--- snip ---
...
0035:CALL HTTPAPI.HttpInitialize(<unknown, check return>) ret=036a22c0
0035:trace:ntdll:NtCreateFile handle=0x67a16094 access=c0100000
name=L"\\Device\\Http\\Control" objattr=00000040 root=(nil) sec=(nil)
io=0x33ed54 alloc_size=(nil)
attr=00000000 sharing=00000003 disp=1 options=00000000 ea=0x18fb28.0x0000001f
0035:trace:service:OpenSCManagerW ((null),(null),0x00000001)
0035:trace:service:sc_handle_alloc sc_handle type=0 -> 0x18fb28
...
0013:trace:service:svcctl_OpenSCManagerW ((null), (null), 1)
...
0035:trace:service:OpenSCManagerW returning 0x18fb28 (access : 0x00000001)
0035:trace:service:OpenServiceW 0x18fb28 L"HTTP" 20
0035:trace:service:sc_handle_alloc sc_handle type=1 -> 0x18f658
...
0018:trace:service:svcctl_OpenServiceW (L"HTTP", 0x14)
...
0035:trace:service:sc_handle_destroy_service destroying service 0x18f658
0035:trace:service:CloseServiceHandle 0x18fb28
...
0035:trace:service:sc_handle_destroy_manager destroying SC Manager 0x18fb28
0035:RET HTTPAPI.HttpInitialize(00000001,00000002,00000000) retval=00000003
ret=036a22c0
...
Uninstalling: HTTP Namespace Reservations
Error: Path not found
fixme:advapi:RegisterEventSourceW (L".",L"System.ServiceModel.Install
3.0.0.0"): stub
fixme:advapi:ReportEventW
(0xcafe4242,0x0001,0x0000,0x00000000,(nil),0x0001,0x00000000,0xa534b4,0xa5335c):
stub
err:eventlog:ReportEventW L"System.ComponentModel.Win32Exception: Path not
found\r\n at
System.ServiceModel.Install.HttpNamespaceReservationInstallComponent.get_IsInstalled()\r\n
at
System.ServiceModel.Install.HttpNamespaceReservationInstallComponent.Uninstall(OutputLevel
outputLevel)\r\n at System.ServiceModel.Install.Se"...
fixme:advapi:DeregisterEventSource (0xcafe4242) stub
err:msi:ITERATE_Actions Execution halted, action L"InstallFinalize" returned
1603
...
--- snip ---
It seems better to provide a simple httpapi stub dll.
MSDN for more info (only version 1 API seems requested):
http://msdn.microsoft.com/en-us/library/aa364627.aspxhttp://msdn.microsoft.com/en-us/library/aa364625.aspx
After generating a stub dll with winedump and some trial & error sessions, the
minimum required stubs are as follows:
--- snip ---
HttpDeleteServiceConfiguration -> return NO_ERROR (0)
HttpInitialize -> return NO_ERROR (0)
HttpQueryServiceConfiguration -> return ERROR_FILE_NOT_FOUND (2) (most likely
means the service not installed, passed args can be left untouched with this
error)
HttpSetServiceConfiguration -> return NO_ERROR (0)
HttpTerminate -> return NO_ERROR (0)
--- snip ---
With those stubs in place, the HTTP api related actions (fake) succeed.
--- snip ---
ServiceModelReg [16:30:52:470]: Uninstalling: HTTP Namespace Reservations
ServiceModelReg [16:30:52:472]: Warning: HTTP namespace reservations are not
installed.
ServiceModelReg [16:30:52:472]: Installing: HTTP Namespace Reservations
ServiceModelReg [16:30:52:473]: Information: The ServiceModelReg tool has
completed successfully.
--- snip ---
and the WCF installer claims success.
Regards
--
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.
http://bugs.winehq.org/show_bug.cgi?id=16883
Summary: .NET 3.0: WCF installer fails due bug in services.exe
svcctl_GetServiceKeyNameW
Product: Wine
Version: 1.1.12
Platform: Other
URL: http://www.microsoft.com/downloads/details.aspx?FamilyID
=10cc340b-f857-4a14-83f5-25634c3bf043
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Hello,
after getting past bug 16882 (WMI is needed) we resume where we left: bug 16878
---
1. clean WINEPREFIX
2. sh mywinetricks -q wmicore
3. sh winetricks -q dotnet20
4. download .NET 3.0 Framework installer from: http://download.microsoft.com
/download/4/d/a/4da3a5fa-ee6a-42b8-8bfa-ea5c4a458a7d/dotnetfx3setup.exe
(sha1sum:
a566bcd2ffffc3842a95adc57f7df3f8cd11577f)
5. export _SFX_CAB_SHUTDOWN_REQUEST=1 (workaround, see bug 9158)
6. wine ./dotnetfx3setup.exe
It might take a while until all required packages are downloaded using BITS.
Note: If you need to redo steps, backup the directory "dotnetfx304506.30" from
"c:\\windows\\temp" to a different location, remove ~/.wine, copy
"dotnetfx304506.30" again to "c:\\windows\\temp" to prevent BITS from
downloading over and over again.
---
The WCF installer still fails:
"c:\\windows\\temp\\dd_dotnetfx3error.txt":
--- snip ---
[01/11/09,14:18:10] Windows Communication Foundation: [2] Error: Installation
failed for component Windows Communication Foundation. MSI returned error code
1603
[01/11/09,14:18:21] WapUI: [2] DepCheck indicates Windows Communication
Foundation is not installed.
--- snip ---
"c:\\windows\\temp\\dd_wcf_retMSI1CB9.txt":
--- snip ---
1: C:\windows\Microsoft.NET\Framework\v3.0\Windows Communication
Foundation\ServiceModelReg.exe /r /x /y /v 2:
1: ERROR: Process returned non-0 value! CMDLINE:
C:\windows\Microsoft.NET\Framework\v3.0\Windows Communication
Foundation\ServiceModelReg.exe /r /x /y /v 2:
1: Failed 2:
--- snip ---
--- snip ---
ServiceModelReg [14:18:09:203]: Starting tool
'C:\windows\system32\wbem\mofcomp.exe' with parameters
'"C:\windows\Microsoft.NET\Framework\v3.0\Windows Communication
Foundation\ServiceModel.mof"'.
ServiceModelReg [14:18:09:328]: Microsoft (R) 32-bit MOF Compiler Version
1.50.1085.0001
ServiceModelReg [14:18:09:329]: Copyright (c) Microsoft Corp. 1997-1999. All
rights reserved.
ServiceModelReg [14:18:09:423]:
ServiceModelReg [14:18:09:425]: Parsing MOF file:
C:\windows\Microsoft.NET\Framework\v3.0\Windows Communication
Foundation\ServiceModel.mof
ServiceModelReg [14:18:09:446]: MOF file has been successfully parsed
ServiceModelReg [14:18:09:447]: Storing data in the repository...
ServiceModelReg [14:18:10:115]: An error occurred while creating object 3
defined on lines 20 - 24:
ServiceModelReg [14:18:10:116]: 0X80041002 Class, instance, or property
'HostingModel' was not found.
ServiceModelReg [14:18:10:122]: Compiler returned error 0x80041001
ServiceModelReg [14:18:10:122]:
ServiceModelReg [14:18:10:122]:
ServiceModelReg [14:18:10:124]: Tool 'C:\windows\system32\wbem\mofcomp.exe'
with parameters '"C:\windows\Microsoft.NET\Framework\v3.0\Windows Communication
Foundation\ServiceModel.mof"' exited with code '3'.
ServiceModelReg [14:18:10:166]: Warning: Failure executing
"C:\windows\system32\wbem\mofcomp.exe" with parameters
""C:\windows\Microsoft.NET\Framework\v3.0\Windows Communication
Foundation\ServiceModel.mof"": System.ApplicationException: Unexpected result 3
executing C:\windows\system32\wbem\mofcomp.exe with
"C:\windows\Microsoft.NET\Framework\v3.0\Windows Communication
Foundation\ServiceModel.mof"
at System.ServiceModel.Install.InstallHelper.ExecuteWait(String program,
String parameters, Int32[] allowedExitCodes)
at System.ServiceModel.Install.WmiInstallComponent.OnInstall(OutputLevel
outputLevel)
ServiceModelReg [14:18:10:231]: Error: WMI classes are not installed.
ServiceModelReg [14:18:10:233]: Repairing: Windows CardSpace (idsvc)
ServiceModelReg [14:18:10:251]: System.AccessViolationException: Attempted to
read or write protected memory. This is often an indication that other memory
is corrupt.
at
System.ServiceModel.Install.NativeMethods.ChangeFailureActions(ServiceHandle
hService, Int32 dwInfoLevel, SERVICE_FAILURE_ACTIONS& lpInfo)
at System.ServiceModel.Install.ServiceHandle.SetFailureActions(TimeSpan
resetPeriod, TimeSpan[] restartPeriods)
at System.ServiceModel.Install.ServiceInstallComponent.OnInstall(OutputLevel
outputLevel)
at
System.ServiceModel.Install.InfoCardServiceInstallComponent.OnInstall(OutputLevel
outputLevel)
at System.ServiceModel.Install.ServiceInstallComponent.Reinstall(OutputLevel
outputLevel)
at Microsoft.Tools.ServiceModel.ServiceModelReg.PerformAction(ActionItem
actionItem, Nullable`1 confirmUninstall)
at Microsoft.Tools.ServiceModel.ServiceModelReg.Run(String[] args)
at Microsoft.Tools.ServiceModel.ServiceModelReg.TryRun(String[] args)
=== Verbose logging stopped: 1/11/2009 14:18:10 ===
--- snip ---
Ok, lets leave the WMI failures aside (despite having native WMI core
installed) and see how far it goes.
That infocard service (re)install looks bugged:
--- snip ---
0035:trace:service:OpenSCManagerW ((null),(null),0x00000001)
0035:trace:service:sc_handle_alloc sc_handle type=0 -> 0x18ef38
0013:trace:service:svcctl_OpenSCManagerW ((null), (null), 1)
0035:trace:service:OpenSCManagerW returning 0x18ef38 (access : 0x00000001)
0035:CALL MSVCR80.memcpy() ret=79e808d5
0035:RET MSVCR80.memcpy() retval=0017b820 ret=79e808d5
0035:trace:service:GetServiceKeyNameW 0x18ef38 L"" 0x88e170 0x33f1f0
0014:trace:service:svcctl_GetServiceKeyNameW (L"idsvc", 256)
0035:CALL MSVCR80.memcpy() ret=79e808d5
0035:RET MSVCR80.memcpy() retval=00a4333c ret=79e808d5
0035:CALL MSVCR80.memcpy() ret=79e808d5
0035:RET MSVCR80.memcpy() retval=0017b820 ret=79e808d5
0035:trace:service:GetServiceDisplayNameW 0x18ef38 L"idsvc" 0x17b820 0x33f1f0
0013:trace:service:svcctl_GetServiceDisplayNameW (L"idsvc", 1)
0035:CALL MSVCR80.memcpy() ret=79e808d5
0035:RET MSVCR80.memcpy() retval=00a4333c ret=79e808d5
0035:CALL MSVCR80.memset(0033f0c4,00000000,0000002c,0033f0bc) ret=79eef4cb
0035:RET MSVCR80.memset() retval=0033f0c4 ret=79eef4cb
0035:CALL MSVCR80.memcpy() ret=79e770f8
0035:RET MSVCR80.memcpy() retval=0033f02c ret=79e770f8
0035:CALL MSVCR80.memset(0033ea2c,00000000,0000001c,0033ea70) ret=79e7d873
0035:RET MSVCR80.memset() retval=0033ea2c ret=79e7d873
0035:CALL MSVCR80.memcpy() ret=79e808d5
0035:RET MSVCR80.memcpy() retval=0017b820 ret=79e808d5
0035:CALL MSVCR80.memcpy() ret=79e808d5
0035:RET MSVCR80.memcpy() retval=00a4363c ret=79e808d5
0035:CALL MSVCR80.memcpy() ret=79e770f8
0035:RET MSVCR80.memcpy() retval=0033f10c ret=79e770f8
0035:CALL MSVCR80.memcmp(008647a8,032e66b9,00000012) ret=79efee2f
0035:RET MSVCR80.memcmp() retval=00000000 ret=79efee2f
0035:trace:seh:raise_exception code=e0434f4d flags=1 addr=0x7b844f54
ip=0x7b844fd7 tid=0035
0035:trace:seh:raise_exception info[0]=80131509
0035:trace:seh:raise_exception eax=7b82cc91 ebx=7b8c3940 ecx=00000000
edx=0033f0f0 esi=0033f0f0 edi=e0434f4d
0035:trace:seh:raise_exception ebp=0033f0b8 esp=0033f054 cs=0023 ds=002b
es=002b fs=0063 gs=006b flags=00000246
0035:trace:seh:call_stack_handlers calling handler at 0x79f9a3c8 code=e0434f4d
flags=1
0035:CALL
MSVCR80._except_handler4_common(7a381240,79e717fb,0033f064,0033f108,0033ecf0,0033eb90)
ret=79f9a3e7
0035:RET MSVCR80._except_handler4_common() retval=00000001 ret=79f9a3e7
0035:trace:seh:call_stack_handlers handler at 0x79f9a3c8 returned 1
0035:trace:seh:call_stack_handlers calling handler at 0x7a3197d4 code=e0434f4d
flags=1
--- snip ---
If we dump the corresponding SCM entry:
--- snip ---
000d:trace:service:scmdatabase_load_services Loading service L"idsvc"
000d:trace:service:load_service_config Image path =
L"\"C:\\windows\\Microsoft.NET\\Framework\\v3.0\\Windows Communication
Foundation\\infocard.exe\""
000d:trace:service:load_service_config Group = (null)
000d:trace:service:load_service_config Service account name = L"LocalSystem"
000d:trace:service:load_service_config Display name = L"Windows
CardSpace"
000d:trace:service:load_service_config Service dependencies : (none)
000d:trace:service:load_service_config Group dependencies : (none)
--- snip ---
That GetServiceKeyNameW() API failure seems to be ok because the app passes the
key name itself "idsvc" and not the service display name.
The following GetServiceDisplayNameW() also fails, leading to app
error/exception.
If you look closer, you see svcctl_GetServiceDisplayNameW (L"idsvc", 1) ->
buffer length "1" passed.
This is clearly not what the app intended.
The app reuses the length parameter from GetServiceKeyNameW(), passing it again
into GetServiceDisplayNameW() but Wine changed it to "1" which seems incorrect.
--- snip programs/services/rpc.c ---
DWORD svcctl_GetServiceKeyNameW(
SC_RPC_HANDLE hSCManager,
LPCWSTR lpServiceDisplayName,
WCHAR *lpBuffer,
DWORD cchBufSize,
DWORD *cchLength)
{
...
entry = scmdatabase_find_service_by_displayname(manager->db,
lpServiceDisplayName);
if (entry != NULL)
{
...
else
{
*cchLength = 1;
err = ERROR_SERVICE_DOES_NOT_EXIST;
}
scmdatabase_unlock(manager->db);
if (err != ERROR_SUCCESS && cchBufSize > 0)
lpBuffer[0] = 0;
return err;
}
--- snip programs/services/rpc.c --
This doesn't look right, a conformance test case should reveal the correct
behaviour.
I already verified this with a patch.
Regards
--
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.
http://bugs.winehq.org/show_bug.cgi?id=16893
Summary: .NET 3.0: Windows Workflow Foundation post-install:
loadperf needs LoadPerfCounterTextStringsA/W stubs
Product: Wine
Version: 1.1.12
Platform: Other
URL: http://www.microsoft.com/downloads/details.aspx?FamilyID
=10cc340b-f857-4a14-83f5-25634c3bf043
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Hello,
after getting past bug 16891 the WF post install fails while running
performance counter registration.
Thanks to recent fixture of bug 12099 we have loadperf dll already in place...
--- snip ---
...
wine: Call from 0x7b844f54 to unimplemented function
loadperf.dll.LoadPerfCounterTextStringsW, aborting
fixme:advapi:CheckTokenMembership (0x188 0x1baf48 0x33e2c8) stub!
fixme:imm:ImmDisableIME (-1): stub
fixme:thread:NtQueryInformationThread Cannot get kerneltime or usertime of
other threads
fixme:thread:NtQueryInformationThread info class 9 not supported yet
fixme:thread:NtQueryInformationThread info class 9 not supported yet
fixme:thread:NtQueryInformationThread info class 9 not supported yet
fixme:advapi:RegisterEventSourceW ((null),L".NET Runtime 2.0 Error Reporting"):
stub
fixme:advapi:ReportEventW
(0xcafe4242,0x0001,0x0000,0x000003e8,(nil),0x0008,0x0000011a,0x3009a1b4,0x7ed505c0):
stub
err:eventlog:ReportEventW L"performancecounterinstaller.exe"
err:eventlog:ReportEventW L"3.0.4203.2"
err:eventlog:ReportEventW L"44c6ca00"
err:eventlog:ReportEventW L"kernel32.dll"
err:eventlog:ReportEventW L"5.1.2600.2180"
err:eventlog:ReportEventW L"00000000"
err:eventlog:ReportEventW L"0"
err:eventlog:ReportEventW L"00024f54"
fixme:advapi:DeregisterEventSource (0xcafe4242) stub
fixme:thread:NtQueryInformationThread info class 9 not supported yet
fixme:thread:NtQueryInformationThread info class 9 not supported yet
fixme:thread:NtQueryInformationThread info class 9 not supported yet
Unhandled Exception: System.Runtime.InteropServices.SEHException: External
component has thrown an exception.
at System.Workflow.NativeMethods.LoadPerfCounterTextStrings(String
commandLine, Boolean quietMode)
at System.Workflow.PerformanceCounterInstaller.Install()
at System.Workflow.PerformanceCounterInstaller.Main(String[] args)
wine: Unimplemented function loadperf.dll.LoadPerfCounterTextStringsW called at
address 0x7b844f54 (thread 000c), starting debugger...
Unhandled exception: unimplemented function
loadperf.dll.LoadPerfCounterTextStringsW called in 32-bit code (0x7b844fd7).
--- snip ---
To reproduce this problem manually, execute the following:
--- snip ---
$ pwd
/home/focht/.wine/drive_c/windows/Microsoft.NET/Framework/v3.0/Windows Workflow
Foundation
$ wine ./PerformanceCounterInstaller.exe uninstall
...
$ wine ./PerformanceCounterInstaller.exe install
--- snip ---
The uninstall step is needed otherwise the registry keys are not explicitly
removed and "install" will short-circuit, not doing anything useful.
With stubs to loadperf added in similar manner like
UnloadPerfCounterTextStringsA/W, we can get past this:
--- snip ---
$ WINEDEBUG=+tid,+seh,+loadperf wine ./PerformanceCounterInstaller.exe install
...
0009:trace:loadperf:DllMain (0x0x60cb0000, 1, (nil))
0009:fixme:loadperf:LoadPerfCounterTextStringsW (L"
\"C:\\windows\\Microsoft.NET\\Framework\\v3.0\\Windows Workflow
Foundation\\PerfCounters.ini\"", 1): stub
...
--- snip ---
Regards
--
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.
http://bugs.winehq.org/show_bug.cgi?id=25153
Summary: Windows Live Essentials beta (webc variant) won't
install without native .NET
Product: Wine
Version: 1.3.7
Platform: x86-64
URL: http://wl.dlservice.microsoft.com/download/B/2/9/B2954
09B-AAAB-4415-B32D-A36EFD6DC36E/en/wlsetup-webc.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: RandomAccountName(a)mail.com
Created an attachment (id=31904)
--> (http://bugs.winehq.org/attachment.cgi?id=31904)
Terminal output
This particular installer isn't satisfied with "winetricks mono26 win7" even if
the registry key from bug 24875 is added. It just says it needs .NET 3 and
refuses to proceed any further without it.
--
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.
http://bugs.winehq.org/show_bug.cgi?id=29589
Bug #: 29589
Summary: Interface corruption in the Windows Live Essentials
2011 installer
Product: Wine
Version: 1.3.36
Platform: x86-64
URL: http://g.live.com/1rewlive4-web/en/wlsetup-web.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: winex11.drv
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: RandomAccountName(a)mail.com
CC: julliard(a)winehq.org
Classification: Unclassified
Regression SHA1: c123c2f87af55f6b432e7be8560d65baee603520
The Windows Live Essentials 2011 installer shows a black rectangle near the
bottom of the screen, in place of the text "By clicking an installation option
you agree to the Microsoft service agreement and privacy" (cut off message?).
Regression testing indicated:
c123c2f87af55f6b432e7be8560d65baee603520 is the first bad commit
commit c123c2f87af55f6b432e7be8560d65baee603520
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Tue Jan 10 11:56:06 2012 +0100
winex11: Fix support for PALETTEINDEX mapping and get rid of DIBINDEX
support.
:040000 040000 c98b298f9afd6e61583dd2a1a0defbd08843b2fb
b25a5be902731076c886228453a502bb2db5b659 M dlls
Reverting fixed the problem. Standard terminal output is the same with or
without the patch.
The reported Windows version needs to be Windows 7 to run this installer.
--
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.
http://bugs.winehq.org/show_bug.cgi?id=25134
Summary: Windows Live Essentials 2011 refuses to install
without native .NET
Product: Wine
Version: 1.3.6
Platform: x86-64
URL: http://g.live.com/1rewlive4-web/en/wlsetup-web.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: RandomAccountName(a)mail.com
Created an attachment (id=31883)
--> (http://bugs.winehq.org/attachment.cgi?id=31883)
Terminal output
The installer refuses to run after "winetricks mono26 win7" saying "Windows
Live Essentials requires Microsoft .NET Framework 3." Note that it fails to run
for other reasons in other Windows versions (either due to the OS being
insufficient, or no platform update installed).
--
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.
https://bugs.winehq.org/show_bug.cgi?id=50075
Bug ID: 50075
Summary: GetFileVersionInfoSizeW can read from unallocated
memory
Product: Wine
Version: 5.20
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: version
Assignee: wine-bugs(a)winehq.org
Reporter: ahiler(a)codeweavers.com
Distribution: ---
Original bug: https://github.com/ValveSoftware/Proton/issues/4308
Crown Trick (game) comes with Assembly-CSharp.dll (generated by Unity engine)
that is most likely just encrypted[0] or straight up corrupted. The game calls
GetFileVersionInfoSizeW() on that .dll during which it crashes.
Wine's GetFileVersionInfoSizeW() checks the PE header for RVA and size of
Resource Table.
Then HeapAllocs(size) happens and data is read into it the allocated memory.
After that, when looking for the version entry, find_entry_by_id() naively
trusts NumberOfNamedEntries and NumberOfIdEntries residing in the resource
table, which in the encrypted/corrupted form add up to 20k+ entries. This
results in an attempt to dereference something way past the size of Resource
Table (0x400) and causes a page fault.
I have a tentative patch (will send it soon, after a bit more testing) that
makes sure we are not trying to read entries past the allocated area. With this
the game starts and works just fine.
[0]: https://github.com/yangyuan/hearthrock/issues/13
--
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=46883
Bug ID: 46883
Summary: CompressonatorGUI does not install
Product: Wine
Version: 4.4
Hardware: x86
URL: https://github.com/GPUOpen-Tools/Compressonator/releas
es/tag/v3.1.4064
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: the.ideals(a)gmail.com
Distribution: ---
Created attachment 63956
--> https://bugs.winehq.org/attachment.cgi?id=63956
Error screenshot
CompressonatorGUI does not install due to following error:
This application cannot be installed on systems earlier than Windows 2000 SP4.
winecfg # Windows 10
sha1sum CompressonatorGUI_x64_3.1.4064.exe
c7958e4a7caa2e0011e2abd906fc71cec6603818 CompressonatorGUI_x64_3.1.4064.exe
du -sh CompressonatorGUI_x64_3.1.4064.exe
80M CompressonatorGUI_x64_3.1.4064.exe
--
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=21634
Summary: ACT!2010 installer prereq check fails
Product: Wine
Version: 1.1.38
Platform: x86
URL: http://experience.act.com/
OS/Version: Linux
Status: NEW
Keywords: download, Installer
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
I tested the downloadable trial of ACT!2010. The installer has sha1sum
3ce9033e20c79707d3798195c74cb8e8bd3b5731 ACT! by Sage.exe
It probably needs winetricks dotnet20 first.
It fails with message
Prereq.Exceptions.KeyDoesn’tExistException: Exception of Type
‘Prereq.Exceptions.KeyDoestntExistException’ was thrown. at
Prereq.AccessINI.GetValue(StringKey, StringValueName) at
Prereq.Program.Main(String[] args).
http://community.act.com/sage/board/message?board.id=ACT&thread.id=3715
says to check the log file
C:\WINDOWS\Temp\ACTInstLog\ActWindows.log
That file contains
C:\users\Public\Application Data\Microsoft\Protect does not exist.
which seems related to the Protected Storage service
and lsass.exe, which Wine doesn't have yet.
The app then spews several crash report dialogs.
(The installer continues on anyway, and fails when installing
SQL Express, but that's a different problem.)
--
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.
http://bugs.winehq.org/show_bug.cgi?id=20651
Summary: Crash when installing Impulse
Product: Wine
Version: 1.1.32
Platform: PC-x86-64
URL: http://www.impulsedriven.com/downloads/impulse_setup.e
xe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: drakkk(a)centrum.cz
Created an attachment (id=24653)
--> (http://bugs.winehq.org/attachment.cgi?id=24653)
terminal output
When installing Impulse with current git (wine-1.1.32-499-gffb2cfc), there is a
crash in file setsdaff.exe, but installer continues and reports that it
finished successfully. Another thing I noticed: after installation some
processes remains in memory, they are mscorsvw.exe (disappear aprox. 5-10
later) and rpcss.exe (remains there until killed).
Impulse needs dotnet20, I installed it with winetricks. After installation
Impulse starts, but cannot connect to server, bug 15486.
I did some search on the Stardock forums and it looks like even some windows
users had similar problem, in their case this was caused by broken .NET
install, .NET re-installation or update solved this.
--
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.
http://bugs.winehq.org/show_bug.cgi?id=17902
Summary: ole32.CoGetClassObject: threads without apartment should
use existing MTA
Product: Wine
Version: 1.1.18
Platform: Other
URL: http://www.microsoft.com/downloads/details.aspx?FamilyID
=fe6f2099-b7b4-4f47-a244-c96d69c35dec
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ole32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Hello,
there are apps which use free threaded COM (inproc) servers and call
CoGetClassObject() from (new) threads that do not explicitly initialize COM.
This is valid behaviour when one of the existing threads already created the
MTA by calling CoInitializeEx(NULL, COINIT_MULTITHREADED).
See: http://support.microsoft.com/kb/150777
--- quote ---
Current implementations of COM allow a thread that does not explicitly
initialize COM to be a part of the MTA. A thread that does not initialize COM
is part of the MTA only if it starts using COM after at least one other thread
in the process has previously called CoInitializeEx(NULL,
COINIT_MULTITHREADED). (It is even possible that COM itself may have
initialized the MTA when no client thread has explicitly done so; for example,
a thread associated with an STA calls CoGetClassObject/CoCreateInstance[Ex] on
a CLSID that is marked "ThreadingModel=Free" and COM implicitly creates an MTA
into which the class object is loaded.) See the information on threading model
interoperability below.
However, this is a configuration that might cause problems, such as access
violations, under certain circumstances. Therefore, it is strongly recommended
that each thread that needs to do COM work initialize COM by calling
CoInitializeEx and then, on completion of COM work, call CoUninitialize. The
cost of "unnecessarily" initializing an MTA is minimal.
--- quote ---
An example app suffering from this is the managed console debugger from .NET
2.0 SDK "cordbg.exe":
When trying to debug a simple console C# app created with symbols (.pdb
format):
--- snip ---
wine "C:\\windows\\Microsoft.NET\\Framework\\v2.0.50727\\csc.exe" /debug+
foo.cs
--- snip ---
Start debugger:
--- snip ---
wine "C:\\Program Files\\Microsoft.NET\\SDK\\v2.0\\Bin\\cordbg.exe foo.exe"
--- snip ---
The debugger will immediately begin to execute the app - not halting in Main()
method (source).
This is because symbol information can't be loaded using COR symbol binder
which lives in a free threaded COM inproc server.
0A29FF9E-7F9C-4437-8B11-F424491E3931 -> CLSID_CorSymBinder
Threads 0x38 (main) and 0x36 call "CoInitializeEx" with COINIT_MULTITHREADED,
creating the MTA.
Thread 0x3b is created later as pooled thread - part of MTA - to serve CLR
debugger requests (work items).
That thread never makes any init calls to COM (verified).
--- snip ---
...
0038:Call KERNEL32.GetProcAddress(60970000,7a37e2ae "CoInitializeEx")
ret=79e9d311
0038:Ret KERNEL32.GetProcAddress() retval=609750c8 ret=79e9d311
0038:Call ole32.CoInitializeEx(00000000,00000000) ret=79ebfba8
0038:Call ntdll.RtlAllocateHeap(00110000,00000008,000000fc) ret=60986499
0038:Ret ntdll.RtlAllocateHeap() retval=0014f9c0 ret=60986499
0038:Call ntdll.RtlAllocateHeap(00110000,00000000,00000028) ret=609a750c
0038:Ret ntdll.RtlAllocateHeap() retval=001500e8 ret=609a750c
0038:Call KERNEL32.InitializeCriticalSection(001500f8) ret=609a7543
0038:Ret KERNEL32.InitializeCriticalSection() retval=00000001 ret=609a7543
0038:Call ntdll.RtlAllocateHeap(00110000,00000008,0000007c) ret=60983f54
0038:Ret ntdll.RtlAllocateHeap() retval=00151df0 ret=60983f54
0038:Call KERNEL32.InitializeCriticalSection(00151e10) ret=60983fb4
0038:Ret KERNEL32.InitializeCriticalSection() retval=00000001 ret=60983fb4
0038:Ret ole32.CoInitializeEx() retval=00000000 ret=79ebfba8
...
0036:Call ole32.CoInitializeEx(00000000,00000000) ret=79ebfba8
0036:Call ntdll.RtlAllocateHeap(00110000,00000008,000000fc) ret=60986499
0036:Ret ntdll.RtlAllocateHeap() retval=00151e78 ret=60986499
0036:Ret ole32.CoInitializeEx() retval=00000000 ret=79ebfba8
...
003b:Call advapi32.RegOpenKeyExW(80000000,0310d170
L"CLSID\\{0A29FF9E-7F9C-4437-8B11-F424491E3931}\\InprocServer32",00000000,00020019,0310d0dc)
ret=79ea5b8a
003b:Ret advapi32.RegOpenKeyExW() retval=00000000 ret=79ea5b8a
003b:Call
...
003b:Call advapi32.RegOpenKeyExW(00000238,0310d270
L"2.0.50727",00000000,00020019,0310d0ec) ret=79ea5b8a
003b:Ret advapi32.RegOpenKeyExW() retval=00000000 ret=79ea5b8a
003b:Call advapi32.RegQueryValueExW(0000023c,7a136a40
L"ImplementedInThisVersion",00000000,0310d0e4,00000000,0310d0e8) ret=79ea5bd0
003b:Ret advapi32.RegQueryValueExW() retval=00000000 ret=79ea5bd0
003b:Call advapi32.RegCloseKey(0000023c) ret=7a1369f2
003b:Ret advapi32.RegCloseKey() retval=00000000 ret=7a1369f2
...
003b:Call advapi32.RegOpenKeyExW(80000000,0310d318
L"CLSID\\{0A29FF9E-7F9C-4437-8B11-F424491E3931}\\InprocServer32\\2.0.50727",00000000,00020019,0310d314)
ret=79ea5b8a
003b:Ret advapi32.RegOpenKeyExW() retval=00000000 ret=79ea5b8a
003b:Call advapi32.RegQueryValueExW(00000238,79f873d0
L"Class",00000000,0310d2f8,00000000,0310d310) ret=79ea5bd0
003b:Ret advapi32.RegQueryValueExW() retval=00000002 ret=79ea5bd0
003b:Call advapi32.RegCloseKey(00000238) ret=79f88946
003b:Ret advapi32.RegCloseKey() retval=00000000 ret=79f88946
...
003b:Call KERNEL32.GetProcAddress(60970000,7a37e222 "CoGetClassObject")
ret=79e9d311
003b:Ret KERNEL32.GetProcAddress() retval=60974f78 ret=79e9d311
003b:Call ole32.CoGetClassObject(00175d3c,00000015,00000000,79f83a7c,0310d5e8)
ret=7a041335
003b:err:ole:CoGetClassObject apartment not initialised
003b:Ret ole32.CoGetClassObject() retval=800401f0 ret=7a041335
003b:Call KERNEL32.GetLastError() ret=79e74ab4
003b:Ret KERNEL32.GetLastError() retval=0000007f ret=79e74ab4
000007f ret=78132d14
...
003b:Call
KERNEL32.FormatMessageW(000031ff,00000000,800401f0,00000400,0310d4f4,00000000,0310d4a0)
ret=7a127c38
003b:Ret KERNEL32.FormatMessageW() retval=00000000 ret=7a127c38
--- quote ---
The failure is due to Wine's CoGetClassObject() rejecting requests when no
apartment in current thread (oletls) exists.
--- snip dlls/ole32/compobj.c ---
HRESULT WINAPI CoGetClassObject(
REFCLSID rclsid, DWORD dwClsContext, COSERVERINFO *pServerInfo,
REFIID iid, LPVOID *ppv)
{
LPUNKNOWN regClassObject;
HRESULT hres = E_UNEXPECTED;
APARTMENT *apt;
TRACE("\n\tCLSID:\t%s,\n\tIID:\t%s\n", debugstr_guid(rclsid),
debugstr_guid(iid));
if (!ppv)
return E_INVALIDARG;
*ppv = NULL;
apt = COM_CurrentApt();
if (!apt)
{
ERR("apartment not initialised\n");
return CO_E_NOTINITIALIZED;
}
...
--- snip dlls/ole32/compobj.c ---
Rather than failing CoGetClassObject() without apartment, it should look for an
existing MTA and let the current thread use it.
With the MTA being used, the inproc server is created and the app works as
intended, e.g. symbols get loaded, source can be stepped ...
Regards
--
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.
http://bugs.winehq.org/show_bug.cgi?id=24875
Summary: SongSmith doesn't install
Product: Wine
Version: 1.3.5
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: VincentBeers(a)gmail.com
Created an attachment (id=31485)
--> (http://bugs.winehq.org/attachment.cgi?id=31485)
Very short Wine log
I wanted to try out this Microsoft application for laughs, but it turns out it
won't install. Execution ends before even a single installer window is shown.
A very short log is attached to this post, but it basically ends with this:
err:msi:ITERATE_Actions Execution halted, action L"VSDCA_VsdLaunchConditions"
returned 1603
Free demo download is available here:
http://research.microsoft.com/en-us/um/redmond/projects/songsmith/download.…
Running 64-bit Ubuntu 10.10 with 32-bit Wine 1.3.5. If any more info is
required, I'll gladly help.
--
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.
http://bugs.winehq.org/show_bug.cgi?id=31087
Bug #: 31087
Summary: WMI class property retrieval: some CIM data type to
OLE variant (VT) mappings are incorrect (CIM_UINT32,
CIM_UINT16 ...)
Product: Wine
Version: 1.5.7
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: wmi&wbemprox
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Classification: Unclassified
Hello,
another problem from app in bug 24875 which deserves an extra bug.
The app still fails with wine-1.5.7-252-g1f01355
The problems seems to be a WMI -> .NET type conversion problem of "ProcessId"
property value.
"InvalidCastException" is thrown
--- snip ---
006ee1e8 7b83953f [HelperMethodFrame: 006ee1e8]
006ee258 040347f6
System.Management.PropertyData.MapWmiValueToValue(System.Object,
System.Management.CimType, Boolean)
006ee2d0 04034204 System.Management.PropertyData.get_Value()
006ee2dc 04033aa6
System.Management.ManagementBaseObject.GetPropertyValue(System.String)
006ee2e8 04033a35
System.Management.ManagementBaseObject.get_Item(System.String)
006ee2ec 04034f70
SSCustomInstaller.SSInstaller.GetSongsmithSetupPathAndCopyMSI()
006ee31c 04034c0f
SSCustomInstaller.SSInstaller.Install(System.Collections.IDictionary)
006ee350 649e3fc6
System.Configuration.Install.Installer.Install(System.Collections.IDictionary)
006ee398 649e5d38
System.Configuration.Install.AssemblyInstaller.Install(System.Collections.IDictionary)
006ee3d0 649e7f6e
System.Configuration.Install.ManagedInstallerClass.InstallHelper(System.String[])
006ee494 649e7734
System.Configuration.Install.ManagedInstallerClass.System.Configuration.Install.IManagedInstaller.ManagedInstall(System.String,
Int32)
--- snip ---
MapWmiValueToValue converts WMI values (wrapped in object) to native .NET value
(wrapped in object) with type conversion if necessary.
MSDN claims "ProcessId" is CIM_UINT32/uint32.
The following link shows example "ProcessId" property dump with 'wbemdump'
tool:
http://nukz.net/reference/wmi/hh/wmisdk/wbemdump_8wft.htm
--- snip ---
wbemdump /Q /wy root\cimv2 WQL "SELECT ProcessId
FROM Win32_process WHERE Name = 'Winmgmt.exe'"
This command produces the following output:
(WQL) SELECT ProcessId FROM Win32_Process WHERE Name = 'Winmgmt.exe'
ProcessId (CIM_UINT32/uint32) = 644 (0x284)
--- snip ---
For CIM_UINT32 type there seems to be 'unboxing' taking place:
net_value = (uint)((int)(wmi_value))
I extracted a small C# snippet from the app .NET assembly which can be used for
easy reproduction of the problem.
Save the following snippet to a text file (ex: "test.cs"):
--- snip test.cs ---
using System;
using System.Collections;
using System.Management;
class TestProgram
{
[STAThread]
static void Main(string[] args)
{
using (ManagementObjectSearcher searcher = new
ManagementObjectSearcher("Select * from Win32_Process"))
{
new ManagementScope(@"root\CIMV2");
foreach (ManagementObject obj2 in searcher.Get())
{
string str = obj2["ProcessId"].ToString();
}
}
}
}
--- snip test.cs ---
Compile it with C# compiler which is present if you installed .NET 2.0
Framework (winetricks).
--- snip ---
$ wine "C:\\windows\\Microsoft.NET\\Framework\\v2.0.50727\\csc.exe" /debug+
test.cs
--- snip ---
Run and get the same backtrace as with installer.
The problem is CIMTYPE -> OLE Variant type conversion.
Source:
http://source.winehq.org/git/wine.git/blob/d2661b802556e073760af5d70869fb55…
--- snip ---
665 HRESULT get_propval( const struct view *view, UINT index, const WCHAR
*name, VARIANT *ret,
666 CIMTYPE *type, LONG *flavor )
667 {
...
681 switch (view->table->columns[column].type & COL_TYPE_MASK)
682 {
683 case CIM_STRING:
684 case CIM_DATETIME:
685 V_VT( ret ) = VT_BSTR;
686 V_BSTR( ret ) = SysAllocString( (const WCHAR *)(INT_PTR)val );
687 break;
688 case CIM_SINT16:
689 V_VT( ret ) = VT_I2;
690 V_I2( ret ) = val;
691 break;
692 case CIM_UINT16:
693 V_VT( ret ) = VT_UI2;
694 V_UI2( ret ) = val;
695 break;
696 case CIM_SINT32:
697 V_VT( ret ) = VT_I4;
698 V_I4( ret ) = val;
699 break;
700 case CIM_UINT32:
701 V_VT( ret ) = VT_UI4;
702 V_UI4( ret ) = val;
703 break;
704 case CIM_SINT64:
705 V_VT( ret ) = VT_BSTR;
706 V_BSTR( ret ) = get_value_bstr( view->table, row, column );
707 break;
708 case CIM_UINT64:
709 V_VT( ret ) = VT_BSTR;
710 V_BSTR( ret ) = get_value_bstr( view->table, row, column );
711 break;
...
--- snip ---
The unbox failure let me guess that CIM_UINT32 doesn't map to VT_UI4 but to
VT_I4.
Google "CIM_UINT32 VT_I4" and hit the first link -> book "Developing Wmi
Solutions: A Guide to Windows Management ..."
Bingo! There is a table which shows the type mapping (BTW good WMI resource to
read...)
uint32 - VT_I4 - CIM_UINT32
While you're at it you might want to fix other type conversions (CIM_UINT16
...) according to the table.
Regards
--
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.
http://bugs.winehq.org/show_bug.cgi?id=31088
Bug #: 31088
Summary: SongSmith 1.0.2 fails to install due to unimplemented
IWshShortcut::WindowStyle property (set/get)
Product: Wine
Version: 1.5.7
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Classification: Unclassified
Hello,
when bug 31087 is fixed the app installer runs into unimplemented
IWshShortcut::WindowStyle property (set/get)
Managed backtrace:
--- snip ---
006ee2a8 7b83953f [ComPlusMethodFrameStandaloneCleanup: 006ee2a8]
Interop.IWshRuntimeLibrary.IWshShortcut.set_WindowStyle(Int32)
006ee2b8 04035355 SSCustomInstaller.SSInstaller.CreateDesktopShortcut()
006ee2ec 0403505c
SSCustomInstaller.SSInstaller.GetSongsmithSetupPathAndCopyMSI()
006ee31c 04034c0f
SSCustomInstaller.SSInstaller.Install(System.Collections.IDictionary)
006ee350 649e3fc6
System.Configuration.Install.Installer.Install(System.Collections.IDictionary)
006ee398 649e5d38
System.Configuration.Install.AssemblyInstaller.Install(System.Collections.IDictionary)
006ee3d0 649e7f6e
System.Configuration.Install.ManagedInstallerClass.InstallHelper(System.String[])
006ee494 649e7734
System.Configuration.Install.ManagedInstallerClass.System.Configuration.Install.IManagedInstaller.ManagedInstall(System.String,
Int32)
--- snip ---
Regards
--
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.
https://bugs.winehq.org/show_bug.cgi?id=48430
Bug ID: 48430
Summary: Windows 2008 VM has broken Media Foundation libs
Product: Wine-Testbot
Version: unspecified
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: unknown
Assignee: wine-bugs(a)winehq.org
Reporter: jacek(a)codeweavers.com
Distribution: ---
I noticed in user32:winstation tests that there is weird window
"mfreadwrite_test.exe - Unable To Locate Component" messing with foreground
window tests:
http://test.winehq.org/data/37dec9f144501fb93e173214578b759122ac999a/2008_n…
I investigated a bit deeper and it seems that the installation contains
mfreadwrite.dll, but not mfplat.dll. When you attempt to load mfreadwrite.dll,
Windows shows an error dialog about incomplete installation like:
https://testbot.winehq.org/JobDetails.pl?Key=62943&s104=1#k104
It seems that there is a separated installer for MF for win2k8:
https://www.microsoft.com/en-US/download/details.aspx?id=20424
I can see a few solutions:
1. Try to install MF into VM and hope it helps (and ignore failures on
installations missing MF).
2. Load mfplat.dll and mfreadwrite.dll dynamically and skip tests if mfplat.dll
is missing (this would make code uglier for a questionable benefit).
3. Get rid of win2k8 VMs and consider them unsupported. This may seem radical
for the above problem, but I don't see any value in win2k8 test results in
general.
--
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=48062
Bug ID: 48062
Summary: Detect and report WineTest's "load errors"
Product: Wine-Testbot
Version: unspecified
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: unknown
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
Distribution: ---
Sometimes the WineTest report DLL version section contains lines like:
mfplat=load error 1359
shell32=load error 1359
user32=load error 1359
See bug 48061 for more details.
The TestBot should detect such errors as well as the "load error Configured as
native" message and report them.
--
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=39297
Bug ID: 39297
Summary: kernel32.IsValidCodePage and friends don't support
code page 708.
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: kernel32
Assignee: wine-bugs(a)winehq.org
Reporter: htl10(a)users.sourceforge.net
Distribution: ---
Microsoft's FontValidator
(https://www.microsoft.com/typography/FontValidator.mspx)
when processing certain fonts, try to access code page 708,
which is not available under wine.
FYI, mono has support for code page 708 - c.f. mcs/class/I18N/Rare/CP708.cs .
--
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=18531
Summary: FontValidator (.NET based app) needs
OleInPlaceObject_InPlaceDeactivate properly
implemented
Product: Wine
Version: 1.1.21
Platform: Other
URL: http://www.microsoft.com/typography/FontValidator.mspx
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: shdocvw
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Hello,
now that some urlmon MIME support patches are on the way which are essential
for this app ("text/xml" MIME is later needed to show XML content in embedded
browser window) I file an "intermediate" bug that needs to be fixed before we
can verify the new functionality with real apps ;-)
The story is basically about in-place activation and deactivation of embedded
browser control.
The current shdocvw OleInPlaceObject_InPlaceDeactivate stub is mostly harmless
for many embedded browser control hosting apps because they don't rely on the
fact that in-place deactivation doesn't really take place (control will be
destroyed shortly anyway).
This app use case is a bit special hence the current in-place deactivation stub
becomes the culprit.
Steps to reproduce:
1. clean WINEPREFIX
2. winetricks -q dotnet20
3. start app, "Font files" -> "Add..." -> select whatever true/opentype font
from your system
4. "Table tests" -> "Clear All" -> select only "BASE" (shortens test)
5. "Rasterization" -> deselect "Test rasterization of TrueType outlines"
(shortens test)
6. hit "Start validation"
The .NET 2.0 app creates an embedded browser control:
--- snip ---
...
0029:trace:ole:CoCreateInstance (rclsid={8856f961-340a-11d0-a96b-00c04fd705a2},
pUnkOuter=(nil), dwClsContext=00000001,
riid={00000000-0000-0000-c000-000000000046}, ppv=0x32e2a4)
...
0029:fixme:shell:URL_ParseUrl failed to parse L"Interop.SHDocVw"
...
0029:trace:win:WIN_CreateWindowEx L"Shell Embedding" L"Shell Embedding"
ex=00000100 style=46010000 0,0 0x0 parent=0x500b4 menu=(nil) inst=0x61020000
params=0x136d00
...
0029:trace:win:WIN_CreateWindowEx created window 0x100b6
...
0029:trace:shdocvw:create_shell_embedding_hwnd parent=0x500b4 hwnd=0x100b6
...
0029:trace:shdocvw:OleObject_DoVerb (0x136d00)->(-5 (nil) 0x3c80034 -1 0x500b4
0xadd434)
0029:trace:shdocvw:OleObject_DoVerb OLEIVERB_INPLACEACTIVATE
...
0029:trace:win:DestroyWindow (0x500b4)
...
--- snip ---
and a "parking window" to host the control in inactive/hidden state until the
real hosting window is about to be created and displayed to avoid runtime
penalties of destroying and recreating browser control each time.
This blog gives some insight in the world of "parking windows":
http://blogs.msdn.com/sburke/archive/2007/06/20/flashback-windows-forms-par…
--- snip ---
0029:trace:win:WIN_CreateWindowEx L"WindowsFormsParkingWindow"
L"WindowsForms10.Window.8.app.0.378734a" ex=00010000 style=02010000 0,0 0x0
parent=0xfffffffd menu=(nil) inst=0x400000 params=(nil)
...
0029:trace:win:WIN_CreateWindowEx created window 0x100b8
0029:trace:win:show_window hwnd=0x100b6, cmd=0, wasVisible 1
...
0029:fixme:shdocvw:OleInPlaceObject_InPlaceDeactivate (0x136d00)
0029:trace:shdocvw:WebBrowser_AddRef (0x136d00) ref=11
0029:trace:ole:GetErrorInfo (0, 0x32d9b0, 0x19a9c4)
0029:fixme:shdocvw:WebBrowser_QueryInterface
(0x136d00)->({df0b3d60-548f-101b-8e65-08002b2bd119} 0x32d9a8) interface not
supported
0029:trace:shdocvw:WebBrowser_Release (0x136d00) ref=10
0029:trace:seh:raise_exception code=e06d7363 flags=1 addr=0x7b84385b
ip=7b84385b tid=0029
...
0029:trace:win:WIN_SetWindowLong 0x100b6 -4 61031784 W
0029:trace:win:alloc_winproc reusing 0xffff0057 for (nil)/0x61031784
0029:trace:win:WIN_DestroyWindow 0x500b4
--- snip ---
The CLR exceptions resulting from E_NOTIMPL of
OleInPlaceObject_InPlaceDeactivate are handled gracefully.
The window which is the real target for the browser control gets created later:
--- snip ---
0029:trace:win:WIN_CreateWindowEx L"C:\\windows\\temp\\tmp47b0.tmp.report.xml"
L"WindowsForms10.Window.8.app.0.378734a" ex=00050040 style=46cf0000
-2147483648,-2147483648 376x358 parent=0x10088 menu=(nil) inst=0x400000
params=(nil)
...
0029:trace:win:WIN_CreateWindowEx hwnd 0x600b4 cs 0,0 376x358
...
0029:trace:win:show_window hwnd=0x600b4, cmd=5, wasVisible 0
0029:trace:shdocvw:WebBrowser_AddRef (0x136d00) ref=11
0029:trace:shdocvw:OleObject_DoVerb (0x136d00)->(-5 (nil) 0x3c80034 -1 0x600b4
0xaece88)
0029:trace:shdocvw:OleObject_DoVerb OLEIVERB_INPLACEACTIVATE
0029:trace:shdocvw:WebBrowser_Release (0x136d00) ref=10
0029:trace:seh:raise_exception code=e0434f4d flags=1 addr=0x7b84385b
ip=7b84385b tid=0029
0029:trace:seh:raise_exception info[0]=80131509
0029:trace:seh:raise_exception eax=7b82ca1d ebx=7b8c2918 ecx=00000000
edx=0032d958 esi=0032d958 edi=e0434f4d
0029:trace:seh:raise_exception ebp=0032d920 esp=0032d8bc cs=0023 ds=002b
es=002b fs=0063 gs=006b flags=00000246
--- snip ---
The CLR exception leads to following backtrace dialog (and abort):
--- snip ---
************** Exception Text **************
System.InvalidOperationException: Unable to get the window handle for the
'AxWebBrowser' control. Windowless ActiveX controls are not supported.
at System.Windows.Forms.AxHost.EnsureWindowPresent()
at System.Windows.Forms.AxHost.InPlaceActivate()
at System.Windows.Forms.AxHost.TransitionUpTo(Int32 state)
at System.Windows.Forms.AxHost.CreateHandle()
at System.Windows.Forms.Control.CreateControl(Boolean fIgnoreVisible)
at System.Windows.Forms.Control.CreateControl(Boolean fIgnoreVisible)
at System.Windows.Forms.Control.CreateControl()
at System.Windows.Forms.Control.WmShowWindow(Message& m)
at System.Windows.Forms.Control.WndProc(Message& m)
at System.Windows.Forms.ScrollableControl.WndProc(Message& m)
at System.Windows.Forms.ContainerControl.WndProc(Message& m)
at System.Windows.Forms.Form.WmShowWindow(Message& m)
at System.Windows.Forms.Form.WndProc(Message& m)
at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr
wparam, IntPtr lparam)
--- snip ---
The activate_inplace() OLE verb bails out early because Wine thinks the control
is in-place activated (This->inplace) -> real in-place deactivation never took
place.
.NET runtime tries to fetch hosted control's window handle which fails because
no parent switch was done.
Adding simple in-place deactivation (releasing IOleInPlaceSite, resetting
This->inplace) lets this app succeed, having windows properly
switched/re-parented.
Regards
--
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.
http://bugs.winehq.org/show_bug.cgi?id=31609
Bug #: 31609
Summary: TestLauncher says a required DLL is missing, but the
test runs fine without TestLauncher
Product: Testbot
Version: unspecified
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Classification: Unclassified
http://source.winehq.org/git/tools.git/blob/HEAD:/testbot/src/TestLauncher/…
has a function AllImportedDllsPresent() that tries to avoid running
tests that implicitly link against DLLs that aren't present.
Unfortunately, in the case of dlls with manifests, it reports it can't find
dlls that are in fact present.
What it needs is a good dose of the medicine that cured the same problem
in winetest:
http://www.winehq.org/pipermail/wine-cvs/2010-July/068410.html
A quick test shows that this works. I'll send a patch soon.
--
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.
http://bugs.winehq.org/show_bug.cgi?id=32370
Bug #: 32370
Summary: Failed to install SafeNet Sentinal HASP setup exe
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msvcp
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: prafulla.sarode(a)gmail.com
Classification: Unclassified
Created attachment 42713
--> http://bugs.winehq.org/attachment.cgi?id=42713
programm error detail
While installing SafeNet Sentinal HASP setup exe, installation error occured
with the error trace as attached.
--
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.