├── iexplore.ico ├── App.config ├── Program.cs ├── LaunchIE.sln ├── Properties └── AssemblyInfo.cs └── LaunchIE.csproj /iexplore.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LesFerch/LaunchIE/HEAD/iexplore.ico -------------------------------------------------------------------------------- /App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- 1 | namespace LaunchIE 2 | { 3 | class Program 4 | { 5 | static void Main(string[] args) 6 | { 7 | SHDocVw.InternetExplorer oIE = new SHDocVw.InternetExplorer(); 8 | object oURL; 9 | oURL = "about:blank"; 10 | if (args.Length > 0) { oURL = args[0]; } 11 | oIE.Visible = true; 12 | oIE.Navigate2(ref oURL); 13 | } 14 | } 15 | } -------------------------------------------------------------------------------- /LaunchIE.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.6.33815.320 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LaunchIE", "LaunchIE.csproj", "{75A3DEDC-3F00-48D9-9FEE-3EF3304E41AA}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {75A3DEDC-3F00-48D9-9FEE-3EF3304E41AA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {75A3DEDC-3F00-48D9-9FEE-3EF3304E41AA}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {75A3DEDC-3F00-48D9-9FEE-3EF3304E41AA}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {75A3DEDC-3F00-48D9-9FEE-3EF3304E41AA}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {6E478852-FC21-4B5C-AC24-C463E350D5AA} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("LaunchIE")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("LaunchIE")] 13 | [assembly: AssemblyCopyright("LesFerch")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("75a3dedc-3f00-48d9-9fee-3ef3304e41aa")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /LaunchIE.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Debug 6 | AnyCPU 7 | {75A3DEDC-3F00-48D9-9FEE-3EF3304E41AA} 8 | WinExe 9 | LaunchIE 10 | LaunchIE 11 | v4.8 12 | 512 13 | true 14 | true 15 | 16 | 17 | AnyCPU 18 | true 19 | full 20 | false 21 | bin\Debug\ 22 | DEBUG;TRACE 23 | prompt 24 | 4 25 | 26 | 27 | AnyCPU 28 | pdbonly 29 | true 30 | bin\Release\ 31 | TRACE 32 | prompt 33 | 4 34 | 35 | 36 | iexplore.ico 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | {EAB22AC0-30C1-11CF-A7EB-0000C05BAE0B} 64 | 1 65 | 1 66 | 0 67 | tlbimp 68 | False 69 | True 70 | 71 | 72 | 73 | 74 | 75 | 76 | --------------------------------------------------------------------------------