mirror of
https://github.com/tengge1/ShadowEditor.git
synced 2026-01-18 15:02:09 +00:00
55 lines
1.3 KiB
Go
55 lines
1.3 KiB
Go
// Copyright 2017-2020 The ShadowEditor Authors. All rights reserved.
|
|
// Use of this source code is governed by a MIT-style
|
|
// license that can be found in the LICENSE file.
|
|
//
|
|
// For more information, please visit: https://github.com/tengge1/ShadowEditor
|
|
// You can also visit: https://gitee.com/tengge1/ShadowEditor
|
|
|
|
// Reference URL: https://github.com/andrewkroh/sys/blob/master/windows/svc/example/manage.go
|
|
|
|
// +build windows
|
|
|
|
package win
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/spf13/cobra"
|
|
"github.com/tengge1/shadoweditor/cmd"
|
|
"golang.org/x/sys/windows/svc/mgr"
|
|
)
|
|
|
|
// startCmd start ShadowEditor service on Windows.
|
|
var startCmd = &cobra.Command{
|
|
Use: "start",
|
|
Short: "Start service on Windows",
|
|
Long: `Start service on Windows`,
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
if err := startService(ServiceName); err != nil {
|
|
fmt.Println(err.Error())
|
|
}
|
|
},
|
|
}
|
|
|
|
func init() {
|
|
cmd.AddCommand(startCmd)
|
|
}
|
|
|
|
func startService(name string) error {
|
|
m, err := mgr.Connect()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer m.Disconnect()
|
|
s, err := m.OpenService(name)
|
|
if err != nil {
|
|
return fmt.Errorf("could not access service: %v", err)
|
|
}
|
|
defer s.Close()
|
|
err = s.Start("is", "manual-started")
|
|
if err != nil {
|
|
return fmt.Errorf("could not start service: %v", err)
|
|
}
|
|
return nil
|
|
}
|