zoukankan      html  css  js  c++  java
  • 使用TopShelf做windows服务安装 ---安装参数解释

    转自:https://topshelf.readthedocs.io/en/latest/overview/commandline.html

    Topshelf Command-Line Reference

    Once a service has been created using Topshelf, an extensive command-line vocabulary is available which can be used to install, uninstall, start, and configure the service.

    The command-line help can be displayed at any time by entering myService.exe help on the command-line.

    Help Text

    The help text from the command line is shown below for easy reference.

    service.exe [verb] [-option:value] [-switch]

    run Runs the service from the command line (default)

    help or –help Displays help

    install Installs the service

    -username The username to run the service
    -password The password for the specified username
    -instance An instance name if registering the service multiple times
    --autostart The service should start automatically (default)
    --disabled The service should be set to disabled
    --manual The service should be started manually
    --delayed The service should start automatically (delayed)
    --localsystem Run the service with the local system account
    --localservice Run the service with the local service account
    --networkservice
      Run the service with the network service permission
    --interactive The service will prompt the user at installation for the service credentials
    --sudo Prompts for UAC if running on Vista/W7/2008
    -servicename The name that the service should use when installing
    -description The service description the service should use when installing. Eg: -description: MyService Eg: -description “My Service”
    -displayname The display name the the service should use when installing Eg: -displayname: MyService Eg: -displayname “My Service”

    start Starts the service if it is not already running

    -instance The instance to start

    stop Stops the service if it is running

    -instance The instance to stop

    uninstall Uninstalls the service

    -instance An instance name if registering the service multiple times
    --sudo Prompts for UAC if running on Vista/W7/2008

    Examples

    Basic Service Installation

    MyService.exe install -username:DOMAINServiceAccount -password:itsASecret -servicename:AwesomeService –autostart

    Service Installation with Quoted Arguments

    MyService.exe install -username “DOMAINService Account” -password:”Its A Secret” -servicename “Awesome Service” –autostart
  • 相关阅读:
    RedHat7安装NetCore环境并发布网站
    【WPF学习】第四十二章 透明
    细说枚举
    js获取ip地址,操作系统,浏览器版本等信息,可兼容
    js实现数据流(日志流,报警信息等)滚动展示,并分页(含实现demo)
    js实现点击copy,可兼容
    js实现htmlToWordDemo
    H5 web 存储之 Webstorage
    已发布的WEB项目,如何挂在服务器或者本机的IIS下
    Nuget打包没有注释显示
  • 原文地址:https://www.cnblogs.com/liyangLife/p/7248759.html
Copyright © 2011-2022 走看看