SC命令—安裝、開啟、配置、關閉windows服務 bat批處理

來源:互聯網
上載者:User

廢話不多說,看命令列更直接!

一、直接使用cmd來進行服務的一些操作

1、安裝服務

sc create test3 binPath= "C:\Users\Administrator\Desktop\win32srvDemo\win32srvdemo\Debug\win32srvDemo.exe"

其中:test3為建立的服務名,binPath後面是運行exe檔案的所在路徑

2、佈建服務

有以下集中方式:

sc config 服務名 start=AUTO    (自動)

sc config 服務名 start= DEMAND  (手動)

sc config 服務名 start= DISABLED(禁用)

例如下面的命令,在XP系統中開機便會自動啟動:

sc config test3 start= AUTO

3、開啟服務

net start test3

4、關閉服務

net stop test3

5、刪除服務

sc delete test3

二、為方便使用,可編輯為bat批次檔

(建立一個txt檔案,自己命名,把尾碼改為.bat檔案)

1、建立、配置、開啟服務

@echo.服務啟動......@echo off@sc create test3 binPath= "C:\Users\Administrator\Desktop\win32srvdemo\win32srvdemo\Debug\win32srvdemo.exe"@net start test3@sc config test3 start= AUTO@echo off@echo.啟動完畢!@pause

2、關閉服務

@echo.服務關閉@echo off@net stop test3@echo off@echo.關閉結束!@pause

3、刪除服務

@echo.服務刪除@echo off@sc delete test3@echo off@echo.刪除結束!@pause

三、關於SC

可參考一個網友的博文---SC命令管理服務狀態:http://blog.csdn.net/ddjj_1980/article/details/7493045

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.