Internet Explorer 8
Informatie
Creator | Bericht |
---|---|
Quentin PÂRIS
![]()
|
InformationThis installer has been approved by the team. InformatiePlatforms: Feedbacks4 5 OmschrijvingType : Web Browser
SchermafdrukkenBroncode#!/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:
ContributeMember | Bericht |
Luzemario | Dinsdag 9 Maart 2021 om 14:18 |
Luzemario
![]()
|
BerichtDoes not install. Wine tells "This program is not supported in this operating system", and installs Wine Internet Explorer instead. Antwoorden |
Dadu042 | Maandag 6 April 2020 om 20:50 |
Dadu042
![]()
|
InformationThis update has been approved by the team. 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 New source code#!/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 Antwoorden |
Quentin PÂRIS | Zondag 17 Februari 2019 om 10:35 |
Quentin PÂRIS
![]()
|
WarningThis update has not been approved yet by the team. 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 New source code#!/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 Antwoorden |
LordBadon | Dinsdag 4 October 2016 om 8:43 |
LordBadon
![]()
|
BerichtI 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? AntwoordenDinsdag 4 October 2016 om 8:52
|
ferreira_daniel | Vrijdag 2 September 2016 om 19:22 |
ferreira_daniel
![]()
|
BerichtHello 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
Thanks in advance. Antwoorden |
GreenArrow | Dinsdag 16 Juni\ 2015 om 13:24 |
GreenArrow
![]()
|
BerichtIt 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. Antwoorden |
ssl3004 | Vrijdag 13 Maart 2015 om 10:48 |
ssl3004
![]()
|
|
FuzzyToothpaste | Dinsdag 16 September 2014 om 2:18 |
FuzzyToothpaste
![]()
|
BerichtIt 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.) AntwoordenDinsdag 14 October 2014 om 22:45
Dinsdag 14 October 2014 om 22:48
Dinsdag 14 October 2014 om 22:52
|
Quentin PÂRIS | Donderdag 24 Juli 2014 om 0:07 |
Quentin PÂRIS
![]()
|
WarningThis update has not been approved yet by the team. 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 New source code#!/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 AntwoordenWoensdag 6 Augustus 2014 om 21:51
Woensdag 6 Augustus 2014 om 21:52
Maandag 11 Augustus 2014 om 18:23
Maandag 11 Augustus 2014 om 18:24
Donderdag 14 Augustus 2014 om 3:54
Donderdag 14 Augustus 2014 om 6:46
Donderdag 14 Augustus 2014 om 17:17
Donderdag 14 Augustus 2014 om 18:27
Vrijdag 15 Augustus 2014 om 1:48
Vrijdag 15 Augustus 2014 om 11:01
Vrijdag 15 Augustus 2014 om 11:33
Vrijdag 15 Augustus 2014 om 11:44
Vrijdag 15 Augustus 2014 om 11:46
Zondag 9 April 2017 om 18:32
Dinsdag 13 Maart 2018 om 22:33
|
This site allows content generated by members, and we promptly remove any content that infringes copyright according to our Terms of Service. To report copyright infringement, please send a notice to dmca-notice@playonlinux.com