通过代码动态创建Windows服务

Posted 静若清池,动如涟漪

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了通过代码动态创建Windows服务相关的知识,希望对你有一定的参考价值。

   开发完Windows服务后,一般通过如下命令进行注册Windows服务

@echo off
%SystemRoot%\Microsoft.NET\Framework64\v4.0.30319\installutil.exe %~dp0\服务程序.exe
pause

 除了脚本的方式,通过代码,也可以注册Windows服务:

      var ti = new TransactedInstaller();

            ti.Installers.Add(new ServiceProcessInstaller
            {
                Account = ServiceAccount.LocalSystem
            });

            ti.Installers.Add(new ServiceInstaller
            {
                DisplayName = displayName,
                ServiceName = serviceName,
                Description = description,
                //运行方式
                StartType = ServiceStartMode.Automatic
            });

            ti.Context = new InstallContext();

            ti.Context.Parameters["assemblypath"] = 要安装的Windows服务实现dll或exe路径;

            ti.Install(new Hashtable());

  

以上是关于通过代码动态创建Windows服务的主要内容,如果未能解决你的问题,请参考以下文章

RecyclerView holder中的Android Google Maps动态片段

scrapy按顺序启动多个爬虫代码片段(python3)

在android中动态创建选项卡并使用传入的参数加载片段

有没有办法使用相同的布局动态创建片段并向它们显示数据?

创建片段而不从 java 代码实例化它

片段中的按钮自定义视图