
Well, if Microsoft is adding a checkbox to the Windows features in control panel we don’t need it. If it is working I will modify it to have an option to choose the correct version you need.
WIN INTERNET EXPLORER 7 DOWNLOAD DOWNLOAD
Note: this is a first version of my script that will download Internet Explorer 8 German for Windows Vista (x86) only. If not exists download-IE8.exe goto ERROR2Įcho Could not create executable to download IE8. "%WINDIR%\Microsoft.NET\Framework\v3.5\csc.exe" download-IE8.cs If exist download-IE8.cs del download-IE8.csĮcho using System.Net > download-IE8.csĮcho namespace Download_IE8 > download-IE8.csĮcho static void Main(string args) > download-IE8.csĮcho if (File.Exists("IE8-WindowsVista-x86-DEU.exe")) > download-IE8.csĮcho File.Delete("IE8-WindowsVista-x86-DEU.exe") > download-IE8.csĮcho HttpWebRequest request = (HttpWebRequest)WebRequest.Create(" ") > download-IE8.csĮcho request.UserAgent = "Mozilla/4.0 (compatible MSIE 7.0 Windows NT 6.1 )" > download-IE8.csĮcho request.AllowWriteStreamBuffering = false > download-IE8.csĮcho request.Timeout = 10000 > download-IE8.csĮcho using (Stream s = request.GetResponse().GetResponseStream()) > download-IE8.csĮcho FileStream fs = new FileStream("IE8-WindowsVista-x86-DEU.exe", FileMode.Create) > download-IE8.csĮcho byte read = new byte > download-IE8.csĮcho int count = s.Read(read, 0, read.Length) > download-IE8.csĮcho while (count != 0) > download-IE8.csĮcho fs.Write(read, 0, count) > download-IE8.csĮcho count = s.Read(read, 0, read.Length) > download-IE8.csĮcho Console.Write(".") > download-IE8.csĮcho Console.WriteLine() > download-IE8.csĮcho Console.WriteLine("Done.") > download-IE8.csĮcho (5000) > download-IE8.csĮcho ("IE8-WindowsVista-x86-DEU.exe") > download-IE8.csĮcho catch (Exception ex) > download-IE8.csĮcho Console.WriteLine("Error: " + ex.Message) > download-IE8.cs
WIN INTERNET EXPLORER 7 DOWNLOAD INSTALL
I’m not sure if there will be an option to install Internet Explorer from the setup DVD or if we can simple add this as a Windows feature in control panel.įollowing command line batch file will download Internet Explorer 8 off

Windows 7 RTM will be available in the next days and for all European users there will be no Internet Explorer 8.
