Internet Explorer 8

Informations

Créateur Messages
Quentin PÂRIS Anonymous

Information

Cet installateur a été accepté par l'équipe.

Informations

Plate-formes :
Téléchargements : 876961
Wine: 4.0.3

Retours d'expérience

Description

Type : Web Browser
Company : Microsoft
Compatibility : 4/5
Price : Free

English :
Internet Explorer 8 is a Microsoft's web browser.
You may need it if you want to test a website compatibility. It isn't fully functional (for using it on a daily basis) at the moment.

Français :
Internet Explorer 8 est un navigateur web de Microsoft.
Vous pouvez en avoir besoin pour tester la compatibilité d'un site web. Il n'est pas complètement fonctionnel (pour être utilisé au quotidien) pour l'instant.

Captures d'écran

MiniatureMiniatureMiniature

Code source

#!/bin/bash
 
# Author : Tinou
# Licence : Microsoft
# Depend : none

# CHANGELOG
# [Tinou ?] (2014 ?)
#   First script.
# [Dadu042] (2020-04-06)
#   Wine 4.0.0 -> 4.0.3 (more common and stable)
#   Update POL_Shortcut

# KNOWN ISSUES:
# - Wine 3.20 x86: Browser is detected as 'IE8' by whatismybrowser.org
# - Wine 4.0.3 x86: Browser is detected as 'IE8' by whatismybrowser.org
# - Wine 5.0.0 x86: Browser is detected as 'IE9' by whatismybrowser.org


# Vérifier que PlayOnLinux est bien exécuté avant
[ "$PLAYONLINUX" = "" ] && exit 0 
  
# Charger les librairies
source "$PLAYONLINUX/lib/sources"
 
TITLE="Internet Explorer 8"
Prefix="InternetExplorer8"
 
POL_GetSetupImages "$SITE/setups/ie7/top.jpg" "$SITE/setups/ie7/left.jpg" "$TITLE"
 
POL_SetupWindow_Init
POL_RequiredVersion 4.3.0 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update"
POL_Debug_Init
 
#Presentation
POL_SetupWindow_presentation "$TITLE" "Microsoft" "http://www.microsoft.com/" "Tinou" "$Prefix"
 
POL_System_SetArch "x86"
POL_Wine_SelectPrefix "$Prefix"
POL_Wine_PrefixCreate "4.0.3"
POL_SetupWindow_improve_fonts
 
POL_Call POL_Install_LunaTheme
 
  
POL_Download_Resource "http://download.microsoft.com/download/C/C/0/CC0BD555-33DD-411E-936B-73AC6F95AE11/IE8-WindowsXP-x86-ENU.exe" "616c2e8b12aaa349cd3acb38bf581700"
 
cat << EOF > OGL.reg
[HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main]
"TabProcGrowth"=dword:00000000
 
[HKEY_CURRENT_USER\\Software\\Wine\\DllOverrides]
"browseui"="native,builtin"
"crypt32"="native,builtin"
"hhctrl.ocx"="native,builtin"
"hlink"="native,builtin"
"iernonce"="native,builtin"
"iexplore.exe"="native,builtin"
"itircl"="native,builtin"
"itss"="native,builtin"
"jscript"="native,builtin"
"mlang"="native,builtin"
"mshtml"="native,builtin"
"msimtf"="native,builtin"
"secur32"="native,builtin"
"shdoclc"="native,builtin"
"shdocvw"="native,builtin"
"shlwapi"="native,builtin"
"url"="native,builtin"
"urlmon"="native,builtin"
"usp10"="native,builtin"
"uxtheme"="native,builtin"
"wininet"="builtin"
"wintrust"="native,builtin"
"xmllite"="native,builtin"
EOF
POL_Wine regedit OGL.reg
 
 
POL_Download_Resource "$SITE/divers/ie7-dlls.tar.bz2" "b71a3213452c9a3a1aa08767d52e7577"
 
tar -xvf ie7-dlls.tar.bz2
mv "msctf.dll" "$WINEPREFIX/drive_c/windows/system32"
mv "msimtf.dll" "$WINEPREFIX/drive_c/windows/system32"
mv "uxtheme.dll" "$WINEPREFIX/drive_c/windows/system32"
 
POL_Wine_InstallFonts
POL_Call POL_Function_FontsSmoothRGB
 
POL_Call POL_Install_gdiplus
POL_Call POL_Install_msls31
POL_Call POL_Install_msxml3
POL_Call POL_Install_riched20
POL_Call POL_Install_DisableCrashDialog
 
Set_OS win7
 
cd "$REPERTOIRE/ressources"
POL_Wine_WaitBefore "$TITLE"
POL_Wine --ignore-errors "IE8-WindowsXP-x86-ENU.exe"
 
POL_Shortcut "$PROGRAMFILES/Internet Explorer/iexplore.exe" "$TITLE" "" "" "Network;"

# IE8 crashes on exit, bug #847
POL_Shortcut_QuietDebug "$TITLE"
 
POL_SetupWindow_Close
exit 0

Contributions

Filters:

Contribuer
Membre Messages
Luzemario Mardi 9 Mars 2021 à 14:18
Luzemario Anonymous

Messages

Does not install. Wine tells "This program is not supported in this operating system", and installs Wine Internet Explorer instead.

Réponses

Dadu042 Lundi 6 Avril 2020 à 20:50
Dadu042

Information

Cette mise à jour a été acceptée par l'équipe

Differences

@@ -1,41 +1,54 @@
 #!/bin/bash
-
+ 
 # Author : Tinou
 # Licence : Microsoft
 # Depend : none
 
-#Vérifier que PlayOnLinux est bien exécuté avant
+# CHANGELOG
+# [Tinou ?] (2014 ?)
+#   First script.
+# [Dadu042] (2020-04-06)
+#   Wine 4.0.0 -> 4.0.3 (more common and stable)
+#   Update POL_Shortcut
+
+# KNOWN ISSUES:
+# - Wine 3.20 x86: Browser is detected as 'IE8' by whatismybrowser.org
+# - Wine 4.0.3 x86: Browser is detected as 'IE8' by whatismybrowser.org
+# - Wine 5.0.0 x86: Browser is detected as 'IE9' by whatismybrowser.org
+
+
+# Vérifier que PlayOnLinux est bien exécuté avant
 [ "$PLAYONLINUX" = "" ] && exit 0 
- 
+  
 # Charger les librairies
 source "$PLAYONLINUX/lib/sources"
-
+ 
 TITLE="Internet Explorer 8"
 Prefix="InternetExplorer8"
-
+ 
 POL_GetSetupImages "$SITE/setups/ie7/top.jpg" "$SITE/setups/ie7/left.jpg" "$TITLE"
-
+ 
 POL_SetupWindow_Init
-POL_RequiredVersion 4.0.17 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update"
+POL_RequiredVersion 4.3.0 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update"
 POL_Debug_Init
-
+ 
 #Presentation
 POL_SetupWindow_presentation "$TITLE" "Microsoft" "http://www.microsoft.com/" "Tinou" "$Prefix"
-
+ 
 POL_System_SetArch "x86"
 POL_Wine_SelectPrefix "$Prefix"
-POL_Wine_PrefixCreate "4.0"
+POL_Wine_PrefixCreate "4.0.3"
 POL_SetupWindow_improve_fonts
-
+ 
 POL_Call POL_Install_LunaTheme
-
  
+  
 POL_Download_Resource "http://download.microsoft.com/download/C/C/0/CC0BD555-33DD-411E-936B-73AC6F95AE11/IE8-WindowsXP-x86-ENU.exe" "616c2e8b12aaa349cd3acb38bf581700"
-
+ 
 cat << EOF > OGL.reg
 [HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main]
 "TabProcGrowth"=dword:00000000
-
+ 
 [HKEY_CURRENT_USER\\Software\\Wine\\DllOverrides]
 "browseui"="native,builtin"
 "crypt32"="native,builtin"
@@ -62,33 +75,34 @@
 "xmllite"="native,builtin"
 EOF
 POL_Wine regedit OGL.reg
-
-
+ 
+ 
 POL_Download_Resource "$SITE/divers/ie7-dlls.tar.bz2" "b71a3213452c9a3a1aa08767d52e7577"
-
+ 
 tar -xvf ie7-dlls.tar.bz2
 mv "msctf.dll" "$WINEPREFIX/drive_c/windows/system32"
 mv "msimtf.dll" "$WINEPREFIX/drive_c/windows/system32"
 mv "uxtheme.dll" "$WINEPREFIX/drive_c/windows/system32"
-
+ 
 POL_Wine_InstallFonts
 POL_Call POL_Function_FontsSmoothRGB
-
+ 
 POL_Call POL_Install_gdiplus
 POL_Call POL_Install_msls31
 POL_Call POL_Install_msxml3
 POL_Call POL_Install_riched20
 POL_Call POL_Install_DisableCrashDialog
-
-Set_OS winxp
-
+ 
+Set_OS win7
+ 
 cd "$REPERTOIRE/ressources"
 POL_Wine_WaitBefore "$TITLE"
 POL_Wine --ignore-errors "IE8-WindowsXP-x86-ENU.exe"
+ 
+POL_Shortcut "$PROGRAMFILES/Internet Explorer/iexplore.exe" "$TITLE" "" "" "Network;"
 
-POL_Shortcut "$PROGRAMFILES/Internet Explorer/iexplore.exe" "$TITLE"
 # IE8 crashes on exit, bug #847
 POL_Shortcut_QuietDebug "$TITLE"
-
+ 
 POL_SetupWindow_Close
 exit 0
\ No newline at end of file

Nouveau code source

#!/bin/bash
 
# Author : Tinou
# Licence : Microsoft
# Depend : none

# CHANGELOG
# [Tinou ?] (2014 ?)
#   First script.
# [Dadu042] (2020-04-06)
#   Wine 4.0.0 -> 4.0.3 (more common and stable)
#   Update POL_Shortcut

# KNOWN ISSUES:
# - Wine 3.20 x86: Browser is detected as 'IE8' by whatismybrowser.org
# - Wine 4.0.3 x86: Browser is detected as 'IE8' by whatismybrowser.org
# - Wine 5.0.0 x86: Browser is detected as 'IE9' by whatismybrowser.org


# Vérifier que PlayOnLinux est bien exécuté avant
[ "$PLAYONLINUX" = "" ] && exit 0 
  
# Charger les librairies
source "$PLAYONLINUX/lib/sources"
 
TITLE="Internet Explorer 8"
Prefix="InternetExplorer8"
 
POL_GetSetupImages "$SITE/setups/ie7/top.jpg" "$SITE/setups/ie7/left.jpg" "$TITLE"
 
POL_SetupWindow_Init
POL_RequiredVersion 4.3.0 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update"
POL_Debug_Init
 
#Presentation
POL_SetupWindow_presentation "$TITLE" "Microsoft" "http://www.microsoft.com/" "Tinou" "$Prefix"
 
POL_System_SetArch "x86"
POL_Wine_SelectPrefix "$Prefix"
POL_Wine_PrefixCreate "4.0.3"
POL_SetupWindow_improve_fonts
 
POL_Call POL_Install_LunaTheme
 
  
POL_Download_Resource "http://download.microsoft.com/download/C/C/0/CC0BD555-33DD-411E-936B-73AC6F95AE11/IE8-WindowsXP-x86-ENU.exe" "616c2e8b12aaa349cd3acb38bf581700"
 
cat << EOF > OGL.reg
[HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main]
"TabProcGrowth"=dword:00000000
 
[HKEY_CURRENT_USER\\Software\\Wine\\DllOverrides]
"browseui"="native,builtin"
"crypt32"="native,builtin"
"hhctrl.ocx"="native,builtin"
"hlink"="native,builtin"
"iernonce"="native,builtin"
"iexplore.exe"="native,builtin"
"itircl"="native,builtin"
"itss"="native,builtin"
"jscript"="native,builtin"
"mlang"="native,builtin"
"mshtml"="native,builtin"
"msimtf"="native,builtin"
"secur32"="native,builtin"
"shdoclc"="native,builtin"
"shdocvw"="native,builtin"
"shlwapi"="native,builtin"
"url"="native,builtin"
"urlmon"="native,builtin"
"usp10"="native,builtin"
"uxtheme"="native,builtin"
"wininet"="builtin"
"wintrust"="native,builtin"
"xmllite"="native,builtin"
EOF
POL_Wine regedit OGL.reg
 
 
POL_Download_Resource "$SITE/divers/ie7-dlls.tar.bz2" "b71a3213452c9a3a1aa08767d52e7577"
 
tar -xvf ie7-dlls.tar.bz2
mv "msctf.dll" "$WINEPREFIX/drive_c/windows/system32"
mv "msimtf.dll" "$WINEPREFIX/drive_c/windows/system32"
mv "uxtheme.dll" "$WINEPREFIX/drive_c/windows/system32"
 
POL_Wine_InstallFonts
POL_Call POL_Function_FontsSmoothRGB
 
POL_Call POL_Install_gdiplus
POL_Call POL_Install_msls31
POL_Call POL_Install_msxml3
POL_Call POL_Install_riched20
POL_Call POL_Install_DisableCrashDialog
 
Set_OS win7
 
cd "$REPERTOIRE/ressources"
POL_Wine_WaitBefore "$TITLE"
POL_Wine --ignore-errors "IE8-WindowsXP-x86-ENU.exe"
 
POL_Shortcut "$PROGRAMFILES/Internet Explorer/iexplore.exe" "$TITLE" "" "" "Network;"

# IE8 crashes on exit, bug #847
POL_Shortcut_QuietDebug "$TITLE"
 
POL_SetupWindow_Close
exit 0

Réponses

Quentin PÂRIS Dimanche 17 Février 2019 à 10:35
Quentin PÂRIS Anonymous

Warning

Cette mise à jour n'a pas été approuvée par l'équipe.
Utilisez-la à vos risques et périls

Differences

@@ -24,7 +24,7 @@
 
 POL_System_SetArch "x86"
 POL_Wine_SelectPrefix "$Prefix"
-POL_Wine_PrefixCreate "1.7.22"
+POL_Wine_PrefixCreate "4.0"
 POL_SetupWindow_improve_fonts
 
 POL_Call POL_Install_LunaTheme

Nouveau code source

#!/bin/bash

# Author : Tinou
# Licence : Microsoft
# Depend : none

#Vérifier que PlayOnLinux est bien exécuté avant
[ "$PLAYONLINUX" = "" ] && exit 0 
 
# Charger les librairies
source "$PLAYONLINUX/lib/sources"

TITLE="Internet Explorer 8"
Prefix="InternetExplorer8"

POL_GetSetupImages "$SITE/setups/ie7/top.jpg" "$SITE/setups/ie7/left.jpg" "$TITLE"

POL_SetupWindow_Init
POL_RequiredVersion 4.0.17 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update"
POL_Debug_Init

#Presentation
POL_SetupWindow_presentation "$TITLE" "Microsoft" "http://www.microsoft.com/" "Tinou" "$Prefix"

POL_System_SetArch "x86"
POL_Wine_SelectPrefix "$Prefix"
POL_Wine_PrefixCreate "4.0"
POL_SetupWindow_improve_fonts

POL_Call POL_Install_LunaTheme

 
POL_Download_Resource "http://download.microsoft.com/download/C/C/0/CC0BD555-33DD-411E-936B-73AC6F95AE11/IE8-WindowsXP-x86-ENU.exe" "616c2e8b12aaa349cd3acb38bf581700"

cat << EOF > OGL.reg
[HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main]
"TabProcGrowth"=dword:00000000

[HKEY_CURRENT_USER\\Software\\Wine\\DllOverrides]
"browseui"="native,builtin"
"crypt32"="native,builtin"
"hhctrl.ocx"="native,builtin"
"hlink"="native,builtin"
"iernonce"="native,builtin"
"iexplore.exe"="native,builtin"
"itircl"="native,builtin"
"itss"="native,builtin"
"jscript"="native,builtin"
"mlang"="native,builtin"
"mshtml"="native,builtin"
"msimtf"="native,builtin"
"secur32"="native,builtin"
"shdoclc"="native,builtin"
"shdocvw"="native,builtin"
"shlwapi"="native,builtin"
"url"="native,builtin"
"urlmon"="native,builtin"
"usp10"="native,builtin"
"uxtheme"="native,builtin"
"wininet"="builtin"
"wintrust"="native,builtin"
"xmllite"="native,builtin"
EOF
POL_Wine regedit OGL.reg


POL_Download_Resource "$SITE/divers/ie7-dlls.tar.bz2" "b71a3213452c9a3a1aa08767d52e7577"

tar -xvf ie7-dlls.tar.bz2
mv "msctf.dll" "$WINEPREFIX/drive_c/windows/system32"
mv "msimtf.dll" "$WINEPREFIX/drive_c/windows/system32"
mv "uxtheme.dll" "$WINEPREFIX/drive_c/windows/system32"

POL_Wine_InstallFonts
POL_Call POL_Function_FontsSmoothRGB

POL_Call POL_Install_gdiplus
POL_Call POL_Install_msls31
POL_Call POL_Install_msxml3
POL_Call POL_Install_riched20
POL_Call POL_Install_DisableCrashDialog

Set_OS winxp

cd "$REPERTOIRE/ressources"
POL_Wine_WaitBefore "$TITLE"
POL_Wine --ignore-errors "IE8-WindowsXP-x86-ENU.exe"

POL_Shortcut "$PROGRAMFILES/Internet Explorer/iexplore.exe" "$TITLE"
# IE8 crashes on exit, bug #847
POL_Shortcut_QuietDebug "$TITLE"

POL_SetupWindow_Close
exit 0

Réponses

LordBadon Mardi 4 Octobre 2016 à 8:43
LordBadon Anonymous

Messages

I can't seem to get this to install - period. I keep getting this error message:

"Setup has detected a newer version of Internet Explorer already installed on this system."

I have no idea how to fix it. I can install Internet Explorer on WINE outside of PlayOnLinux, but there seems to be something about adding in PlayOnLinux that makes it think I already have IE8 installed. I have no idea why. Any ideas on how to fix it?

Réponses

Anonymous
Mardi 4 Octobre 2016 à 8:52
NEVERMIND! IE8 stopped installing on the normal WINE as well. I have no freaking idea what's going on at this point.
ferreira_daniel Vendredi 2 September 2016 à 19:22
ferreira_daniel Anonymous

Messages

Hello all,

I'm trying to use IE8 on PlayOnLinux on Arch Linux. But the problem is that I'm behind a proxy server ... and until know I couldn't connect to the internet or to the intranet.

I've the environment variables correctly set and I can browse the Internet using the default IE8 "winetricks browser" (but it doesn't work for Intranet sites either).

I've the proxy server set on playonlinux gui and I've tried to edit directly on windows registry of the playonlinux installation ... but with no success.

Could you please help?

wine 1.9.17-1

winetricks 20160724-1

playonlinux 4.2.10-1
Linux hostname 4.7.2-1-ARCH #1 SMP PREEMPT Sat Aug 20 23:02:56 CEST 2016 x86_64 GNU/Linux

 

 

 

 

Thanks in advance.

Réponses

GreenArrow Mardi 16 Juin 2015 à 13:24
GreenArrow Anonymous

Messages

It installed correctly and is working. But it seemes to crash on some websites and has a black box around forward and back navigation buttons. Other than that I got it to work.

Réponses

ssl3004 Vendredi 13 Mars 2015 à 10:48
ssl3004 Anonymous

Messages

Hi  I have installed ie8 and works fine, but  java is not working I installed in the same virtual disk java  but java not loading....pls help me out.

 

I suggest to include java in your script...

 

tnaks

 

Réponses

Vendredi 13 Mars 2015 à 14:02
I'm looking for a legal URL to direct download a JRE
Anonymous
Dimanche 15 Mars 2015 à 16:37
Pls can tell me how to install java in ie8 step by step
FuzzyToothpaste Mardi 16 September 2014 à 2:18
FuzzyToothpaste Anonymous

Messages

It crashes when you go to a website with SSL. Unfortunatly, the default homepage is set to https://winehq.org, which makes it crash just seconds after startup. This needs to be fixed soon. (P.S. I have Ubuntu 14.04 64-bit.)

Réponses

Mardi 14 Octobre 2014 à 22:45
Crashing http:// website after startup. When you clicked addressbar. (Ubuntu 12.10 64-bit.)
Mardi 14 Octobre 2014 à 22:48
yes it is also crashin when you go ssl websites.
Anonymous
Mardi 14 Octobre 2014 à 22:52
Reinstall wine 1.7.22
Quentin PÂRIS Jeudi 24 Juillet 2014 à 0:07
Quentin PÂRIS Anonymous

Warning

Cette mise à jour n'a pas été approuvée par l'équipe.
Utilisez-la à vos risques et périls

Differences

@@ -24,7 +24,7 @@
 
 POL_System_SetArch "x86"
 POL_Wine_SelectPrefix "$Prefix"
-POL_Wine_PrefixCreate 1.2.3
+POL_Wine_PrefixCreate "1.7.22"
 POL_SetupWindow_improve_fonts
 
 POL_Call POL_Install_LunaTheme

Nouveau code source

#!/bin/bash

# Author : Tinou
# Licence : Microsoft
# Depend : none

#Vérifier que PlayOnLinux est bien exécuté avant
[ "$PLAYONLINUX" = "" ] && exit 0 
 
# Charger les librairies
source "$PLAYONLINUX/lib/sources"

TITLE="Internet Explorer 8"
Prefix="InternetExplorer8"

POL_GetSetupImages "$SITE/setups/ie7/top.jpg" "$SITE/setups/ie7/left.jpg" "$TITLE"

POL_SetupWindow_Init
POL_RequiredVersion 4.0.17 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update"
POL_Debug_Init

#Presentation
POL_SetupWindow_presentation "$TITLE" "Microsoft" "http://www.microsoft.com/" "Tinou" "$Prefix"

POL_System_SetArch "x86"
POL_Wine_SelectPrefix "$Prefix"
POL_Wine_PrefixCreate "1.7.22"
POL_SetupWindow_improve_fonts

POL_Call POL_Install_LunaTheme

 
POL_Download_Resource "http://download.microsoft.com/download/C/C/0/CC0BD555-33DD-411E-936B-73AC6F95AE11/IE8-WindowsXP-x86-ENU.exe" "616c2e8b12aaa349cd3acb38bf581700"

cat << EOF > OGL.reg
[HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main]
"TabProcGrowth"=dword:00000000

[HKEY_CURRENT_USER\\Software\\Wine\\DllOverrides]
"browseui"="native,builtin"
"crypt32"="native,builtin"
"hhctrl.ocx"="native,builtin"
"hlink"="native,builtin"
"iernonce"="native,builtin"
"iexplore.exe"="native,builtin"
"itircl"="native,builtin"
"itss"="native,builtin"
"jscript"="native,builtin"
"mlang"="native,builtin"
"mshtml"="native,builtin"
"msimtf"="native,builtin"
"secur32"="native,builtin"
"shdoclc"="native,builtin"
"shdocvw"="native,builtin"
"shlwapi"="native,builtin"
"url"="native,builtin"
"urlmon"="native,builtin"
"usp10"="native,builtin"
"uxtheme"="native,builtin"
"wininet"="builtin"
"wintrust"="native,builtin"
"xmllite"="native,builtin"
EOF
POL_Wine regedit OGL.reg


POL_Download_Resource "$SITE/divers/ie7-dlls.tar.bz2" "b71a3213452c9a3a1aa08767d52e7577"

tar -xvf ie7-dlls.tar.bz2
mv "msctf.dll" "$WINEPREFIX/drive_c/windows/system32"
mv "msimtf.dll" "$WINEPREFIX/drive_c/windows/system32"
mv "uxtheme.dll" "$WINEPREFIX/drive_c/windows/system32"

POL_Wine_InstallFonts
POL_Call POL_Function_FontsSmoothRGB

POL_Call POL_Install_gdiplus
POL_Call POL_Install_msls31
POL_Call POL_Install_msxml3
POL_Call POL_Install_riched20
POL_Call POL_Install_DisableCrashDialog

Set_OS winxp

cd "$REPERTOIRE/ressources"
POL_Wine_WaitBefore "$TITLE"
POL_Wine --ignore-errors "IE8-WindowsXP-x86-ENU.exe"

POL_Shortcut "$PROGRAMFILES/Internet Explorer/iexplore.exe" "$TITLE"
# IE8 crashes on exit, bug #847
POL_Shortcut_QuietDebug "$TITLE"

POL_SetupWindow_Close
exit 0

Réponses

Anonymous
Mercredi 6 Aoüt 2014 à 21:51
Ubuntu 14.04, playonlinux and IE 8 installed, When I open the browser and try to navigate it gets closed suddenly. What can it be. The sistem and the aplication are update.
Mercredi 6 Aoüt 2014 à 21:52
any error messages or logs ?
Anonymous
Lundi 11 Aoüt 2014 à 18:23
how could I record the
Anonymous
Lundi 11 Aoüt 2014 à 18:24
My Internet Explorer Installation crash with an Architecture error. How could I Log the Instalation?
Ubuntu 14.04 on VirtualBox
Anonymous
Jeudi 14 Aoüt 2014 à 3:54
I have encountered the same problem...Is there anyone who can help me out???I am from China, and my university's website required IE to login...
Jeudi 14 Aoüt 2014 à 6:46
sorry for the wating. Select IE on the application list and press on the "debug" button. A new window should open and IE should launch. After the crash, look in the window. You should see the log ;)
Anonymous
Jeudi 14 Aoüt 2014 à 17:17
@Tutul I could not see a Debug Button on the Application installation list. The only Debug option is on the List with the Installed software. But I could not use it with the installer it self to record the installation process.
Jeudi 14 Aoüt 2014 à 18:27
Installations done use scripts that support integrated debugger are automatically logged, even if the debugger window is not opened.
Check Tools > PlayOnLinux debugger > Install scripts > Internet Explorer 8
Vendredi 15 Aoüt 2014 à 1:48
To be honest, the only reason people ever install IE is not to actually browse with it, but because it is needed (as are it's dependencies) by certain programs to install and run. There really is very little reason to actually browse with IE, considering that you have native browsers. Unlike what most people say, between chrome and FF, even the most "IE ONLY" sites work fine. Even when I was told that nothing but IE works with whatever tool we were using at work, I used chrome or FF and 99% of the time it worked fine. :D
Anonymous
Vendredi 15 Aoüt 2014 à 11:01
Or for web developers to test websites
Vendredi 15 Aoüt 2014 à 11:33
I was actually going to include it in there, but designing for IE8 is, well, insignificant for the amount of users still using it. Plus, I would want to test on an actual windows install (even a VM) to make sure it rendered natively, as the end-user would probably not be surfing through Wine. That is the only reason I did not include that particular.
Anonymous
Vendredi 15 Aoüt 2014 à 11:44
Well for customer designed website, I agree with you. But sometimes, you have companies that use old web apps for their intranet, and every client have only IE. (The contrary is also true...). I agree that at the end, you'll have to test with a VM ; but it can still be very useful to have wine to develop the "big part"
Anonymous
Vendredi 15 Aoüt 2014 à 11:46
Anyway, if people are crazy enough to use wine based IE8 as a default browser on Linux, I cannot do anything for them...
Anonymous
Dimanche 9 Avril 2017 à 18:32
I got a logfile as big as the holy bible - what can I do with this ????
Anonymous
Mardi 13 Mars 2018 à 22:33
I just tried the update above but I got what looks like a mismatched MD5 checksum: