是否有任何快速的方法,给定一个可执行文件,创建一个Windows服务,当启动时,启动它?
当前回答
延伸(凯文·唐)回答。
步骤1:下载并解压缩nssm-2.24.zip
步骤2:从命令行类型:
C:\> nssm.exe install [servicename]
它将打开如下所示的GUI(示例是UT2003服务器),然后简单地浏览到:yourapplication.exe
更多信息:https://nssm.cc/usage
其他回答
我测试了一个很好的产品:AlwaysUp。不是免费的,但是有30天的试用期,所以你可以试一试。
许多现有的答案包括安装时的人工干预。这可能是一个容易出错的过程。如果您有许多可执行文件想要作为服务安装,那么您最不想做的事情就是在安装时手动执行它们。
对于上面描述的场景,我创建了serman,这是一个命令行工具,用于将可执行文件作为服务安装。您所需要编写的(只编写一次)是一个简单的服务配置文件以及可执行文件。运行
serman install <path_to_config_file>
将安装服务。Stdout和stderr都记录了日志。欲了解更多信息,请查看项目网站。
工作配置文件非常简单,如下所示。但它也有许多有用的特性,如下面的<env>和<persistent_env>。
<service>
<id>hello</id>
<name>hello</name>
<description>This service runs the hello application</description>
<executable>node.exe</executable>
<!--
{{dir}} will be expanded to the containing directory of your
config file, which is normally where your executable locates
-->
<arguments>"{{dir}}\hello.js"</arguments>
<logmode>rotate</logmode>
<!-- OPTIONAL FEATURE:
NODE_ENV=production will be an environment variable
available to your application, but not visible outside
of your application
-->
<env name="NODE_ENV" value="production"/>
<!-- OPTIONAL FEATURE:
FOO_SERVICE_PORT=8989 will be persisted as an environment
variable to the system.
-->
<persistent_env name="FOO_SERVICE_PORT" value="8989" />
</service>
与Sergii Pozharov的答案相同,但使用PowerShell cmdlet:
New-Service -Name "MyService" -BinaryPathName "C:\Path\to\myservice.exe"
参见New-Service了解更多定制。
这只适用于已经实现Windows服务API的可执行文件。
这些额外的东西证明是有用的。需要以管理员身份执行
sc create <service_name> binpath= "<binary_path>"
sc stop <service_name>
sc queryex <service_name>
sc delete <service_name>
如果您的服务名称有空格,请用引号括起来。
延伸(凯文·唐)回答。
步骤1:下载并解压缩nssm-2.24.zip
步骤2:从命令行类型:
C:\> nssm.exe install [servicename]
它将打开如下所示的GUI(示例是UT2003服务器),然后简单地浏览到:yourapplication.exe
更多信息:https://nssm.cc/usage
推荐文章
- 如何验证批处理文件中是否存在一个文件?
- XAMPP -端口80被PID 4的“无法打开进程”使用!12
- 为什么git在Windows下记不住我的密码
- Git克隆/拉不断冻结在“存储密钥在缓存?”
- 有没有替换Windows (Visual C)的unistd.h ?
- 从Windows批处理文件设置系统环境变量?
- 在Sublime Text 2中使用Ctrl+D进行多个选择时,我如何跳过匹配?
- #定义WIN32_LEAN_AND_MEAN具体排除了什么?
- 最好的轻量级web服务器(只有静态内容)的Windows
- npm犯错!错误:EPERM:操作不允许,重命名
- 崇高的文本从命令行
- 如何将MongoDB作为Windows服务运行?
- 如何保持Python脚本输出窗口打开?
- 使用.bat文件检查文件夹是否存在
- 如何查看Windows库(*.lib)的内容