On Thu, Feb 03, 2005 at 03:56:46PM +0100, Duncan Lithgow wrote:
Johannes, thanks for those links - looks like good tools. Can't get it to work though.
Winetools reports that I have succesfully installed IE 6.0 Full (which is what I want) but i can't work out how to get it to run.
when i type # wine iexplore or # wine iexplore.exe it just says wine: cannot find 'iexplore.exe' or whatever
You should remember that you are on Linux and Linux is case sensitive. So try
# wine IEXPLORE.EXE
Also, it may not be in your path, so you may have to give a fully qualified windowsified path:
# wine "c:/Program Files/Internet Explorer/IEXPLORE.EXE" &
To find out where something is in your wine tree, try:
find .wine -iname "*.exe" | less
or variations on that. For more information, "info find".