Windowsのコマンドプロンプトによるサービスの設定を変更する方法(sc config)
sc config [サービス名] [オプション]
説明 : サービスの構成を変更します (恒久的)(サービス名は以下の場所より取得:表示名ではない)
オプション
※注意 イコールの後ろはスペースが必要。
type= own,share,interact,kernel,filesys,rec,adapt,userown,usershare
start= boot,system,auto,demand,disabled,delayed-auto
error= normal,severe,critical,ignore
binPath= .exe ファイルへの BinaryPathName
group= LoadOrderGroup
tag= yes,no
depend= 依存関係 (スラッシュ (/) で区切られています)
obj= AccountName,ObjectName
DisplayName= 表示名
password= パスワード
サンプルソース
サービスを手動へ変更
(入力)
sc config "Audiosrv" start= demand
(出力)
[SC] ChangeServiceConfig SUCCESS
サンプルソース
サービスの実行パスを変更する
(入力)
sc config "Audiosrv" binPath= c:\windows\system32\cmd.exe
(出力)
[SC] ChangeServiceConfig SUCCESS
サンプルソース
サービスの表示名を変更する
(入力)
sc config "Audiosrv" DisplayName= test
(出力)
[SC] ChangeServiceConfig SUCCESS