http://bugs.winehq.org/show_bug.cgi?id=5928
--- Comment #21 from Anastasius Focht <focht(a)gmx.net> 2012-04-27 02:45:14 CDT ---
Hello,
it goes a bit further now but doesn'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 ---
$ wine --version
wine-1.5.2-281-g2551ff7
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=5928
Bug 5928 depends on bug 28999, which changed state.
Bug 28999 Summary: Weatherbug fails to detect vbscript
http://bugs.winehq.org/show_bug.cgi?id=28999
What |Old Value |New Value
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
--
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=7525
Detlef Riekenberg <wine.dev(a)web.de> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |wine.dev(a)web.de
--
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=27084
Summary: Renaming fails (in mp3tag) if change is only in case
Product: Wine
Version: 1.3.19
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tastky(a)gmail.com
mp3tag v2.48, but wasn't any different in previous versions.
The bug occurs whenever one tries to rename any file whose name would only be
affected with regards to letter case.
On Windows renaming always works fine. With Wine, one will get this error:
"File "Z:\foobar.mp3" cannot be renamed to "Z:\FooBar.mp3".
File already exists"
--
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=6549
--- Comment #14 from Bruno Jesus <00cpxxx(a)gmail.com> 2012-04-25 22:17:03 CDT ---
Created attachment 39926
--> http://bugs.winehq.org/attachment.cgi?id=39926
semi-stub implementation
This is just an attempt to implement it's basic functionality, it does not
really work. I could not find any way to associate the MIB_TCPROW with the
socket id to issue a closesocket or something like that (the only way I could
do was using lsof).
--
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=8093
Ma Xiaojun <damage3025(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |damage3025(a)gmail.com
--
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=6549
Bruno Jesus <00cpxxx(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords|download |
CC| |00cpxxx(a)gmail.com
Component|winsock |iphlpapi
--- Comment #13 from Bruno Jesus <00cpxxx(a)gmail.com> 2012-04-24 22:32:26 CDT ---
Still present in wine 1.5.2.
--
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=25432
Summary: Internet Explorer 6, 5.5, and 5.0 fail to install
Product: Wine
Version: 1.3.8
Platform: x86-64
URL: http://www.mirrorservice.org/sites/browsers.evolt.org/
browsers/ie/win32/5.01-sp2/ie501sp2.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: RandomAccountName(a)mail.com
CC: julliard(a)winehq.org
Created an attachment (id=32370)
--> (http://bugs.winehq.org/attachment.cgi?id=32370)
Terminal output (IE6)
In the current git, winetricks ie6 quickly fails with "setup was unable to
download the required components. Please make sure you are connected to the
Internet, or try to run setup again later." The IE 5.x installers also fail
quickly with a similar error.
I haven't done a real regression test, but reverting this commit prevents the
errors:
commit 26c7172177ea22abdfb561097aabc657cbebc86d
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Thu Dec 2 14:16:17 2010 +0100
inseng: Convert dll registration to the IRegistrar mechanism.
--
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=9012
Anastasius Focht <focht(a)gmx.net> changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|MS Money 2007 deluxe trial |Microsoft Money 2005, 2006,
|aborts on startup |2007 crash on startup
--- Comment #28 from Anastasius Focht <focht(a)gmx.net> 2012-04-24 15:27:21 CDT ---
Hello,
still present, refining summary as this affects several MS Money versions.
$ wine --version
wine-1.5.2-250-gdc830aa
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.