Como descubro o nome de exibição de um serviço do Windows a partir de seu nome “abreviado”?

6

O Visualizador de Eventos do Windows geralmente registra apenas o nome do serviço abreviado, mas o console de Serviços lista os serviços em ordem alfabética por seu "Nome para Exibição" completo.

Se o "Nome de exibição" não for óbvio a partir do nome do serviço abreviado, como descobrir qual serviço é seu nome abreviado? Obviamente, eu poderia abrir a página de propriedades de todos os serviços no console de Serviços, mas deve haver uma maneira melhor.

    
por Tim Lara 22.12.2009 / 00:53

6 respostas

8

Experimente, na linha de comando:

sc query

e olhe através disso. Você poderia > redirecionar para um arquivo, desta forma:

sc query > output.txt

e use um editor de texto para pesquisá-lo (e, como isso cria uma lista abrangente de processos, você pode mantê-lo por perto)

Ponto de bônus : Se você tiver uma versão do grep instalada, seja do cygwin, ou unxutils, ou de qualquer outro lugar, tente:

sc query | grep -i -A 1 "short name"

tentando isso com uxsms , o serviço DWM, recebo

SERVICE_NAME: UxSms
DISPLAY_NAME: Desktop Window Manager Session Manager

Para criar uma boa listagem, você pode usar

sc query | grep -A 1 "SERVICE_NAME" > Services.txt
    
por 22.12.2009 / 00:59
4

Uma maneira mais simples e direta da linha de comando é:

sc GetDisplayName SERVICE_NAME

Exemplo

O nome abreviado do serviço por trás do Windows Update é wuauserv . Assim, o nome de exibição pode ser encontrado como:

sc GetDisplayName wuauserv

Janela XP

No Windows XP, isso resulta em (saída em uma linha):

[SC] GetServiceDisplayName SUCCESS Name = Automatic Updates

Janela 7

No Windows 7, isso resulta em (saída em duas linhas):

[SC] GetServiceDisplayName SUCCESS
Name = Windows Update

Observe que o nome do console de Serviços do serviço neste caso é diferente para o Windows XP e o Windows 7 ("Atualizações Automáticas" e "Atualização do Windows").

    
por 28.04.2014 / 17:35
4

O Visualizador de Eventos geralmente usa o nome do serviço em oposição ao nome de exibição . O PowerShell facilita a visualização de ambos os serviços (ou de um único serviço especificado por você) lado a lado:

PS C:\> get-service | format-table servicename,displayname -autosize


ServiceName                    DisplayName                                         
-----------                    -----------                                         
Alerter                        Alerter                                             
ALG                            Application Layer Gateway Service                   
AppMgmt                        Application Management               
aspnet_state                   ASP.NET State Service                               
AudioSrv                       Windows Audio                                       
BITS                           Background Intelligent Transfer Service             
Browser                        Computer Browser                                    
CiSvc                          Indexing Service                                    
ClipSrv                        ClipBook                                            
clr_optimization_v2.0.50727_32 .NET Runtime Optimization Service v2.0.50727_X86    
COMSysApp                      COM+ System Application                             
CryptSvc                       Cryptographic Services                              
DcomLaunch                     DCOM Server Process Launcher                        
Dhcp                           DHCP Client                                         
dmadmin                        Logical Disk Manager Administrative Service         
dmserver                       Logical Disk Manager                                
Dnscache                       DNS Client                                          
DynDNS Updater                 DynDNS Updater                                        
ERSvc                          Error Reporting Service                             
Eventlog                       Event Log                                           
EventSystem                    COM+ Event System                                   
FastUserSwitchingCompatibility Fast User Switching Compatibility                   
FontCache3.0.0.0               Windows Presentation Foundation Font Cache 3.0.0.0  
helpsvc                        Help and Support                                    
HidServ                        Human Interface Device Access                       
hpdj                           hpdj                                                
hpdj3500                       hpdj3500                                            
HTTPFilter                     HTTP SSL                                            
idsvc                          Windows CardSpace                                   
ImapiService                   IMAPI CD-Burning COM Service                                
lanmanserver                   Server                                              
lanmanworkstation              Workstation                                         
LmHosts                        TCP/IP NetBIOS Helper                               
MDM                            Machine Debug Manager                               
Messenger                      Messenger                                           
mnmsrvc                        NetMeeting Remote Desktop Sharing                   
MSDTC                          Distributed Transaction Coordinator                 
MSIServer                      Windows Installer                                   
NetDDE                         Network DDE                                         
NetDDEdsdm                     Network DDE DSDM                                    
Netlogon                       Net Logon                                           
Netman                         Network Connections                                 
NetTcpPortSharing              Net.Tcp Port Sharing Service                        
Nla                            Network Location Awareness (NLA)                    
nlsvc                          NetLimiter                                          
NtLmSsp                        NT LM Security Support Provider                     
NtmsSvc                        Removable Storage                                   
ose                            Office Source Engine                                
PlugPlay                       Plug and Play                                       
PolicyAgent                    IPSEC Services                                      
ProtectedStorage               Protected Storage                                   
RasAuto                        Remote Access Auto Connection Manager               
RasMan                         Remote Access Connection Manager                    
RDSessMgr                      Remote Desktop Help Session Manager                 
RemoteAccess                   Routing and Remote Access                           
RemoteRegistry                 Remote Registry                                     
rpcapd                         Remote Packet Capture Protocol v.0 (experimental)   
RpcLocator                     Remote Procedure Call (RPC) Locator                 
RpcSs                          Remote Procedure Call (RPC)                         
RSVP                           QoS RSVP                                            
SamSs                          Security Accounts Manager                           
SCardSvr                       Smart Card                                          
Schedule                       Task Scheduler                                      
seclogon                       Secondary Logon                                     
SENS                           System Event Notification                           
SharedAccess                   Windows Firewall/Internet Connection Sharing (ICS)  
ShellHWDetection               Shell Hardware Detection                            
Spooler                        Print Spooler                                       
srservice                      System Restore Service                              
SSDPSRV                        SSDP Discovery Service                              
stisvc                         Windows Image Acquisition (WIA)                     
SwPrv                          MS Software Shadow Copy Provider                    
SysmonLog                      Performance Logs and Alerts                         
TapiSrv                        Telephony                                           
TermService                    Terminal Services                                   
Themes                         Themes                                              
TlntSvr                        Telnet                                              
TrkWks                         Distributed Link Tracking Client                    
upnphost                       Universal Plug and Play Device Host                 
UPS                            Uninterruptible Power Supply                        
VSS                            Volume Shadow Copy                                  
W32Time                        Windows Time                                        
WebClient                      WebClient                                           
winmgmt                        Windows Management Instrumentation                  
WmdmPmSN                       Portable Media Serial Number Service                
Wmi                            Windows Management Instrumentation Driver Extensions
WmiApSrv                       WMI Performance Adapter                             
wscsvc                         Security Center                                     
wuauserv                       Automatic Updates                                   
WZCSVC                         Wireless Zero Configuration                         
xmlprov                        Network Provisioning Service

Se você quiser um único serviço:

PS C:\> Get-Service wmi

Status   Name               DisplayName
------   ----               -----------
Stopped  Wmi                Windows Management Instrumentation
    
por 22.12.2009 / 01:02
1
sc queryex type= service state= all | find "SERVICE_NAME" | find "SQL"

OR

sc queryex type= service state= all | find "DISPLAY_NAME" | find "SQL"
    
por 14.03.2017 / 17:58
0

REG CONSULTA "HKEY_LOCAL_MACHINE \ System \ CurrentControlSet \ Services"

Esse é um comando muito útil.

E sim grep poderia ser usado.
No entanto - em geral - a lista ainda está no tamanho do globo ocular ...

    
por 31.10.2015 / 13:51
0

Para obter todos os nomes de serviço:

sc query | findstr SERVICE_NAME

Para obter todos os nomes de exibição do serviço:

sc query | findstr DISPLAY_NAME

Para salvar sua saída em um arquivo de texto:

sc query | findstr DISPLAY_NAME > filename.txt
    
por 10.07.2017 / 10:11