Internet Explorer 1

Informations

Creator Message
Quentin PÂRIS Anonymous

Information

This installer has been approved by the team.

Informations

Platforms:
Downloads: 28046
Wine: 1.7.49

Feedbacks

Screenshots

MiniatureMiniature

Source code

#!/bin/bash

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"

TITLE="Internet Explorer 1"
PREFIX="InternetExplorer1"

WORKING_WINE_VERSION="1.7.49"

POL_SetupWindow_Init
POL_Debug_Init

POL_SetupWindow_presentation "$TITLE" "Microsoft Corporation" "http://www.microsoft.com/" "Tinou" "$PREFIX"

POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "x86"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_System_TmpCreate "$PREFIX"
cd "$POL_System_TmpDir"

Set_OS win95
POL_Wine iexplore -unregserver

POL_Wine_OverrideDLL native,builtin advpack iexplore.exe jscript mshtml shdocvw urlmon vbscript wininet

cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Internet Explorer/"
rm iexplore.exe

cd "$WINEPREFIX/drive_c/windows/system32" || POL_Debug_Fatal "Unable to switch to system32"

rm advpack.dll,inetcpl.cpl,mshtml.dll,schannel.dll,shdocvw.dll,urlmon.dll,vbscript.dll,wininet.dll


POL_Wine_WaitBefore "$TITLE"

cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Internet Explorer"
mkdir -p History
mkdir -p dcache

POL_Download "http://files.playonlinux.com/ie/1.0/Msie10.exe" "adb4c9f286600bd2889d3f756a76318d"

cabextract Msie10.exe
cabextract iexplore.cab

cat << EOF > ie1.reg
[HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer\Main]
"History_Directory"="C:\\Program Files\\Internet Explorer\\History"
"Start Page"="http://www.playonlinux.com/"
EOF
POL_Wine regedit ie1.reg

POL_Shortcut "iexplore.exe" "$TITLE"
POL_SetupWindow_Close
exit

Contributions

Filters:

Contribute
Member Message
Quentin PÂRIS Monday 17 August 2015 at 23:16
Quentin PÂRIS Anonymous

Information

This update has been approved by the team.

Differences

@@ -6,8 +6,7 @@
 TITLE="Internet Explorer 1"
 PREFIX="InternetExplorer1"
 
-WORKING_WINE_VERSION="1.2.3"
-[ "$POL_OS" = "Mac" ] && WORKING_WINE_VERSION="1.2.3-16bits"
+WORKING_WINE_VERSION="1.7.49"
 
 POL_SetupWindow_Init
 POL_Debug_Init
@@ -39,7 +38,7 @@
 mkdir -p History
 mkdir -p dcache
 
-POL_Download "http://browsers-fr.mirrors.zensoft.net/ie/win32/1.0/Msie10.exe" "adb4c9f286600bd2889d3f756a76318d"
+POL_Download "http://files.playonlinux.com/ie/1.0/Msie10.exe" "adb4c9f286600bd2889d3f756a76318d"
 
 cabextract Msie10.exe
 cabextract iexplore.cab

New source code

#!/bin/bash

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"

TITLE="Internet Explorer 1"
PREFIX="InternetExplorer1"

WORKING_WINE_VERSION="1.7.49"

POL_SetupWindow_Init
POL_Debug_Init

POL_SetupWindow_presentation "$TITLE" "Microsoft Corporation" "http://www.microsoft.com/" "Tinou" "$PREFIX"

POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "x86"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_System_TmpCreate "$PREFIX"
cd "$POL_System_TmpDir"

Set_OS win95
POL_Wine iexplore -unregserver

POL_Wine_OverrideDLL native,builtin advpack iexplore.exe jscript mshtml shdocvw urlmon vbscript wininet

cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Internet Explorer/"
rm iexplore.exe

cd "$WINEPREFIX/drive_c/windows/system32" || POL_Debug_Fatal "Unable to switch to system32"

rm advpack.dll,inetcpl.cpl,mshtml.dll,schannel.dll,shdocvw.dll,urlmon.dll,vbscript.dll,wininet.dll


POL_Wine_WaitBefore "$TITLE"

cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Internet Explorer"
mkdir -p History
mkdir -p dcache

POL_Download "http://files.playonlinux.com/ie/1.0/Msie10.exe" "adb4c9f286600bd2889d3f756a76318d"

cabextract Msie10.exe
cabextract iexplore.cab

cat << EOF > ie1.reg
[HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer\Main]
"History_Directory"="C:\\Program Files\\Internet Explorer\\History"
"Start Page"="http://www.playonlinux.com/"
EOF
POL_Wine regedit ie1.reg

POL_Shortcut "iexplore.exe" "$TITLE"
POL_SetupWindow_Close
exit

Replies

FuzzyToothpaste Tuesday 16 September 2014 at 2:14
FuzzyToothpaste Anonymous

Warning

This update has not been approved yet by the team.
Use it at your own risk

Message

On my computer (Ubuntu 14.04 x64), the installer hangs at creating the virtual drive. The circle spins and spins and spins but doesn't really do anything.

Differences

@@ -12,7 +12,7 @@
 POL_SetupWindow_Init
 POL_Debug_Init
 
-POL_SetupWindow_presentation "$TITLE" "Microsoft corporation" "http://www.microsoft.com/" "Tinou" "$PREFIX"
+POL_SetupWindow_presentation "$TITLE" "Microsoft Corporation" "http://www.microsoft.com/" "Tinou" "$PREFIX"
 
 POL_Wine_SelectPrefix "$PREFIX"
 POL_System_SetArch "x86"

New source code

#!/bin/bash

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"

TITLE="Internet Explorer 1"
PREFIX="InternetExplorer1"

WORKING_WINE_VERSION="1.2.3"
[ "$POL_OS" = "Mac" ] && WORKING_WINE_VERSION="1.2.3-16bits"

POL_SetupWindow_Init
POL_Debug_Init

POL_SetupWindow_presentation "$TITLE" "Microsoft Corporation" "http://www.microsoft.com/" "Tinou" "$PREFIX"

POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "x86"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_System_TmpCreate "$PREFIX"
cd "$POL_System_TmpDir"

Set_OS win95
POL_Wine iexplore -unregserver

POL_Wine_OverrideDLL native,builtin advpack iexplore.exe jscript mshtml shdocvw urlmon vbscript wininet

cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Internet Explorer/"
rm iexplore.exe

cd "$WINEPREFIX/drive_c/windows/system32" || POL_Debug_Fatal "Unable to switch to system32"

rm advpack.dll,inetcpl.cpl,mshtml.dll,schannel.dll,shdocvw.dll,urlmon.dll,vbscript.dll,wininet.dll


POL_Wine_WaitBefore "$TITLE"

cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Internet Explorer"
mkdir -p History
mkdir -p dcache

POL_Download "http://browsers-fr.mirrors.zensoft.net/ie/win32/1.0/Msie10.exe" "adb4c9f286600bd2889d3f756a76318d"

cabextract Msie10.exe
cabextract iexplore.cab

cat << EOF > ie1.reg
[HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer\Main]
"History_Directory"="C:\\Program Files\\Internet Explorer\\History"
"Start Page"="http://www.playonlinux.com/"
EOF
POL_Wine regedit ie1.reg

POL_Shortcut "iexplore.exe" "$TITLE"
POL_SetupWindow_Close
exit

Replies