sc.exe config
在登錄和服務控制管理員資料庫中修改服務項目的值。
語法
sc.exe [<servername>] config [<servicename>] [type= {own | share | kernel | filesys | rec | adapt | interact type= {own | share}}] [start= {boot | system | auto | demand | disabled | delayed-auto}] [error= {normal | severe | critical | ignore}] [binpath= <binarypathname>] [group= <loadordergroup>] [tag= {yes | no}] [depend= <dependencies>] [obj= {<accountname> | <objectname>}] [displayname= <displayname>] [password= <password>]
參數
參數 | 描述 |
---|---|
<servername> |
指定服務所在遠端伺服器的名稱。 名稱必須使用通用命名慣例 (UNC) 格式 (例如 \myserver)。 若要在本機執行 SC.exe,請勿使用此參數。 |
<servicename> |
指定 getkeyname 作業所傳回的服務名稱。 |
type= {own | share | kernel | filesys | rec | adapt | interact type= {own | share}} |
指定服務類型。 選項包括:
|
start= {boot | system | auto | demand | disabled | delayed-auto} |
指定服務的啟動類型。 選項包括:
|
error= {normal | severe | critical | ignore} |
如果啟動電腦時服務無法啟動,則指定錯誤的嚴重性。 選項包括:
|
binpath= <binarypathname> |
指定服務二進位檔的路徑。 binpath= 沒有預設值,而且必須提供此字串。 此外,您可以在字串前面指定 ntsd -d 以進行偵錯。 如需相關資訊,請參閱 使用 CDB 和 NTSD 進行偵錯。 |
group= <loadordergroup> |
指定此服務所屬群組的名稱。 群組清單會儲存在登錄的 HKLM\System\CurrentControlSet\Control\ServiceGroupOrder 子機碼中。 預設值為 null。 |
tag= {yes | no} |
指定是否要從 CreateService 呼叫取得 TagID。 標記僅用於開機啟動和系統啟動驅動程式。 |
depend= <dependencies> |
指定必須在此服務之前啟動的服務或群組名稱。 名稱會以正斜線 (/) 分隔。 |
obj= {<accountname> | <objectname>} |
指定執行服務之帳戶的名稱,或指定驅動程式執行所在的 Windows 驅動程式物件名稱。 預設設定為 LocalSystem。 |
displayname= <displayname> |
指定描述性名稱,以識別使用者介面程式中的服務。 例如,一個特定服務的子機碼名稱是 wuauserv,有比較易記的顯示名稱:自動更新。 |
password= <password> |
指定密碼。 如果使用 LocalSystem 帳戶以外的帳戶,則此為必要項目。 |
/? | 在命令提示字元顯示說明。 |
備註
每個命令列選項 (parameter) 都必須包含等號作為選項名稱的一部分。
選項與其值之間需要空格 (例如 type= own。 如果省略空間,則作業會失敗。
範例
若要指定 NewService 服務的二進位路徑,請輸入:
sc.exe config NewService binpath= c:\windows\system32\NewServ.exe