Creates a subkey and entries for a service in the registry and in the Service Control Manager database.
For examples of how to use this command, see Examples.
Syntax
sc [<ServerName>] create [<ServiceName>] [type= {own | share | kernel | filesys | rec | interact type= {own | share}}] [start= {boot | system | auto | demand | disabled}] [error= {normal | severe | critical | ignore}] [binpath= <BinaryPathName>] [group= <LoadOrderGroup>] [tag= {yes | no}] [depend= <dependencies>] [obj= {<AccountName> | <ObjectName>}] [displayname= <DisplayName>] [password= <Password>]
Parameters
Parameter | Description | ||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
<ServerName> |
Specifies the name of the remote server on which the service is located. The name must use the Universal Naming Convention (UNC) format (for example, \\myserver). To run SC.exe locally, omit this parameter. |
||||||||||||||
<ServiceName> |
Specifies the service name returned by the getkeyname operation. |
||||||||||||||
type= {own | share | kernel | filesys | rec | interact type= {own | share}} |
Specifies the service type. The default setting is type= own.
|
||||||||||||||
start= {boot | system | auto | demand | disabled} |
Specifies the start type for the service. The default setting is start= demand.
|
||||||||||||||
error= {normal | severe | critical | ignore} |
Specifies the severity of the error if the service fails when the computer is started. The default setting is error= normal.
|
||||||||||||||
binpath= <BinaryPathName> |
Specifies a path to the service binary file. There is no default for binpath=, and this string must be supplied. |
||||||||||||||
group= <LoadOrderGroup> |
Specifies the name of the group of which this service is a member. The list of groups is stored in the registry in the HKLM\System\CurrentControlSet\Control\ServiceGroupOrder subkey. The default value is null. |
||||||||||||||
tag= {yes | no} |
Specifies whether or not a TagID is to be obtained from the CreateService call. Tags are used only for boot-start and system-start drivers. |
||||||||||||||
depend= <dependencies> |
Specifies the names of services or groups that must start before this service starts. The names are separated by forward slashes (/). |
||||||||||||||
obj= {<AccountName> | <ObjectName>} |
Specifies the name of an account in which a service will run, or specifies a name of the Windows driver object in which the driver will run. |
||||||||||||||
displayname= <DisplayName> |
Specifies a friendly name that can be used by user interface programs to identify the service. |
||||||||||||||
password= <Password> |
Specifies a password. This is required if an account other than LocalSystem is used. |
||||||||||||||
/? |
Displays help at the command prompt. |
Remarks
- For each command-line option, the equal sign is part of the
option name.
- A space is required between an option and its value (for
example, type= own. If the space is omitted the
operation will fail.
Examples
The following examples show how you can use the sc create command:
sc \\myserver create NewService binpath= c:\windows\system32\NewServ.exe sc create NewService binpath= c:\windows\system32\NewServ.exe type= share start= auto depend= "+TDI Netbios"