sc命令,與「服務控制器」和已安裝裝置進行通訊。sc.exe 檢索和設定有關服務的控制資訊。可以使用 sc.exe 來測試和除錯服務程式。可以設定儲存在登錄檔中的服務屬性,以控制如何在啟動時啟動服務應用程式,以及如何將其作為後台程式執行。sc.exe 的引數可以配置指定的服務,檢索當前服務的狀態,也可以停止和啟動服務。可以建立批處理檔案來呼叫不同的 sc.exe 命令,以自動啟動或關閉服務序列。sc.exe 提供的功能類似於「控制面板」中「管理工具」項中的「服務」。
常用命令:
檢視服務資訊:sc query [servicename]
建立服務:sc create [service name] [bin path]
更改服務配置:sc config [service name]
刪除服務:sc delete [service name]
ex.[code]建立服務:
sc create svnservice binpath= 「d:\subversion\bin\svnserver –service」 displayname= 「svnservice」 depend= tcpip
設定為自啟動
sc config svnservice start= auto
啟動服務 sc start svnservice
or net start svnservice
[/code]
更多幫助可以在執行時檢視命令幫助,或者google之。
注意:想要使用sc命令,需要安裝window 2000/2003 resource kit工具包,可通過新增刪除windows元件來安裝
示例:sccreate命令列新增/建立/修改服務
使用sc命令建立svn服務的問題
今天重灌了系統,subversion服務也得重灌。照例輸入 service r e svn displayname subversion depend tcpip start auto creates a service entry in the registry and service datab...
c 使用sc命令註冊開發Windows服務
windows服務的開發如果中規中矩的話開發測試安裝都十分繁瑣,現備忘乙個簡易的方案。主要原理也很簡單,就是利用windows自帶的服務管理命令sc進行註冊,執行。using system using system.collections.generic using system.diagnosti...
svn註冊windows服務
svn服務端在windows上安裝完成後,需要使用命令列啟動 通過如下方式可註冊為windows服務以便開啟自動啟動服務 sc create svnserve binpath d svn bin svnserve.exe service r d svnrepository start auto de...