From d2d1d6b1613e56703d47ee01d2eb4e65fde8d6f9 Mon Sep 17 00:00:00 2001 From: Zemogiter Date: Tue, 29 May 2018 19:40:13 +0200 Subject: [PATCH 01/19] Update Internet Explorer 7.0 Fixes #627 --- .../Internet/Internet Explorer 7.0/Online/script.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Applications/Internet/Internet Explorer 7.0/Online/script.js b/Applications/Internet/Internet Explorer 7.0/Online/script.js index 62f8432dfb..c535ee2da8 100644 --- a/Applications/Internet/Internet Explorer 7.0/Online/script.js +++ b/Applications/Internet/Internet Explorer 7.0/Online/script.js @@ -20,7 +20,8 @@ var installerImplementation = { .version(LATEST_STABLE_VERSION) .distribution("upstream") .architecture("x86") - .prefix("InternetExplorer7") + .prefix(this._name, this._wineDistribution, this._wineArchitecture, this._wineVersion) + .luna() .create() .sandbox() .run("iexplore", ["-unregserver"]) @@ -31,6 +32,8 @@ var installerImplementation = { ]) .set("builtin", ["updspapi"]) .do(); + + wine.run(tempFile, [], null, false, true); ["itircl", "itss", "jscript", "mlang", "mshtml", "msimtf", "shdoclc", "shdocvw", "shlwapi", "urlmon"] .forEach(function (dll) { @@ -235,4 +238,4 @@ var installerImplementation = { }; /* exported Installer */ -var Installer = Java.extend(org.phoenicis.scripts.Installer, installerImplementation); \ No newline at end of file +var Installer = Java.extend(org.phoenicis.scripts.Installer, installerImplementation); From 1cc875eb98a20d385e6dc8bc19234bd131cf4bc5 Mon Sep 17 00:00:00 2001 From: Zemogiter Date: Wed, 30 May 2018 18:46:48 +0200 Subject: [PATCH 02/19] Update script.js Attempting to fix trailing space error and tempFile not being defined anywhere. --- Applications/Internet/Internet Explorer 7.0/Online/script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Applications/Internet/Internet Explorer 7.0/Online/script.js b/Applications/Internet/Internet Explorer 7.0/Online/script.js index c535ee2da8..eb0a10b5b0 100644 --- a/Applications/Internet/Internet Explorer 7.0/Online/script.js +++ b/Applications/Internet/Internet Explorer 7.0/Online/script.js @@ -33,7 +33,7 @@ var installerImplementation = { .set("builtin", ["updspapi"]) .do(); - wine.run(tempFile, [], null, false, true); + wine.run(setupFile, [], null, false, true); ["itircl", "itss", "jscript", "mlang", "mshtml", "msimtf", "shdoclc", "shdocvw", "shlwapi", "urlmon"] .forEach(function (dll) { From 344c8018e149579f11dd1a6d7f80d55a08401d42 Mon Sep 17 00:00:00 2001 From: Zemogiter Date: Wed, 30 May 2018 19:04:54 +0200 Subject: [PATCH 03/19] Update script.js Removed distribution() and architecture() parameters. --- Applications/Internet/Internet Explorer 7.0/Online/script.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/Applications/Internet/Internet Explorer 7.0/Online/script.js b/Applications/Internet/Internet Explorer 7.0/Online/script.js index eb0a10b5b0..58b93407fa 100644 --- a/Applications/Internet/Internet Explorer 7.0/Online/script.js +++ b/Applications/Internet/Internet Explorer 7.0/Online/script.js @@ -18,8 +18,6 @@ var installerImplementation = { var wine = new Wine() .wizard(setupWizard) .version(LATEST_STABLE_VERSION) - .distribution("upstream") - .architecture("x86") .prefix(this._name, this._wineDistribution, this._wineArchitecture, this._wineVersion) .luna() .create() @@ -32,7 +30,6 @@ var installerImplementation = { ]) .set("builtin", ["updspapi"]) .do(); - wine.run(setupFile, [], null, false, true); ["itircl", "itss", "jscript", "mlang", "mshtml", "msimtf", "shdoclc", "shdocvw", "shlwapi", "urlmon"] From 6c02fc2067d19316b78f7a6fd1daf5e1082bf8eb Mon Sep 17 00:00:00 2001 From: Zemogiter Date: Wed, 30 May 2018 19:19:11 +0200 Subject: [PATCH 04/19] Update script.js Fixes for the implementation of #627 --- Applications/Internet/Internet Explorer 7.0/Online/script.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Applications/Internet/Internet Explorer 7.0/Online/script.js b/Applications/Internet/Internet Explorer 7.0/Online/script.js index 58b93407fa..b548d07d08 100644 --- a/Applications/Internet/Internet Explorer 7.0/Online/script.js +++ b/Applications/Internet/Internet Explorer 7.0/Online/script.js @@ -22,15 +22,13 @@ var installerImplementation = { .luna() .create() .sandbox() - .run("iexplore", ["-unregserver"]) - .wait() + .run("iexplore", ["-unregserver"], null, false, true); .overrideDLL() .set("native,builtin", [ "iexplore.exe", "itircl", "itss", "jscript", "mshtml", "msimtf", "shdoclc", "shdocvw", "shlwapi", "urlmon", "xmllite" ]) .set("builtin", ["updspapi"]) .do(); - wine.run(setupFile, [], null, false, true); ["itircl", "itss", "jscript", "mlang", "mshtml", "msimtf", "shdoclc", "shdocvw", "shlwapi", "urlmon"] .forEach(function (dll) { From c0deb45fef0d5d05fbf3ae617f0274102bff47c0 Mon Sep 17 00:00:00 2001 From: Zemogiter Date: Wed, 30 May 2018 19:36:13 +0200 Subject: [PATCH 05/19] Update script.js Removed .luna() and indentation fixes. --- .../Internet/Internet Explorer 7.0/Online/script.js | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/Applications/Internet/Internet Explorer 7.0/Online/script.js b/Applications/Internet/Internet Explorer 7.0/Online/script.js index b548d07d08..bd079edc2b 100644 --- a/Applications/Internet/Internet Explorer 7.0/Online/script.js +++ b/Applications/Internet/Internet Explorer 7.0/Online/script.js @@ -19,16 +19,15 @@ var installerImplementation = { .wizard(setupWizard) .version(LATEST_STABLE_VERSION) .prefix(this._name, this._wineDistribution, this._wineArchitecture, this._wineVersion) - .luna() .create() - .sandbox() - .run("iexplore", ["-unregserver"], null, false, true); - .overrideDLL() - .set("native,builtin", [ + .sandbox(); + wine.run("iexplore", ["-unregserver"], null, false, true); + wine.overrideDLL() + .set("native,builtin", [ "iexplore.exe", "itircl", "itss", "jscript", "mshtml", "msimtf", "shdoclc", "shdocvw", "shlwapi", "urlmon", "xmllite" ]) - .set("builtin", ["updspapi"]) - .do(); + .set("builtin", ["updspapi"]) + .do(); ["itircl", "itss", "jscript", "mlang", "mshtml", "msimtf", "shdoclc", "shdocvw", "shlwapi", "urlmon"] .forEach(function (dll) { From 2376ac17d67aaef605c6468bb530bd31382e02ec Mon Sep 17 00:00:00 2001 From: Zemogiter Date: Wed, 30 May 2018 19:52:32 +0200 Subject: [PATCH 06/19] Update script.js Another indentation fixes. --- .../Internet/Internet Explorer 7.0/Online/script.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Applications/Internet/Internet Explorer 7.0/Online/script.js b/Applications/Internet/Internet Explorer 7.0/Online/script.js index bd079edc2b..9aec59506f 100644 --- a/Applications/Internet/Internet Explorer 7.0/Online/script.js +++ b/Applications/Internet/Internet Explorer 7.0/Online/script.js @@ -21,13 +21,13 @@ var installerImplementation = { .prefix(this._name, this._wineDistribution, this._wineArchitecture, this._wineVersion) .create() .sandbox(); - wine.run("iexplore", ["-unregserver"], null, false, true); - wine.overrideDLL() - .set("native,builtin", [ + wine.run("iexplore", ["-unregserver"], null, false, true); + wine.overrideDLL() + .set("native,builtin", [ "iexplore.exe", "itircl", "itss", "jscript", "mshtml", "msimtf", "shdoclc", "shdocvw", "shlwapi", "urlmon", "xmllite" ]) - .set("builtin", ["updspapi"]) - .do(); + .set("builtin", ["updspapi"]) + .do(); ["itircl", "itss", "jscript", "mlang", "mshtml", "msimtf", "shdoclc", "shdocvw", "shlwapi", "urlmon"] .forEach(function (dll) { From be5d3f5dedf844fa0c846aec0926a8e2addceac5 Mon Sep 17 00:00:00 2001 From: Zemogiter Date: Tue, 5 Jun 2018 16:44:19 +0200 Subject: [PATCH 07/19] Update script.js Specified parameters in .prefix --- Applications/Internet/Internet Explorer 7.0/Online/script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Applications/Internet/Internet Explorer 7.0/Online/script.js b/Applications/Internet/Internet Explorer 7.0/Online/script.js index 9aec59506f..f966c7bc58 100644 --- a/Applications/Internet/Internet Explorer 7.0/Online/script.js +++ b/Applications/Internet/Internet Explorer 7.0/Online/script.js @@ -18,7 +18,7 @@ var installerImplementation = { var wine = new Wine() .wizard(setupWizard) .version(LATEST_STABLE_VERSION) - .prefix(this._name, this._wineDistribution, this._wineArchitecture, this._wineVersion) + .prefix("InternetExplorer7", "upstream", "x86", LATEST_STABLE_VERSION) .create() .sandbox(); wine.run("iexplore", ["-unregserver"], null, false, true); From 353badc40c1d0033d723c5b010a6887f5bf8fc99 Mon Sep 17 00:00:00 2001 From: Zemogiter Date: Wed, 5 Sep 2018 20:32:18 +0200 Subject: [PATCH 08/19] Update script.js --- Applications/Internet/Internet Explorer 7.0/Online/script.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Applications/Internet/Internet Explorer 7.0/Online/script.js b/Applications/Internet/Internet Explorer 7.0/Online/script.js index f966c7bc58..4d229ae291 100644 --- a/Applications/Internet/Internet Explorer 7.0/Online/script.js +++ b/Applications/Internet/Internet Explorer 7.0/Online/script.js @@ -1,3 +1,4 @@ +include(["engines", "wine", "quick_script", "quick_script"]); include(["utils", "functions", "net", "resource"]); include(["engines", "wine", "engine", "object"]); include(["engines", "wine", "plugins", "override_dll"]); @@ -17,8 +18,8 @@ var installerImplementation = { var wine = new Wine() .wizard(setupWizard) - .version(LATEST_STABLE_VERSION) - .prefix("InternetExplorer7", "upstream", "x86", LATEST_STABLE_VERSION) + .version(LATEST_DEVELOPMENT_VERSION) + .prefix("InternetExplorer7", "upstream", "x86", LATEST_DEVELOPMENT_VERSION) .create() .sandbox(); wine.run("iexplore", ["-unregserver"], null, false, true); From af384c19e9d904175a5fb3b7fb2c1e0032c76987 Mon Sep 17 00:00:00 2001 From: Zemogiter Date: Thu, 6 Sep 2018 23:07:13 +0200 Subject: [PATCH 09/19] Update script.js Changes the parameters in application var. --- Applications/Internet/Internet Explorer 7.0/Online/script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Applications/Internet/Internet Explorer 7.0/Online/script.js b/Applications/Internet/Internet Explorer 7.0/Online/script.js index 4d229ae291..5443847f25 100644 --- a/Applications/Internet/Internet Explorer 7.0/Online/script.js +++ b/Applications/Internet/Internet Explorer 7.0/Online/script.js @@ -11,7 +11,7 @@ include(["engines", "wine", "verbs", "sandbox"]); var installerImplementation = { run: function () { var appsManager = Bean("repositoryManager"); - var application = appsManager.getApplication(["Applications", "Internet", "Internet Explorer 7.0"]); + var application = appsManager.getApplication(["applications", "internet", "internet_explorer_7_0"]); var setupWizard = SetupWizard(InstallationType.APPS, "Internet Explorer 7.0", application.getMainMiniature()); setupWizard.presentation("Internet Explorer 7.0", "Microsoft", "http://www.microsoft.com", "Quentin PÂRIS"); From 823b038822456076b88ddbeeb63e579ce51ed6a9 Mon Sep 17 00:00:00 2001 From: Zemogiter Date: Thu, 6 Sep 2018 23:16:07 +0200 Subject: [PATCH 10/19] Update script.js Changed the wine variable to match the example on https://phoenicisorg.github.io/scripts/Develop/script-js/#custominstallerscript --- Applications/Internet/Internet Explorer 7.0/Online/script.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Applications/Internet/Internet Explorer 7.0/Online/script.js b/Applications/Internet/Internet Explorer 7.0/Online/script.js index 5443847f25..973bbc0d40 100644 --- a/Applications/Internet/Internet Explorer 7.0/Online/script.js +++ b/Applications/Internet/Internet Explorer 7.0/Online/script.js @@ -18,8 +18,9 @@ var installerImplementation = { var wine = new Wine() .wizard(setupWizard) - .version(LATEST_DEVELOPMENT_VERSION) - .prefix("InternetExplorer7", "upstream", "x86", LATEST_DEVELOPMENT_VERSION) + .architecture("x86") + .version(LATEST_STABLE_VERSION) + .prefix("Internet Explorer 7.0") .create() .sandbox(); wine.run("iexplore", ["-unregserver"], null, false, true); From c6b2975f7577610b212a95639193e9eeed6e2aee Mon Sep 17 00:00:00 2001 From: plata Date: Fri, 7 Sep 2018 18:23:03 +0200 Subject: [PATCH 11/19] Fix prefix creation --- Applications/Internet/Internet Explorer 7.0/Online/script.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Applications/Internet/Internet Explorer 7.0/Online/script.js b/Applications/Internet/Internet Explorer 7.0/Online/script.js index 973bbc0d40..6a08e47b4f 100644 --- a/Applications/Internet/Internet Explorer 7.0/Online/script.js +++ b/Applications/Internet/Internet Explorer 7.0/Online/script.js @@ -18,9 +18,7 @@ var installerImplementation = { var wine = new Wine() .wizard(setupWizard) - .architecture("x86") - .version(LATEST_STABLE_VERSION) - .prefix("Internet Explorer 7.0") + .prefix("Internet Explorer 7.0", "upstream", "x86", LATEST_STABLE_VERSION) .create() .sandbox(); wine.run("iexplore", ["-unregserver"], null, false, true); From e5cbabe74dcebfa5be98507c6acc08fce574ce5b Mon Sep 17 00:00:00 2001 From: Zemogiter Date: Sat, 8 Sep 2018 11:52:47 +0200 Subject: [PATCH 12/19] Update script.js Trying to set the OS version to XP --- Applications/Internet/Internet Explorer 7.0/Online/script.js | 1 + 1 file changed, 1 insertion(+) diff --git a/Applications/Internet/Internet Explorer 7.0/Online/script.js b/Applications/Internet/Internet Explorer 7.0/Online/script.js index 6a08e47b4f..d15e91244b 100644 --- a/Applications/Internet/Internet Explorer 7.0/Online/script.js +++ b/Applications/Internet/Internet Explorer 7.0/Online/script.js @@ -19,6 +19,7 @@ var installerImplementation = { var wine = new Wine() .wizard(setupWizard) .prefix("Internet Explorer 7.0", "upstream", "x86", LATEST_STABLE_VERSION) + .windowsVersion("winxp") .create() .sandbox(); wine.run("iexplore", ["-unregserver"], null, false, true); From 7b05e462cfb257b4eed66b0c9ac2ff2cc453730c Mon Sep 17 00:00:00 2001 From: Zemogiter Date: Sat, 8 Sep 2018 12:33:23 +0200 Subject: [PATCH 13/19] Update script.js Added an missing plugin --- Applications/Internet/Internet Explorer 7.0/Online/script.js | 1 + 1 file changed, 1 insertion(+) diff --git a/Applications/Internet/Internet Explorer 7.0/Online/script.js b/Applications/Internet/Internet Explorer 7.0/Online/script.js index d15e91244b..21d995e10b 100644 --- a/Applications/Internet/Internet Explorer 7.0/Online/script.js +++ b/Applications/Internet/Internet Explorer 7.0/Online/script.js @@ -7,6 +7,7 @@ include(["utils", "functions", "filesystem", "files"]); include(["engines", "wine", "shortcuts", "wine"]); include(["utils", "functions", "apps", "resources"]); include(["engines", "wine", "verbs", "sandbox"]); +include(["engines", "wine", "plugins", "windows_version"]); var installerImplementation = { run: function () { From 7abbb7bf64f3db35db28c861bfac7f031810d247 Mon Sep 17 00:00:00 2001 From: Zemogiter Date: Sat, 8 Sep 2018 13:50:29 +0200 Subject: [PATCH 14/19] Update script.js --- Applications/Internet/Internet Explorer 7.0/Online/script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Applications/Internet/Internet Explorer 7.0/Online/script.js b/Applications/Internet/Internet Explorer 7.0/Online/script.js index 21d995e10b..076ee153d0 100644 --- a/Applications/Internet/Internet Explorer 7.0/Online/script.js +++ b/Applications/Internet/Internet Explorer 7.0/Online/script.js @@ -20,7 +20,7 @@ var installerImplementation = { var wine = new Wine() .wizard(setupWizard) .prefix("Internet Explorer 7.0", "upstream", "x86", LATEST_STABLE_VERSION) - .windowsVersion("winxp") + .windowsVersion("winxp", "sp2") .create() .sandbox(); wine.run("iexplore", ["-unregserver"], null, false, true); From 5851ddfc17229724c276a15531198b104b96aa21 Mon Sep 17 00:00:00 2001 From: Zemogiter Date: Sat, 22 Sep 2018 13:33:13 +0200 Subject: [PATCH 15/19] Update script.js Changed wine version to 3.0.2 for testing --- Applications/Internet/Internet Explorer 7.0/Online/script.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Applications/Internet/Internet Explorer 7.0/Online/script.js b/Applications/Internet/Internet Explorer 7.0/Online/script.js index 076ee153d0..e803f6f250 100644 --- a/Applications/Internet/Internet Explorer 7.0/Online/script.js +++ b/Applications/Internet/Internet Explorer 7.0/Online/script.js @@ -19,7 +19,7 @@ var installerImplementation = { var wine = new Wine() .wizard(setupWizard) - .prefix("Internet Explorer 7.0", "upstream", "x86", LATEST_STABLE_VERSION) + .prefix("Internet Explorer 7.0", "upstream", "x86", "3.0.2") .windowsVersion("winxp", "sp2") .create() .sandbox(); @@ -198,7 +198,8 @@ var installerImplementation = { .name(ie7installer) .get(); - wine.run(setupFile).wait(); + wine.run(setupFile, [], null, false, true); + wine.wait(); var librairiesToRegister = ["actxprxy.dll", "browseui.dll", "browsewm.dll", "cdfview.dll", "ddraw.dll", "dispex.dll", "dsound.dll", "iedkcs32.dll", "iepeers.dll", "iesetup.dll", "imgutil.dll", From fdcd1b4924e2da419bd05aa9da87b6caba33ed4d Mon Sep 17 00:00:00 2001 From: Zemogiter Date: Sat, 22 Sep 2018 14:22:58 +0200 Subject: [PATCH 16/19] Update script.js Attempting to fix the "newer version installed" error. --- .../Internet/Internet Explorer 7.0/Online/script.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Applications/Internet/Internet Explorer 7.0/Online/script.js b/Applications/Internet/Internet Explorer 7.0/Online/script.js index e803f6f250..bd78abc3c1 100644 --- a/Applications/Internet/Internet Explorer 7.0/Online/script.js +++ b/Applications/Internet/Internet Explorer 7.0/Online/script.js @@ -19,8 +19,8 @@ var installerImplementation = { var wine = new Wine() .wizard(setupWizard) - .prefix("Internet Explorer 7.0", "upstream", "x86", "3.0.2") - .windowsVersion("winxp", "sp2") + .prefix("Internet Explorer 7.0", "upstream", "x86", LATEST_STABLE_VERSION) + .windowsVersion("winxp", "sp3") .create() .sandbox(); wine.run("iexplore", ["-unregserver"], null, false, true); @@ -30,7 +30,8 @@ var installerImplementation = { ]) .set("builtin", ["updspapi"]) .do(); - + // delete existing IE, otherwise installer will abort with "newer IE installed" + remove(wine.prefixDirectory() + "/drive_c/" + wine.programFiles() + "/Internet Explorer/iexplore.exe"); ["itircl", "itss", "jscript", "mlang", "mshtml", "msimtf", "shdoclc", "shdocvw", "shlwapi", "urlmon"] .forEach(function (dll) { remove(wine.prefixDirectory() + "/drive_c/windows/system32/" + dll + ".dll"); From 22ec99fa6ccf270768fbb73cb8fc33b24aa1eab4 Mon Sep 17 00:00:00 2001 From: plata Date: Sat, 22 Sep 2018 14:29:36 +0200 Subject: [PATCH 17/19] Set Windows version before installation and fix shortcut creation --- .../Internet/Internet Explorer 7.0/Online/script.js | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Applications/Internet/Internet Explorer 7.0/Online/script.js b/Applications/Internet/Internet Explorer 7.0/Online/script.js index bd78abc3c1..21f25fc2c2 100644 --- a/Applications/Internet/Internet Explorer 7.0/Online/script.js +++ b/Applications/Internet/Internet Explorer 7.0/Online/script.js @@ -19,8 +19,7 @@ var installerImplementation = { var wine = new Wine() .wizard(setupWizard) - .prefix("Internet Explorer 7.0", "upstream", "x86", LATEST_STABLE_VERSION) - .windowsVersion("winxp", "sp3") + .prefix("InternetExplorer7", "upstream", "x86", LATEST_STABLE_VERSION) .create() .sandbox(); wine.run("iexplore", ["-unregserver"], null, false, true); @@ -30,6 +29,7 @@ var installerImplementation = { ]) .set("builtin", ["updspapi"]) .do(); + // delete existing IE, otherwise installer will abort with "newer IE installed" remove(wine.prefixDirectory() + "/drive_c/" + wine.programFiles() + "/Internet Explorer/iexplore.exe"); ["itircl", "itss", "jscript", "mlang", "mshtml", "msimtf", "shdoclc", "shdocvw", "shlwapi", "urlmon"] @@ -199,6 +199,8 @@ var installerImplementation = { .name(ie7installer) .get(); + wine.windowsVersion("winxp", "sp3"); + wine.wait(); wine.run(setupFile, [], null, false, true); wine.wait(); @@ -228,7 +230,7 @@ var installerImplementation = { .name("Internet Explorer 7.0") .prefix("InternetExplorer7") .search("iexplore.exe") - .miniature(["Applications", "Internet", "Internet Explorer 7.0"]) + .miniature(["applications", "internet", "internet_explorer_7_0"]) .create(); setupWizard.close(); From b46924afe58e08fb4893b16a588ef12271aeee3b Mon Sep 17 00:00:00 2001 From: plata Date: Sat, 22 Sep 2018 14:35:36 +0200 Subject: [PATCH 18/19] Fix override for "iexplore.exe" --- Applications/Internet/Internet Explorer 7.0/Online/script.js | 1 + 1 file changed, 1 insertion(+) diff --git a/Applications/Internet/Internet Explorer 7.0/Online/script.js b/Applications/Internet/Internet Explorer 7.0/Online/script.js index 21f25fc2c2..3d296636b1 100644 --- a/Applications/Internet/Internet Explorer 7.0/Online/script.js +++ b/Applications/Internet/Internet Explorer 7.0/Online/script.js @@ -27,6 +27,7 @@ var installerImplementation = { .set("native,builtin", [ "iexplore.exe", "itircl", "itss", "jscript", "mshtml", "msimtf", "shdoclc", "shdocvw", "shlwapi", "urlmon", "xmllite" ]) + .set("native", ["iexplore.exe"]) .set("builtin", ["updspapi"]) .do(); From c321964023723273ffb7ef656ccfbc22a02aef2b Mon Sep 17 00:00:00 2001 From: plata Date: Sat, 22 Sep 2018 14:37:16 +0200 Subject: [PATCH 19/19] Delete duplicate --- Applications/Internet/Internet Explorer 7.0/Online/script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Applications/Internet/Internet Explorer 7.0/Online/script.js b/Applications/Internet/Internet Explorer 7.0/Online/script.js index 3d296636b1..0ada77a96f 100644 --- a/Applications/Internet/Internet Explorer 7.0/Online/script.js +++ b/Applications/Internet/Internet Explorer 7.0/Online/script.js @@ -25,7 +25,7 @@ var installerImplementation = { wine.run("iexplore", ["-unregserver"], null, false, true); wine.overrideDLL() .set("native,builtin", [ - "iexplore.exe", "itircl", "itss", "jscript", "mshtml", "msimtf", "shdoclc", "shdocvw", "shlwapi", "urlmon", "xmllite" + "itircl", "itss", "jscript", "mshtml", "msimtf", "shdoclc", "shdocvw", "shlwapi", "urlmon", "xmllite" ]) .set("native", ["iexplore.exe"]) .set("builtin", ["updspapi"])