zoukankan      html  css  js  c++  java
  • Windows服务开发之安装程序的设置

    Install.bat   安装服务:这里需要指定可执行文件名称(exe)
    C:\Windows\Microsoft.NET\Framework\v2.0.50727\InstallUtil /LogFile="" /InstallStateDir="" WSSetupWithBat.exe
    pause

    Start.bat     启动服务:这里指定的是图片设置的服务名称
    net start WSSetupWithBat
    pause

    Stop.bat      停止服务:这里指定的是图片设置的服务名称
    net stop WSSetupWithBat

    Uninstall.bat 卸载服务:这里还是需要指定可执行文件的名称(exe)
    C:\Windows\Microsoft.NET\Framework\v2.0.50727\InstallUtil /u /LogFile="" /InstallStateDir="" WSSetupWithBat.exe
    pause

  • 相关阅读:
    mysql资料
    MySQL启动与关闭
    poj 2778 DNA Sequence
    poj 1625 Censored!
    zoj 3228 Searching the String
    hdu 4605 Magic Ball Game
    hdu 4610 Cards
    SGU 439 A Secret Book
    NOI2013
    NOI2014
  • 原文地址:https://www.cnblogs.com/flish/p/1749185.html
Copyright © 2011-2022 走看看