一般我們使用的工具都有自己註冊服務的方法,如我們公司產品okit用到的四個傢伙:
mysql
註冊:
$\bin\mysqld.exe --install $
解除安裝:
$\bin\mysqld.exe /remove $
apache
註冊:
解除安裝:
註冊:
$\bin\service.bat install $
解除安裝:
$\bin\service.bat remove $
openfire
註冊:
$\bin\openfire-service /install $
解除安裝:
$\bin\openfire-service /uninstall $
此外呢,可能還有一些沒有提供這種命令,我們可以用windows的乙個非常實用的命令來完成這項工作——sc
通用的服務操作命令sc
註冊:
sc create $ binpath= "$" start= auto
解除安裝:
sc delete $
關於這個命令可以參見這篇部落格
然後呢,關於啟動停止服務,除了萬能的sc之外,還可以用net命令
啟動停止服務net
啟動:
net start $
停止:
net stop $
註冊和解除安裝window服務
安裝程式工具 installutil.exe 安裝程式工具使您得以通過在執行指定程式集中的安裝程式元件來安裝和解除安裝伺服器資源。此工具與system.configuration.install 命名空間中的類一起工作。安轉的位置和路徑在 c windows microsoft.net framew...
Delphi服務程式註冊與解除安裝
delphi服務程式註冊與解除安裝 uses winsvc function installservice servicename,displayname,filename string boolean varscmanager,service thandle args pchar begin re...
Delphi服務程式註冊與解除安裝
delphi服務程式註冊與解除安裝 uses winsvc function installservice servicename,displayname,filename string boolean varscmanager,service thandle args pchar begin re...