Home  >  Article  >  Backend Development  >  How to write a window scheduled shutdown in golang

How to write a window scheduled shutdown in golang

藏色散人
藏色散人forward
2021-02-04 14:17:042391browse

The following tutorial column will introduce to you how to write a window scheduled shutdown in golang. I hope it will be helpful to friends in need!

The code is as follows:

package mainimport (
    "flag"
    "fmt"
    "github.com/robfig/cron"
    "time")import (
    . "github.com/CodyGuo/win")var (
    arg string)func init() {
    flag.StringVar(&arg, "uFlags", "shutdown", "shutdown logoff reboot")}func main() {
    flag.Parse()

    c := cron.New(cron.WithSeconds())
    c.AddFunc("0 40 18 * * ?", shutdown)
    c.Start()
    select {}

    switch arg {
    case "logoff":
        logoff()
    case "reboot":
        reboot()
    case "shutdown":
        shutdown()
    default:
        fmt.Println("您输入的参数有误.")
    }}func Test(){
    fmt.Println(time.Now())}func logoff() {
    ExitWindowsEx(EWX_LOGOFF, 0)}func reboot() {
    getPrivileges()
    ExitWindowsEx(EWX_REBOOT, 0)}func shutdown() {
    getPrivileges()
    ExitWindowsEx(EWX_SHUTDOWN, 0)}func getPrivileges() {
    var hToken HANDLE    var tkp TOKEN_PRIVILEGES    OpenProcessToken(GetCurrentProcess(), TOKEN_ADJUST_PRIVILEGES|TOKEN_QUERY, &hToken)
    LookupPrivilegeValueA(nil, StringToBytePtr(SE_SHUTDOWN_NAME), &tkp.Privileges[0].Luid)
    tkp.PrivilegeCount = 1
    tkp.Privileges[0].Attributes = SE_PRIVILEGE_ENABLED    AdjustTokenPrivileges(hToken, false, &tkp, 0, nil, nil)}
How to write a window scheduled shutdown in golangcron expression
c.AddFunc("0 40 18 * * ?", shutdown)

The above is the detailed content of How to write a window scheduled shutdown in golang. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:learnku.com. If there is any infringement, please contact admin@php.cn delete