首页
学习
活动
专区
工具
TVP
发布
社区首页 >问答首页 >如何批量循环访问每个windows服务

如何批量循环访问每个windows服务
EN

Stack Overflow用户
提问于 2019-06-05 14:09:35
回答 1查看 674关注 0票数 0

我正在尝试创建一个批处理脚本,根据服务名称更改服务的启动类型。但是在我的循环中有一些东西不工作,我不知道为什么它不工作:(请帮助:)

我已经尝试将我正在使用的命令作为我正在搜索的内容,并通过cmd运行它。它工作得很好。但是,当我将它插入到我的循环中时,它拒绝工作。我对batch还是个新手,我不明白...

这就是我现在所拥有的:

代码语言:javascript
复制
@echo off
setlocal enabledelayedexpansion
pause

set "autosvc=;BrokerInfrastructure;BFE;"&REM list of services set to auto
set "delayedautosvc=;BITS;CDPSvc;"&REM list of services set to delayed-auto
set "delayedautosvc=;AxInstSV;AJRouter;"&REM list of services set to manual

for /f "tokens=1 delims=," %%i in ('sc query type= service state= all ') do (
    set tmpry=0
    if "!autosvc:;%%~i;=!" equ "!autosvc!" ( set /a tmpry=1 
    ) else ( if "!delayedautosvc:;%%~i;=!" equ "!delayedautosvc!" ( set /a tmpry=2
    ) else ( if "!demandsvc:;%%~i;=!" equ "!demandsvc!" ( set /a tmpry=3 )
    ) )
    if !tmpry! equ 1 ( echo AUTOMATIC - %%~i )
    if !tmpry! equ 2 ( echo DELAYEDAUTOMATIC - %%~i )
    if !tmpry! equ 3 ( echo MANUAL - %%~i )
    if !tmpry! lss 1 ( echo DISABLE - %%~i )
)
pause

不幸的是,这是输出:

代码语言:javascript
复制
Configuring service settings...
AUTOMATIC - ERROR:  Invalid Option
AUTOMATIC - DESCRIPTION:
AUTOMATIC -         SC is a command line program used for communicating with the
AUTOMATIC -         Service Control Manager and services.
AUTOMATIC - USAGE:
AUTOMATIC -         sc <server> [command] [service name] <option1> <option2>...
AUTOMATIC -         The option <server> has the form "\\ServerName"
AUTOMATIC -         Further help on commands can be obtained by typing: "sc [command]"
AUTOMATIC -         Commands:
AUTOMATIC -           query-----------Queries the status for a service
AUTOMATIC -                           enumerates the status for types of services.
AUTOMATIC -           queryex---------Queries the extended status for a service
AUTOMATIC -                           enumerates the status for types of services.
AUTOMATIC -           start-----------Starts a service.
AUTOMATIC -           pause-----------Sends a PAUSE control request to a service.
AUTOMATIC -           interrogate-----Sends an INTERROGATE control request to a service.
AUTOMATIC -           continue--------Sends a CONTINUE control request to a service.
AUTOMATIC -           stop------------Sends a STOP request to a service.
AUTOMATIC -           config----------Changes the configuration of a service (persistent).
AUTOMATIC -           description-----Changes the description of a service.
AUTOMATIC -           failure---------Changes the actions taken by a service upon failure.
AUTOMATIC -           failureflag-----Changes the failure actions flag of a service.
AUTOMATIC -           sidtype---------Changes the service SID type of a service.
AUTOMATIC -           privs-----------Changes the required privileges of a service.
AUTOMATIC -           managedaccount--Changes the service to mark the service account
AUTOMATIC -                           password as managed by LSA.
AUTOMATIC -           qc--------------Queries the configuration information for a service.
AUTOMATIC -           qdescription----Queries the description for a service.
AUTOMATIC -           qfailure--------Queries the actions taken by a service upon failure.
AUTOMATIC -           qfailureflag----Queries the failure actions flag of a service.
AUTOMATIC -           qsidtype--------Queries the service SID type of a service.
AUTOMATIC -           qprivs----------Queries the required privileges of a service.
AUTOMATIC -           qtriggerinfo----Queries the trigger parameters of a service.
AUTOMATIC -           qpreferrednode--Queries the preferred NUMA node of a service.
AUTOMATIC -           qmanagedaccount-Queries whether a services uses an account with a
AUTOMATIC -                           password managed by LSA.
AUTOMATIC -           qprotection-----Queries the process protection level of a service.
AUTOMATIC -           quserservice----Queries for a local instance of a user service template.
AUTOMATIC -           delete----------Deletes a service (from the registry).
AUTOMATIC -           create----------Creates a service. (adds it to the registry).
AUTOMATIC -           control---------Sends a control to a service.
AUTOMATIC -           sdshow----------Displays a service's security descriptor.
AUTOMATIC -           sdset-----------Sets a service's security descriptor.
AUTOMATIC -           showsid---------Displays the service SID string corresponding to an arbitrary name.
AUTOMATIC -           triggerinfo-----Configures the trigger parameters of a service.
AUTOMATIC -           preferrednode---Sets the preferred NUMA node of a service.
AUTOMATIC -           GetDisplayName--Gets the DisplayName for a service.
AUTOMATIC -           GetKeyName------Gets the ServiceKeyName for a service.
AUTOMATIC -           EnumDepend------Enumerates Service Dependencies.
AUTOMATIC -         The following commands don't require a service name:
AUTOMATIC -         sc <server> <command> <option>
AUTOMATIC -           boot------------(ok | bad) Indicates whether the last boot should
AUTOMATIC -                           be saved as the last-known-good boot configuration
AUTOMATIC -           Lock------------Locks the Service Database
AUTOMATIC -           QueryLock-------Queries the LockStatus for the SCManager Database
AUTOMATIC - EXAMPLE:
AUTOMATIC -         sc start MyService
AUTOMATIC - QUERY and QUERYEX OPTIONS:
AUTOMATIC -         If the query command is followed by a service name
AUTOMATIC -         for that service is returned.  Further options do not apply in
AUTOMATIC -         this case.  If the query command is followed by nothing or one of
AUTOMATIC -         the options listed below
AUTOMATIC -     type=    Type of services to enumerate (driver
AUTOMATIC -              (default = service)
AUTOMATIC -     state=   State of services to enumerate (inactive
AUTOMATIC -              (default = active)
AUTOMATIC -     bufsize= The size (in bytes) of the enumeration buffer
AUTOMATIC -              (default = 4096)
AUTOMATIC -     ri=      The resume index number at which to begin the enumeration
AUTOMATIC -              (default = 0)
AUTOMATIC -     group=   Service group to enumerate
AUTOMATIC -              (default = all groups)
AUTOMATIC - SYNTAX EXAMPLES
AUTOMATIC - sc query                - Enumerates status for active services & drivers
AUTOMATIC - sc query eventlog       - Displays status for the eventlog service
AUTOMATIC - sc queryex eventlog     - Displays extended status for the eventlog service
AUTOMATIC - sc query type= driver   - Enumerates only active drivers
AUTOMATIC - sc query type= service  - Enumerates only Win32 services
AUTOMATIC - sc query state= all     - Enumerates all services & drivers
AUTOMATIC - sc query bufsize= 50    - Enumerates with a 50 byte buffer
AUTOMATIC - sc query ri= 14         - Enumerates with resume index = 14
AUTOMATIC - sc queryex group= ""    - Enumerates active services not in a group
AUTOMATIC - sc query type= interact - Enumerates all interactive services
AUTOMATIC - sc query type= driver group= NDIS     - Enumerates all NDIS drivers
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/56455042

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档