Jaap wrote:
The autocad installer indicated that I needed internet explorer 6.0, so I installed that using winetools.
Don't use winetools, please. As you noticed, it does bad things to your ~/.wine. Or, if you do use it, please report problems to the winetools developer, not here.
(can wine fake internet explorer, so i don't need to install the real thing?)
Yes. Here's what I do:
# Fake IE per workaround in http://bugs.winehq.org/show_bug.cgi?id=3453 wineserver -k cat >> $HOME/.wine/system.reg <<"_EOF_"
[Software\Microsoft\Internet Explorer] "Version"="6.0.2900.2180" _EOF_
- Dan
On 6/5/06, Dan Kegel dank@kegel.com wrote:
Don't use winetools, please. As you noticed, it does bad things to your ~/.wine.
Ok. removed winetools and build a new ~/.wine/
(can wine fake internet explorer, so i don't need to install the real thing?)
Yes. Here's what I do:
# Fake IE per workaround in http://bugs.winehq.org/show_bug.cgi?id=3453 wineserver -k cat >> $HOME/.wine/system.reg <<"_EOF_"
[Software\Microsoft\Internet Explorer] "Version"="6.0.2900.2180" _EOF_
- Dan
Thanks. but it doesn't seem to fool autocad. I tried: WINEDEBUG=+server wine setup.exe > ~/mywinelog.txt but it still logs to stout and my system can't keep up with the scrolling. Is there a way to watch just the registry read/write ?
On Mon, 05 Jun 2006 10:23:45 +0200, Jaap Stolk wrote:
Thanks. but it doesn't seem to fool autocad. I tried: WINEDEBUG=+server wine setup.exe > ~/mywinelog.txt but it still logs to stout and my system can't keep up with the scrolling. Is there a way to watch just the registry read/write ?
You want
WINEDEBUG=+reg wine setup.exe 2>/tmp/log
Note that you redirect stderr not stdout.
thanks -mike