http://bugs.winehq.org/show_bug.cgi?id=30558
Bug #: 30558
Summary: Multiple app installers fail on missing
Session.FeatureRequestState property
Product: Wine
Version: 1.5.3
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,
extracted from bug 5928 to be tracked separately.
Several InstallShield based installers using active script engine can't find
Session.FeatureRequestState property:
--- snip ---
0033:trace:loaddll:load_builtin_dll Loaded
L"C:\\windows\\system32\\vbscript.dll" at 0xf71b0000: builtin
0033:trace:vbscript:DllMain (0xf71b0000 1 (nil))
0033:trace:vbscript:DllGetClassObject (CLSID_VBScript
{00000001-0000-0000-c000-000000000046} 0x86e87c)
0033:trace:vbscript:ClassFactory_QueryInterface
(0xf71dd8ac)->(IID_IClassFactory 0x86e87c)
0033:trace:vbscript:ClassFactory_AddRef (0xf71dd8ac)
0033:trace:vbscript:VBScriptFactory_CreateInstance ((nil)
{bb1a2ae1-a4f9-11cf-8f20-00805f2cd064} 0x86e934)
0033:trace:vbscript:VBScript_QueryInterface (0x9cd010)->(IID_IActiveScript
0x86e934)
0033:trace:vbscript:VBScript_AddRef (0x9cd010) ref=2
0033:trace:vbscript:VBScript_Release (0x9cd010) ref=1
0033:trace:vbscript:ClassFactory_Release (0xf71dd8ac)
0033:trace:vbscript:VBScript_QueryInterface (0x9cd010)->(IID_IActiveScriptParse
0x86e930)
0033:trace:vbscript:VBScript_AddRef (0x9cd010) ref=2
0033:trace:vbscript:VBScript_SetScriptSite (0x9cd010)->(0x9c5240)
0033:trace:vbscript:VBScriptParse_InitNew (0x9cd010)
0033:trace:vbscript:VBScript_AddNamedItem (0x9cd010)->(L"Session" 2)
0033:trace:vbscript:VBScriptParse_ParseScriptText (0x9cd010)->(L"Dim
installTimeless, installMSDE, upgradeMSDE\nDim netVersion \n\ninstallTimeless =
FeatureRequestState(\"Timeless\")\ninstallMSDE =
FeatureRequestState(\"TimelessMSDE\")\nupgradeMSDE =
FeatureRequestState(\"UpgradeMSDE\")\nnetVersion =
Property(\"MsiNetAssemblySupport\") \n\nProperty(\"TTE_Features"... (null)
(nil) (null) 0 0 0 (nil) (nil))
0033:trace:vbscript:VBScript_SetScriptState (0x9cd010)->(2)
0033:trace:vbscript:DispatchEx_AddRef (0x9cd138) ref=2
0033:trace:vbscript:interp_string
0033:trace:vbscript:interp_icall
0033:fixme:vbscript:do_icall L"FeatureRequestState" not found
0033:warn:vbscript:exec_script Failed 80020006
0033:trace:vbscript:DispatchEx_Release (0x9cd138) ref=1
0033:trace:vbscript:VBScript_Release (0x9cd010) ref=1
--- snip ---
The script snippet (extracted from .msi):
--- snip ---
Dim installTimeless, installMSDE, upgradeMSDE
Dim netVersion
installTimeless = FeatureRequestState("Timeless")
installMSDE = FeatureRequestState("TimelessMSDE")
upgradeMSDE = FeatureRequestState("UpgradeMSDE")
netVersion = Property("MsiNetAssemblySupport")
Property("TTE_FeaturesValid") = "1"
if installTimeless = "3" OR installMSDE = "3" OR upgradeMSDE = "3" then
'MsgBox netVersion, 48, "netVersion"
if netVersion < "2.0.50727" then
MsgBox "Some of the selected components require .Net Framework 2.0.
Please use Windows Update or restart the installation to install it.", 48,
Property("ProductName")
Property("TTE_FeaturesValid") = "X"
' rval = MsgBox("The selected components require .Net Framework 2.0.
Would you like to download and install it?", 36, Property("ProductName") )
' if rval <> 6 then
' Property("TTE_FeaturesValid") = "0"
' end if
end if
End if
Dim installTimeless
Dim createDatabase, upgradeDatabase, createAccessDatabase,
upgradeAccessDatabase
Dim selectedCount
Dim rval
installTimeless = FeatureRequestState("Timeless")
createDatabase = FeatureRequestState("CreateDatabase")
upgradeDatabase = FeatureRequestState("UpgradeDatabase")
createAccessDatabase = FeatureRequestState("CreateAccessDatabase")
upgradeAccessDatabase = FeatureRequestState("UpgradeAccessDatabase")
'MsgBox installTimelessWeb, 48, "TimelessWeb"
'MsgBox createDatabase, 48, "CreateDatabase"
'MsgBox upgradeDatabase, 48,"UpgradeDatabase"
Property("TTE_FeaturesValid") = "1"
if Property("TTE_FeaturesValid") = "1" then
selectedCount = 0
if createDatabase = "3" then
selectedCount = selectedCount + 1
end if
if upgradeDatabase = "3" then
selectedCount = selectedCount + 1
end if
if createAccessDatabase = "3" then
selectedCount = selectedCount + 1
end if
if upgradeAccessDatabase = "3" then
selectedCount = selectedCount + 1
end if
if selectedCount > 1 then
Property("TTE_FeaturesValid") = "0"
MsgBox "Only one of Create SQL Server Database, Create Access Database,
Upgrade SQL Server Database or Upgrade Access Database may be selected.", 48,
Property("ProductName")
end if
end if
'MsgBox Property("TTE_FeaturesValid"), 48,"TTE_FeaturesValid"
BrowseForFolderdim filesys, newdatabase
dim exists
Property("TTE_FeaturesValid") = "1"
newdatabase = Property("CREATEACCESSPATH") & "\Timeless.tmd3"
Set filesys = CreateObject("Scripting.FileSystemObject")
exists = filesys.FileExists(newdatabase)
'MsgBox exists, 48, "exists"
If exists Then
MsgBox "There is already a database at " & newdatabase & ". Select a new
location.", 48, Property("ProductName")
Property("TTE_FeaturesValid") = "0"
End If
Set filesys = nothing
--- snip ---
$ sha1sum TimelessTimeAndExpenseWindowsSetup.exe
860dacc4eb48494e5870a4b32eab8bc5e087f307
TimelessTimeAndExpenseWindowsSetup.exe
$ wine --version
wine-1.5.3
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=30524
Bug #: 30524
Summary: Weather bug fails to detect vbscript (Property flag 1
not implemented)
Product: Wine
Version: 1.5.2
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: vbscript
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: adys.wh(a)gmail.com
Classification: Unclassified
See bug 28999
fixme:msi:AutomationObject_Invoke Method 2, L"Property" wflags 1 not
implemented, clsid {000c109e-0000-0000-c000-000000000046}
--
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=28999
Bug #: 28999
Summary: Weatherbug fails to detect vbscript
Product: Wine
Version: 1.3.32
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: vbscript
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: adys.wh(a)gmail.com
Classification: Unclassified
fixme:urlmon:IsValidURL ((nil),
L"http://apnmedia.ask.com/media/toolbar/stub/1.0.0.0/ApnIC.dll?tb=WBV5&versio…",
0): stub
fixme:ole:CoInitializeSecurity ((nil),-1,(nil),(nil),1,3,(nil),0,(nil)) - stub!
fixme:qmgr:BITS_IBackgroundCopyJob_AddFile Check for valid filenames and
supported protocols
fixme:qmgr:BITS_IBackgroundCopyJob_SetPriority (0x2a3f0,0x00000000) stub
fixme:qmgr:BITS_IBackgroundCopyJob_SetNoProgressTimeout 6
fixme:wininet:InternetLockRequestFile STUB
fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented
fixme:wininet:InternetSetOptionW Option INTERNET_OPTION_CONNECT_TIMEOUT
(10000): STUB
fixme:wininet:HTTPREQ_SetOption unsupported without active connection
fixme:wininet:HTTPREQ_SetOption unsupported without active connection
fixme:wininet:InternetSetOptionW Option INTERNET_OPTION_CONNECT_TIMEOUT (2000):
STUB
fixme:wininet:HTTPREQ_SetOption unsupported without active connection
fixme:wininet:HTTPREQ_SetOption unsupported without active connection
fixme:vbscript:parse_script parser failed on parsing
L"(\"VbScriptRunning\")=\"1\""
err:msi:ITERATE_Actions Execution halted, action
L"VbScriptNotInstalledTermination" returned 1603
--
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=32755
Bug #: 32755
Summary: putty_arm for jailbroken WinRT needs
KERNEL32.dll.InitOnceExecuteOnce
Product: Wine
Version: 1.5.21
Platform: arm
URL: http://www.shinysurface.com/downloads/
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: kernel32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nerv(a)dawncrow.de
CC: focht(a)gmx.net, madewokherd(a)gmail.com, nerv(a)dawncrow.de
Depends on: 31308, 32743
Classification: Unclassified
md5sum:
e42d506b08da7d9038315fba40f6c8dc putty_arm.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.
http://bugs.winehq.org/show_bug.cgi?id=32743
Bug #: 32743
Summary: putty_arm for jailbroken WinRT needs
KERNEL32.dll.GetCurrentPackageId
Product: Wine
Version: 1.5.21
Platform: arm
URL: http://www.shinysurface.com/downloads/
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: kernel32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nerv(a)dawncrow.de
CC: focht(a)gmx.net, nerv(a)dawncrow.de
Classification: Unclassified
md5sum:
e42d506b08da7d9038315fba40f6c8dc putty_arm.exe
Unhandled exception: unimplemented function KERNEL32.dll.GetCurrentPackageId
called in 32-bit code (0xb6c8bf00).
--
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=32768
Bug #: 32768
Summary: OpenTTD port to WinRT/WoA needs
KERNEL32.dll.HeapSummary
Product: Wine
Version: 1.5.22
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: kernel32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Classification: Unclassified
Hello folks,
the Open-source clone of Transport Tycoon Deluxe (transportation simulation
game) installer for WinRT/WoA needs this:
--- snip ---
~/wine-apps/openttd$ wine ./OpenTTDInstaller.exe
wine: Call from 0x40434204 to unimplemented function KERNEL32.dll.HeapSummary,
aborting
wine: Unimplemented function KERNEL32.dll.HeapSummary called at address
0x40434204 (thread 0009), starting debugger...
--- 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=32770
Bug #: 32770
Summary: OpenTTD port to WinRT/WoA needs
KERNEL32.dll.RegisterWaitForInputIdle
Product: Wine
Version: 1.5.22
Platform: arm
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: kernel32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Classification: Unclassified
Hello folks,
the Open-source clone of Transport Tycoon Deluxe (transportation simulation
game) installer for WinRT/WoA needs this:
--- snip ---
~/wine-apps/openttd$ wine ./OpenTTDInstaller.exe
...
wine: Call from 0x40394204 to unimplemented function
KERNEL32.dll.RegisterWaitForInputIdle, aborting
wine: Unimplemented function KERNEL32.dll.RegisterWaitForInputIdle called at
address 0x40394204 (thread 0009), starting debugger...
Unhandled exception: unimplemented function
KERNEL32.dll.RegisterWaitForInputIdle called in 32-bit code (0x40394204).
Register dump:
ARM User Mode
Pc:40394204 Sp:40d4fcd8 Lr:40394204 Cpsr:400f0010(-Z--)
r0:40d4fce4 r1:40d4fdb0 r2:0000 r3:40d4fce4
r4:415db4 r5:bb40e64e r6:8889 r7:0000 r8:0000
r9:0000 r10:40089000 Fp:40d4fd34 Ip:40aca398
Stack dump:
...
Backtrace:
=>0 0x40394204 RtlRaiseException+0x1c(rec=0x40d4fd48)
[/home/linaro/wine/wine-git/dlls/ntdll/signal_arm.c:929] in ntdll (0x40d4fd34)
1 0x40394204 RtlRaiseException+0x1b(rec=0x80000100)
[/home/linaro/wine/wine-git/dlls/ntdll/signal_arm.c:928] in ntdll (0x40d4fd9c)
2 0x40a46910 RaiseException+0xbb(code=0x40aa0388, flags=0x2,
nbargs=0x40394204, args=0x0(nil))
[/home/linaro/wine/wine-git/dlls/kernel32/except.c:84] in kernel32 (0x40d4fdb4)
3 0x40a9f2a8 __wine_spec_unimplemented_stub+0x3b(module=0x0(nil),
function=0x0(nil)) [/home/linaro/wine/wine-git/dlls/winecrt0/stub.c:34] in
kernel32 (0x40d4fde0)
4 0x40a20b30 __wine_stub_RegisterWaitForInputIdle+0x1b() in kernel32
(0x403ef9ec)
5 0x40d4fde8 (0x403ef9ec)
0x40394204 RtlRaiseException+0x1c
[/home/linaro/wine/wine-git/dlls/ntdll/signal_arm.c:929] in ntdll:
ldr r3, [fp, #-16]
929 rec->ExceptionAddress = (LPVOID)context.Pc;
Modules:
Module Address Debug info Name (59 modules)
ELF 8000- 12000 Deferred <wine-loader>
PE 400000- 175d000 Deferred openttdinstaller
...
--- 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=32481
Bug #: 32481
Summary: Windows Sysinternals "PsInfo" tool fails to retrieve
"system uptime" using PDH (local computername
prepended in path)
Product: Wine
Version: 1.5.19
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: pdh
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Classification: Unclassified
Hello folks,
Windows Sysinternals "PsInfo" tool fails to query for some system properties...
Making this bug about "system uptime".
Output:
--- snip ---
$ wine ./PsInfo.exe
PsInfo v1.77 - Local and remote system information viewer
Copyright (C) 2001-2009 Mark Russinovich
Sysinternals - www.sysinternals.com
Querying information for nexus4...fixme:ole:CoInitializeSecurity
((nil),-1,(nil),(nil),0,3,(nil),0,(nil)) - stub!
System information for \\nexus4:
Uptime: Error reading uptime
Kernel version: Microsoft Windows XP, Uniprocessor Free
Product type: Professional
Product version: 5.1
Service pack: 3
Kernel build number: 2600
Registered organization:
Registered owner:
IE version: 6.0000
System root: C:\windows
Processors: 4
Processor speed: 2.6 GHz
Processor type: Intel(R) Pentium(R) 4 CPU
Physical memory: 0 MB
Video driver:
--- snip ---
Wine PDH supports "System Up Time" but only if the path doesn't include a
computer name (even if it's the local one).
--- snip ---
0024:Call pdh.PdhOpenQueryW(00000000,00000000,0032f130) ret=004039fa
0024:Call ntdll.RtlAllocateHeap(00110000,00000008,00000020) ret=7eff6ea7
0024:Ret ntdll.RtlAllocateHeap() retval=0013d540 ret=7eff6ea7
0024:Ret pdh.PdhOpenQueryW() retval=00000000 ret=004039fa
0024:Call KERNEL32.GetLastError() ret=0040d8f2
0024:Ret KERNEL32.GetLastError() retval=00000000 ret=0040d8f2
0024:Call pdh.PdhAddCounterW(0013d540,0032f14c L"\\\\nexus4\\System\\System Up
Time",00000000,0032f134) ret=00403a3f
0024:Ret pdh.PdhAddCounterW() retval=c0000bb9 ret=00403a3f
--- snip ---
Wine should support local computername in path (counter sources path entry).
Source:
http://source.winehq.org/git/wine.git/blob/fcd8a8f447f9774faeb2e1b31cea3d09…
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=24417
Summary: America's Army 3 crashes because of d3dcompiler
Product: Wine
Version: 1.3.2
Platform: x86
URL: http://www.americasarmy.com/downloads/
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: directx-d3dx9
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
CC: wine-bugs(a)winehq.org, matteo.mystral(a)gmail.com
Depends on: 23660
Created an attachment (id=30782)
--> (http://bugs.winehq.org/attachment.cgi?id=30782)
+d3dcompiler trace
Terminal output is short (I trimmed a few non-related steam ones):
fixme:gameux:GameExplorerImpl_VerifyAccess stub
fixme:dsalsa:IDsDriverBufferImpl_SetVolumePan (0x150dc0,0x150d30): stub
fixme:d3dcompiler:D3DCompile data 0x44ea000, data_size 528, filename (null),
defines 0x4454e20, include 0x2b7ed58, entrypoint "Main",
target "vs_3_0", sflags 0, eflags 0, shader 0x2b7ec58, error_messages 0x2b7ec78
stub!
fixme:faultrep:ReportFault 0x2b7e948 0x0 stub
err:seh:setup_exception_record stack overflow 1776 bytes in thread 0020 eip
7bc3b1c5 esp 04d30c40 stack 0x4d30000-0x4d31000-0x5030000
this is after bug 23660 was fixed, using builtin d3dx9. Crashes, but native
d3dx9 fixes it again, which leads me to believe it's in d3dcompiler...
+d3dcompiler 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.