sc
: 윈도우 서비스(services.msc
)를 실행, 중지 등 명령어
sc <server> [command] [service name] <option1> <option2>
sc \\HYPER-V-TEST start MSSQL$TEST
sc start [서비스명]
sc stop [서비스명]
net
: 윈도우 서비스(services.msc
)를 실행, 중지 등 명령어
net <server> [command] [service name] <option1> <option2>
net \\HYPER-V-TEST start MSSQL$TEST
net start [서비스명]
net stop [서비스명]
sc
를 통한 서비스 시작은 서비스표시 이름(Display name)
이 아닌,서비스 이름(Service name)
입니다.
감사합니다.