如何将一个exe文件作为Windows服务运行?

huangapple go评论107阅读模式
英文:

How to run a exe file as a window service?

问题

我想将一个exe文件作为一个Windows服务运行。

是否有任何golang开源项目或golang的API可以实现这个功能?

谢谢!

英文:

I want to run a exe file as a window service.

Is there any golang open source or any golang api to do this?

Thanks!

答案1

得分: 4

阅读文档请点击这里:https://godoc.org/golang.org/x/sys/windows/svc

导入 "golang.org/x/sys/windows/svc",

然后使用

func Run(name string, handler Handler) error

来启动它。

在我提供的链接页面上还有很多其他有用的函数,你应该一定要查看一下。

英文:

Read the Documentation Here: https://godoc.org/golang.org/x/sys/windows/svc

import "golang.org/x/sys/windows/svc"

and then use

func Run(name string, handler Handler) error

to start it.

There's a whole lot of other functions that will be useful to you on the page I linked, so you should definitely look at that.

答案2

得分: -1

你可以使用exec包来运行外部命令,例如:

import "os/exec"

cmd := exec.Command("your_exe_file")
if err := cmd.Start(); err != nil{
    log.Fatal(err)
}

更多信息请参考https://golang.org/pkg/os/exec/

英文:

You can use exec Package that runs external commands,
for example:

import "os/exec"

cmd := exec.Command("your_exe_file")
if err := cmd.Start(); err != nil{
    log.Fatal(err)
}

for more info https://golang.org/pkg/os/exec/

huangapple
  • 本文由 发表于 2016年3月25日 10:01:53
  • 转载请务必保留本文链接:https://go.coder-hub.com/36212944.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定