如何使用Windows服务调用浏览器选项卡

时间:2019-04-25 11:51:42

标签: c# .net model-view-controller

从其中创建Windows服务应用程序,我需要打开浏览器选项卡/窗口。有趣的VS 2017和Windows 10。

1 个答案:

答案 0 :(得分:0)

如果您只想启动浏览器并打开网站,则可以使用:

     try
        {
            using (Process myProcess = new Process())
            {
                myProcess.StartInfo.UseShellExecute = false;
                myProcess.StartInfo.FileName = "C:\\Program Files\\Internet Explorer\\iexplore.exe";
                myProcess.StartInfo.CreateNoWindow = true;
                myProcess.Start();

            }
        }
        catch (Exception e)
        {
            Console.WriteLine(e.Message);
        }

我刚试过,它正在工作。您可以将环境变量用于IE的路径。