.. Microsoft Exchange Mailbox Assistants
Running MSExchangeMailS... Microsoft Exchange Mail Submission
Stopped MSExchangeMonit... Microsoft Exchange Monitoring
(continued)
Part I: PowerShell for Exchange Fundamentals
56
Stopped MSExchangePop3 Microsoft Exchange POP3
Running MSExchangeRepl Microsoft Exchange Replication Service
Running MSExchangeSA Microsoft Exchange System Attendant
Running MSExchangeSearch Microsoft Exchange Search Indexer
Running MSExchangeServi... Microsoft Exchange Service Host
Running MSExchangeTrans... Microsoft Exchange Transport
Running MSExchangeTrans... Microsoft Exchange Transport Log Se...
Running msftesql-Exchange Microsoft Search (Exchange)
This narrows down the list quite a bit, but to see specific information about a service, provide the service
name and pipe the results to the Format-List cmdlet to display all properties as shown in this example:
[PS] C:\ > Get-Service MSExchangeIS | Format-List
Name : MSExchangeIS
DisplayName : Microsoft Exchange Information Store
Status : Running
DependentServices : {}
ServicesDependedOn : {NtLmSsp, RPCSS, LanmanWorkstation, LanmanServer, EventLo
g}
CanPauseAndContinue : False
CanShutdown : True
CanStop : True
ServiceType : Win32OwnProcess
From this output you can determine the current status for the service ( Status ), any services dependent
on this service ( DependentServices ), and services that this service depends on to be running before it
can start ( ServicesDependedOn ).
Pages:
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109