SC命令,Xp下功能强大的服务控制管理命令

简介:

命令格式

SC命令的格式:SC [Servername] command Servicename [Optionname= Optionvalues

*服务名是服务本身的名称而非显示名,

*=号后面要加一个空格,然后才能写选项名

SC命令共24个子命令,如下所示

sc boot sc config sc continue sc control sc create sc delete sc descrīption 

sc enumdepend  sc failure sc getdisplayname sc getkeyname sc interrogate 

sc lock sc pause sc qc  sc qdescrīption sc qfailure sc query sc queryex 

sc querylock sc sdset sc sdshow  sc start sc stop

比较常用的,禁止或开启服务

sc config tlntsvr start= auto     '设置Telnet服务为自动

sc config tlntsvr start= disabled     '设置telnet服务为禁止

启动或停止及暂停服务

sc start tlntsvr     '启动Telnet服务

sc stop tlntsvr     '停止Telnet服务

Sc pause tlntsvr     '暂停Telnet服务

删除服务

Sc delete tlntsvr '删除Telnet服务,,但最好不要删除系统自带服务。。。

创建服务

sc create test binpath= c:\windows\notepad.exe start= auto ‘创建Notepad.exe为Test服务,启动方式为自动

 

 

SC help

------------------------------

DESCRIPTION:
        SC is a command line program used for communicating with the
        NT Service Controller and services.
USAGE:
        sc <server> [command] [service name] <option1> <option2>...

        The option <server> has the form ""
        Further help on commands can be obtained by typing: "sc [command]"
        Commands:
          query-----------Queries the status for a service, or
                          enumerates the status for types of services.
          queryex---------Queries the extended status for a service, or
                          enumerates the status for types of services.
          start-----------Starts a service.
          pause-----------Sends a PAUSE control request to a service.
          interrogate-----Sends an INTERROGATE control request to a service.
          continue--------Sends a CONTINUE control request to a service.
          stop------------Sends a STOP request to a service.
          config----------Changes the configuration of a service (persistant).
          description-----Changes the description of a service.
          failure---------Changes the actions taken by a service upon failure.
          sidtype---------Changes the service SID type of a service.
          qc--------------Queries the configuration information for a service.
          qdescription----Queries the description for a service.
          qfailure--------Queries the actions taken by a service upon failure.
          qsidtype--------Queries the service SID type of a service.
          delete----------Deletes a service (from the registry).
          create----------Creates a service. (adds it to the registry).
          control---------Sends a control to a service.
          sdshow----------Displays a service's security descriptor.
          sdset-----------Sets a service's security descriptor.
          showsid---------Displays the service SID string corresponding to an ar
bitrary name.
          GetDisplayName--Gets the DisplayName for a service.
          GetKeyName------Gets the ServiceKeyName for a service.
          EnumDepend------Enumerates Service Dependencies.

        The following commands don't require a service name:
        sc <server> <command> <option>
          boot------------(ok | bad) Indicates whether the last boot should
                          be saved as the last-known-good boot configuration
          Lock------------Locks the Service Database
          QueryLock-------Queries the LockStatus for the SCManager Database
EXAMPLE:
        sc start MyService

Would you like to see help for the QUERY and QUERYEX commands? [ y | n ]:










本文转自 qq8658868 51CTO博客,原文链接:http://blog.51cto.com/hujizhou/1039990,如需转载请自行联系原作者
目录
相关文章
|
8月前
|
Shell Linux 开发工具
【Shell 命令集合 文件管理】Linux 高级的文件管理器 mc 命令解析
【Shell 命令集合 文件管理】Linux 高级的文件管理器 mc 命令解析
129 0
|
8月前
|
Windows
Windows 命令提示符(CMD)操作(七):扩展命令和功能
Windows 命令提示符(CMD)操作(七):扩展命令和功能
|
26天前
|
监控 数据可视化 安全
AD域管理PowerShell常用命令总结
本文介绍了GET-ADUser命令在AD域管理中的多种应用场景,包括获取、过滤和导出用户信息至CSV文件。同时,推荐了卓豪ADManager Plus软件,该软件提供了批量用户与组管理、报表生成功能,极大简化了AD域的日常管理工作,提升了IT管理员的工作效率和准确性。
|
8月前
|
存储 算法 Shell
【Shell 命令集合 设备管理 】Linux 显示当前系统中定义的键盘映射表 dumpkeys命令 使用指南
【Shell 命令集合 设备管理 】Linux 显示当前系统中定义的键盘映射表 dumpkeys命令 使用指南
81 0
|
8月前
|
缓存 网络协议 Linux
碎片技能:在 Windows 的任意目录一键快捷进入 CMD 命令行界面
在Windows 10/11中,SaaS服务商常需使用命令行,如PowerShell或CMD。本文介绍了如何进入DOS命令行:通过“开始”菜单→“运行”→输入“cmd”,然后确认。此外,还展示了如何在任意目录快速启动DOS命令行,只需右键点击并选择相应菜单项。提供两种实现方法:一是导入注册表文件,二是使用名为ContextMenuManager的优化软件。建议使用软件方法,易于添加和删除菜单项。
98 1
碎片技能:在 Windows 的任意目录一键快捷进入 CMD 命令行界面
|
8月前
|
安全 Shell Linux
【Shell 命令集合 系统管理 】Linux 终端复用工具 screen命令 使用指南
【Shell 命令集合 系统管理 】Linux 终端复用工具 screen命令 使用指南
131 0
|
Linux
12.15 Linux查看当前终端放入后台的工作(jobs命令)
jobs 命令可以用来查看当前终端放入后台的工作,工作管理的名字也来源于 jobs 命令。
243 0
12.15 Linux查看当前终端放入后台的工作(jobs命令)
|
Oracle 关系型数据库 Windows