From 6dbfbcee63b7cde74e4284b0a089aff9876149b8 Mon Sep 17 00:00:00 2001 From: Charles Sharma <___@___.___> Date: Tue, 31 May 2022 15:02:37 -0600 Subject: [PATCH] first commit --- (RunMe) Install.cmd | 15 +++++++++++++++ patch.vbs | 3 +++ read1st.txt | 6 ++++++ 3 files changed, 24 insertions(+) create mode 100644 (RunMe) Install.cmd create mode 100644 patch.vbs create mode 100644 read1st.txt diff --git a/(RunMe) Install.cmd b/(RunMe) Install.cmd new file mode 100644 index 0000000..e583749 --- /dev/null +++ b/(RunMe) Install.cmd @@ -0,0 +1,15 @@ +@echo off + +copy patch.vbs %userprofile%\IE11.vbs + +set SCRIPT="%TEMP%\%RANDOM%-%RANDOM%-%RANDOM%-%RANDOM%.vbs" + +echo Set oWS = WScript.CreateObject("WScript.Shell") >> %SCRIPT% +echo sLinkFile = "%appdata%\Microsoft\Windows\Start Menu\Programs\Internet Explorer.lnk" >> %SCRIPT% +echo Set oLink = oWS.CreateShortcut(sLinkFile) >> %SCRIPT% +echo oLink.TargetPath = "%userprofile%\IE11.vbs" >> %SCRIPT% +echo oLink.Save >> %SCRIPT% + +cscript /nologo %SCRIPT% +del %SCRIPT% +pause \ No newline at end of file diff --git a/patch.vbs b/patch.vbs new file mode 100644 index 0000000..9d23c1b --- /dev/null +++ b/patch.vbs @@ -0,0 +1,3 @@ +Set IE = CreateObject("InternetExplorer.Application") + +IE.Visible = True \ No newline at end of file diff --git a/read1st.txt b/read1st.txt new file mode 100644 index 0000000..3cae105 --- /dev/null +++ b/read1st.txt @@ -0,0 +1,6 @@ +--- +IEPatch + for Windows 11 +--- + +Windows 11 removed Internet Explorer from the system. But there is a way to open it, and it uses IE's API. Simply run the Run Me script, and then you can find Internet Explorer in the Start Menu. **Although it looks broken, you can type addresses into the URL box.** \ No newline at end of file