苏飞论坛

标题: C# Windows Service服务程序自动下载exe并执行,如何实现? [打印本页]

作者: youqian    时间: 2016-5-31 12:51
标题: C# Windows Service服务程序自动下载exe并执行,如何实现?
本帖最后由 youqian 于 2016-5-31 13:30 编辑

C# Windows Service服务程序自动下载exe并执行,如何实现?
并且隔离6小时自动执行一次,电脑开机又执行一次,只要服务不关,就一直下去。
[C#] 纯文本查看 复制代码
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Diagnostics;
using System.Linq;
using System.ServiceProcess;
using System.Text;

namespace Service
{
    public partial class Service1 : ServiceBase
    {
        public Service1()
        {
            InitializeComponent();
        }

        protected override void OnStart(string[] args)//开启服务时要执行的方法
        {

        }

        protected override void OnStop()//停止服务时要执行的方法
        {

        }
    }
}


作者: 站长苏飞    时间: 2016-5-31 16:02
下载会吧,调用更简单直接这样就行了
[C#] 纯文本查看 复制代码
ProcessStartInfo startInfo = new ProcessStartInfo("IExplore.exe");
            Process process1 = new Process();
            process1.StartInfo = startInfo;
            process1.Start();





欢迎光临 苏飞论坛 (http://www.sufeinet.com/) Powered by Discuz! X3.4