Link to home
Start Free TrialLog in
Avatar of Pau Lo
Pau Lo

asked on

Get-ItemProperty

i am trying to determine what the number output of this powershell command

Get-ItemProperty 'hklm:\system\currentcontrolset\services\MSExchangeIMAP4' | Select Start

actually represents. It retunrs a number, but I cant find any documentation on what the numbers actually represent, it will be the service status, i.e. running, but I cant find any sort of key to determine what the numbers represents. If of any use, its relating to an exchange 2010 server running on windows 2008 r2 server.
ASKER CERTIFIED SOLUTION
Avatar of oBdA
oBdA

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Pau Lo
Pau Lo

ASKER

Thanks
The below are true.. for the IMAP service.

Value 1 = Startup Type "System"
Value 2 = Startup Type "Automatic"
Vlaue 3 = Startup Type "Manual"
Value 4 = Startup Type "Disabled"

Will.
Ahhh too late!