diff --git a/Internet Explorer/Disable Internet Explorer end of life upgrade notification update.reg b/Internet Explorer/Disable Internet Explorer end of life upgrade notification update.reg new file mode 100644 index 0000000..ade72d0 Binary files /dev/null and b/Internet Explorer/Disable Internet Explorer end of life upgrade notification update.reg differ diff --git a/Internet Explorer/Disable Welcome Screen.reg b/Internet Explorer/Disable Welcome Screen.reg new file mode 100644 index 0000000..441c5bb --- /dev/null +++ b/Internet Explorer/Disable Welcome Screen.reg @@ -0,0 +1,4 @@ +Windows Registry Editor Version 5.00 + +[HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Internet Explorer\Main] +"DisableFirstRunCustomize"=dword:00000001 \ No newline at end of file diff --git a/Internet Explorer/Turn Off Display all websites in IE Compatibility View.reg b/Internet Explorer/Turn Off Display all websites in IE Compatibility View.reg new file mode 100644 index 0000000..7fdf125 Binary files /dev/null and b/Internet Explorer/Turn Off Display all websites in IE Compatibility View.reg differ diff --git a/Internet Explorer/Turn On Display all websites in IE Compatibility View.reg b/Internet Explorer/Turn On Display all websites in IE Compatibility View.reg new file mode 100644 index 0000000..5130daa Binary files /dev/null and b/Internet Explorer/Turn On Display all websites in IE Compatibility View.reg differ diff --git a/Internet Explorer/Uninstall cmd.txt b/Internet Explorer/Uninstall cmd.txt new file mode 100644 index 0000000..ecbf7c7 --- /dev/null +++ b/Internet Explorer/Uninstall cmd.txt @@ -0,0 +1,36 @@ +# Thanks goes to: +http://blogs.msdn.com/b/askie/archive/2014/03/28/command-line-options-available-to-uninstall-internet-explorer.aspx + + +IE-10: + +FORFILES /P %WINDIR%\servicing\Packages /M Microsoft-Windows-InternetExplorer-*10.*.mum /c "cmd /c echo Uninstalling package @fname && start /w pkgmgr /up:@fname /quiet /norestart" + +If you get an error(s) during the process, ignore it by clicking OK on the pop up window(s). And when the blinking cursor appears next to C:/Windows/System32, +Reboot PC + +after reboot / go to Windows Updates .. check for updates.. locate IE 10 and IE11 and right click/Hide + + + +IE-11: + +FORFILES /P %WINDIR%\servicing\Packages /M Microsoft-Windows-InternetExplorer-*11.*.mum /c "cmd /c echo Uninstalling package @fname && start /w pkgmgr /up:@fname /quiet /norestart" + +If you get an error(s) during the process, ignore it by clicking OK on the pop up window(s). And when the blinking cursor appears next to C:/Windows/System32, +Reboot PC + + +OR: + +You list all your features using + +dism /online /get-features + +One of the features is Internet-Explorer-Optional-amd64, which you can remove with: + +dism /online /disable-feature /featurename:Internet-Explorer-Optional-amd64 + + + +After the reboot - go to Windows Updates - check for updates - locate IE 10/IE11 and right click/Hide! \ No newline at end of file