Hi all,
In my environtment I have 2 Exchange servers in 1 DAG, some proxy services on EX02 have Inactive state, this is results of Get-ServerComponentState
[PS] C:\Windows\system32>Get-ServerComponentState ex01 | ft Component,State -Autosize Component State --------- ----- ServerWideOffline Active HubTransport Active FrontendTransport Active Monitoring Active RecoveryActionsEnabled Active AutoDiscoverProxy Active ActiveSyncProxy Active EcpProxy Active EwsProxy Active ImapProxy Active OabProxy Active OwaProxy Active PopProxy Active PushNotificationsProxy Active RpsProxy Active RwsProxy Active RpcProxy Active UMCallRouter Active XropProxy Active HttpProxyAvailabilityGroup Active ForwardSyncDeamon Active ProvisioningRps Active MapiProxy Active [PS] C:\Windows\system32>$scs = Get-ServerComponentState -Identity ex01 -Component ServerWideOffline [PS] C:\Windows\system32>$scs.localstates Requester State Timestamp Component --------- ----- --------- --------- Maintenance Active 6/21/2014 7:31:17 AM ServerWideOffline Functional Active 8/4/2013 2:39:34 AM ServerWideOffline [PS] C:\Windows\system32>Get-ServerComponentState ex02 | ft Component,State -Autosize Component State --------- ----- ServerWideOffline Active HubTransport Active FrontendTransport Active Monitoring Active RecoveryActionsEnabled Active AutoDiscoverProxy Inactive ActiveSyncProxy Inactive EcpProxy Active EwsProxy Inactive ImapProxy Active OabProxy Inactive OwaProxy Active PopProxy Active PushNotificationsProxy Active RpsProxy Active RwsProxy Active RpcProxy Inactive UMCallRouter Active XropProxy Active HttpProxyAvailabilityGroup Active ForwardSyncDeamon Active ProvisioningRps Active MapiProxy Inactive [PS] C:\Windows\system32>$scs = Get-ServerComponentState -Identity ex02 -Component ServerWideOffline [PS] C:\Windows\system32>$scs.localstates Requester State Timestamp Component --------- ----- --------- --------- Maintenance Active 8/4/2013 7:14:17 AM ServerWideOffline Functional Active 8/4/2013 7:04:20 AM ServerWideOffline
I tried command : Set-ServerComponentState -Component AutoDiscoverProxy -Identity EX02 -Requester Functional -State Active
But it didn't work. How do I find out right requester for each Inactive proxy component on EX02 or should I run these commands too ?
Set-ServerComponentState -Component AutoDiscoverProxy -Identity EX02 -Requester Mainternance -State Active
Set-ServerComponentState -Component ServerWideOffline -Identity EX02 -Requester Mainternance -State Active
Set-ServerComponentState -Component ServerWideOffline -Identity EX02 -Requester Functional -State Active
Thanks for your helps.
Jack