Página principal Sobre mi Premios recibidos Links de Interés Contacto Blogs de referencia

Translate

miércoles, 12 de junio de 2019

Textual description of firstImageUrl

Exchange OnLine: HCW8078 - No se pudo crear el punto de conexión de la migración

En el laboratorio de hoy, vamos a intentar dar solución al error HCW8078 - No se pudo crear el punto de conexión de la migración, que pude aparecer durante la configuración de un entorno híbrido de Office 365.

 
En primer lugar, ejecutaremos el comando Get-WebServicesVirtualDirectory como mostramos a continuación para descubrir el estado actual en nuestro entorno de los valores:

  • MRSProxyEnabled
  • Identity 

[PS] C:\Windows\system32>Get-WebServicesVirtualDirectory |fl

RunspaceId                      : e6e08f4a-4a42-45eb-942e-a4578ba56c95
CertificateAuthentication       :
InternalNLBBypassUrl            :
GzipLevel                       : Low
MRSProxyEnabled                 : True
Name                            : EWS (Default Web Site)
InternalAuthenticationMethods   : {Ntlm, WindowsIntegrated, WSSecurity, OAuth}
ExternalAuthenticationMethods   : {Ntlm, WindowsIntegrated, WSSecurity, OAuth}
LiveIdNegotiateAuthentication   :
WSSecurityAuthentication        : True
LiveIdBasicAuthentication       : False
BasicAuthentication             : False
DigestAuthentication            : False
WindowsAuthentication           : True
OAuthAuthentication             : True
AdfsAuthentication              : False
MetabasePath                    : IIS://SRV-MAIL.dom.local/W3SVC/1/ROOT/EWS
Path                            : C:\Program Files\Microsoft\Exchange Server\V15\FrontEnd\HttpProxy\EWS
ExtendedProtectionTokenChecking : None
ExtendedProtectionFlags         : {}
ExtendedProtectionSPNList       : {}
AdminDisplayVersion             : Version 15.0 (Build 1365.1)
Server                          : SRV-MAIL
InternalUrl                     : https://mail.dom.es/ews/Exchange.asmx
ExternalUrl                     : https://mail.dom.es/ews/Exchange.asmx
AdminDisplayName                :
ExchangeVersion                 : 0.10 (14.0.100.0)
DistinguishedName               : CN=EWS (Default Web Site),CN=HTTP,CN=Protocols,CN=SRV-MAIL,CN=Servers,CN=Exchange
                                  Administrative Group (FYDIBOHF23SPDLT),CN=Administrative
                                  Groups,CN=dom,CN=Microsoft
                                  Exchange,CN=Services,CN=Configuration,DC=dom,DC=local
Identity                        : SRV-MAIL\EWS (Default Web Site)
Guid                            : a66c28f5-71b8-4bae-8ccf-577f3a2efeea
ObjectCategory                  : dom.local/Configuration/Schema/ms-Exch-Web-Services-Virtual-Directory
ObjectClass                     : {top, msExchVirtualDirectory, msExchWebServicesVirtualDirectory}
WhenChanged                     : 15/05/2019 10:54:18
WhenCreated                     : 25/01/2018 13:00:42
WhenChangedUTC                  : 15/05/2019 8:54:18
WhenCreatedUTC                  : 25/01/2018 12:00:42
OrganizationId                  :
Id                              : SRV-MAIL\EWS (Default Web Site)
OriginatingServer               : SRV-DC-02.dom.local
IsValid                         : True
ObjectState                     : Changed

Si el valor llamado MRSProxyEnabled está habilitado con el valor True vamos a deshabilitarlo cambiando a False.

Para realizar la operación escribiremos el comando que mostramos a continuación, para ello vamos a necesitar el valor Identity que hemos descubierto en el paso anterior.

[PS] C:\Windows\system32>Set-WebServicesVirtualDirectory "SRV-MAIL\EWS (Default Web Site)" -MRSProxyEnabled $false

Podemos volver a ejecutar el comando Get-WebServicesVirtualDirectory para comprobar que el valor MRSProxyEnabled está establecido en False.

[PS] C:\Windows\system32>Get-WebServicesVirtualDirectory "SRV-MAIL\EWS (Default Web Site)" |fl

RunspaceId                      : e6e08f4a-4a42-45eb-942e-a4578ba56c95
CertificateAuthentication       :
InternalNLBBypassUrl            :
GzipLevel                       : Low
MRSProxyEnabled                 : False
Name                            : EWS (Default Web Site)
InternalAuthenticationMethods   : {Ntlm, WindowsIntegrated, WSSecurity, OAuth}
ExternalAuthenticationMethods   : {Ntlm, WindowsIntegrated, WSSecurity, OAuth}
LiveIdNegotiateAuthentication   :
WSSecurityAuthentication        : True
LiveIdBasicAuthentication       : False
BasicAuthentication             : False
DigestAuthentication            : False
WindowsAuthentication           : True
OAuthAuthentication             : True
AdfsAuthentication              : False
MetabasePath                    : IIS://SRV-MAIL.dom.local/W3SVC/1/ROOT/EWS
Path                            : C:\Program Files\Microsoft\Exchange Server\V15\FrontEnd\HttpProxy\EWS
ExtendedProtectionTokenChecking : None
ExtendedProtectionFlags         : {}
ExtendedProtectionSPNList       : {}
AdminDisplayVersion             : Version 15.0 (Build 1365.1)
Server                          : SRV-MAIL
InternalUrl                     : https://mail.dom.es/ews/Exchange.asmx
ExternalUrl                     : https://mail.dom.es/ews/Exchange.asmx
AdminDisplayName                :
ExchangeVersion                 : 0.10 (14.0.100.0)
DistinguishedName               : CN=EWS (Default Web Site),CN=HTTP,CN=Protocols,CN=SRV-MAIL,CN=Servers,CN=Exchange
                                  Administrative Group (FYDIBOHF23SPDLT),CN=Administrative
                                  Groups,CN=dom,CN=Microsoft
                                  Exchange,CN=Services,CN=Configuration,DC=dom,DC=local
Identity                        : SRV-MAIL\EWS (Default Web Site)
Guid                            : a66c28f5-71b8-4bae-8ccf-577f3a2efeea
ObjectCategory                  : dom.local/Configuration/Schema/ms-Exch-Web-Services-Virtual-Directory
ObjectClass                     : {top, msExchVirtualDirectory, msExchWebServicesVirtualDirectory}
WhenChanged                     : 15/05/2019 15:48:07
WhenCreated                     : 25/01/2018 13:00:42
WhenChangedUTC                  : 15/05/2019 13:48:07
WhenCreatedUTC                  : 25/01/2018 12:00:42
OrganizationId                  :
Id                              : SRV-MAIL\EWS (Default Web Site)
OriginatingServer               : SRV-DC-02.dom.local
IsValid                         : True
ObjectState                     : Changed

Si el valor MRSProxyEnabled está establecido en False, volveremos a habilitar el Proxy MRS realizando la operación inversa a la que anteriormente hemos realizado.

[PS] C:\Windows\system32>Set-WebServicesVirtualDirectory "SRV-MAIL\EWS (Default Web Site)" -MRSProxyEnabled $true

Finalizaremos la operación reiniciando todos los servicios de Internet Information Services, escribiremos IISreset y esperaremos que el reinicio concluya.

[PS] C:\Windows\system32>IISreset

Intentando detener...
Servicios Internet detenidos correctamente
Intentando iniciar...
Servicios Internet reiniciados con éxito


Finalizaremos la el laboratorio creando una nueva sesión de comunicación remota, para ello ejecutaremos el comando Get-OrganizationConfig como mostramos a continuación.

[PS] C:\Windows\system32>Get-OrganizationConfig
Creando una nueva sesión para la comunicación remota implícita del comando "Get-OrganizationConfig"...

RunspaceId                                                : 7d71b5a8-023e-44e7-a462-684ed8e34794
OrganizationId                                            :
Name                                                      : dom
Identity                                                  : dom
Guid                                                      : 8a7bb85a-2b72-40ad-8bf8-d96706b9a519
ObjectVersion                                             : 16130
DefaultPublicFolderAgeLimit                               :
DefaultPublicFolderIssueWarningQuota                      : Unlimited
DefaultPublicFolderProhibitPostQuota                      : Unlimited
DefaultPublicFolderMaxItemSize                            : Unlimited
DefaultPublicFolderDeletedItemRetention                   : 30.00:00:00
DefaultPublicFolderMovedItemRetention                     : 7.00:00:00
PublicFoldersLockedForMigration                           : False
PublicFolderMigrationComplete                             : False
PublicFolderMailboxesLockedForNewConnections              : False
PublicFolderMailboxesMigrationComplete                    : False
PublicFoldersEnabled                                      : Local
ActivityBasedAuthenticationTimeoutEnabled                 : True
ActivityBasedAuthenticationTimeoutInterval                : 06:00:00
ActivityBasedAuthenticationTimeoutWithSingleSignOnEnabled : True
AppsForOfficeEnabled                                      : True
AVAuthenticationService                                   :
CustomerFeedbackEnabled                                   :
DistributionGroupDefaultOU                                :
DistributionGroupNameBlockedWordsList                     : {}
DistributionGroupNamingPolicy                             :
EwsAllowEntourage                                         :
EwsAllowList                                              :
EwsAllowMacOutlook                                        :
EwsAllowOutlook                                           :
EwsApplicationAccessPolicy                                :
EwsBlockList                                              :
EwsEnabled                                                :
ExchangeNotificationEnabled                               : True
ExchangeNotificationRecipients                            : {}
HierarchicalAddressBookRoot                               :
Industry                                                  : NotSpecified
MailTipsAllTipsEnabled                                    : True
MailTipsExternalRecipientsTipsEnabled                     : False
MailTipsGroupMetricsEnabled                               : True
MailTipsLargeAudienceThreshold                            : 25
MailTipsMailboxSourcedTipsEnabled                         : True
ManagedFolderHomepage                                     :
MicrosoftExchangeRecipientEmailAddresses                  : {smtp:MicrosoftExchange329e71ec88ae4615bbc36ab6ce41109e@
                                                            dom.mail.onmicrosoft.com, smtp:MicrosoftExchange329e71e
                                                            c88ae4615bbc36ab6ce41109e@dom.local, SMTP:MicrosoftExc
                                                            hange329e71ec88ae4615bbc36ab6ce41109e@dom.es, smtp:Mic
                                                            rosoftExchange329e71ec88ae4615bbc36ab6ce41109e@domaintest.e
                                                            s}
MicrosoftExchangeRecipientEmailAddressPolicyEnabled       : True
MicrosoftExchangeRecipientPrimarySmtpAddress              : MicrosoftExchange329e71ec88ae4615bbc36ab6ce41109e@dom.
                                                            es
MicrosoftExchangeRecipientReplyRecipient                  :
ForwardSyncLiveIdBusinessInstance                         : False
OrganizationSummary                                       : {UpdateDate,20/12/2012 16:53:30,False,
                                                            TotalIMAP4User,99,False, TotalPOP3User,100,False,
                                                            TotalMAPIUser,101,False, TotalActiveSyncUser,99,False,
                                                            TotalOWAUser,100,False, TotalUnifiedMessagingUser,0,False,
                                                            TotalMessagingRecordManagementUser,0,False,
                                                            TotalLegacyMailbox,0,False, TotalMailUsers,0,False,
                                                            TotalMailContacts,0,False,
                                                            TotalDynamicDistributionGroups,0,False,
                                                            TotalDistributionGroups,9,False, TotalMailboxes,98,False,
                                                            TotalRecipients,110,False,
                                                            TotalUnlicensedExchangeServers,0,False...}
ReadTrackingEnabled                                       : False
SCLJunkThreshold                                          : 8
SIPAccessService                                          :
SIPSessionBorderController                                :
MaxConcurrentMigrations                                   : Unlimited
MaxAddressBookPolicies                                    :
MaxOfflineAddressBooks                                    :
IsExcludedFromOnboardMigration                            : False
IsExcludedFromOffboardMigration                           : False
IsFfoMigrationInProgress                                  : False
IsProcessEhaMigratedMessagesEnabled                       : False
TenantRelocationsAllowed                                  : False
ACLableSyncedObjectEnabled                                : False
PreferredInternetCodePageForShiftJis                      : 0
RequiredCharsetCoverage                                   : 100
ByteEncoderTypeFor7BitCharsets                            : 0
PublicComputersDetectionEnabled                           : False
RmsoSubscriptionStatus                                    : Unknown
IntuneManagedStatus                                       : False
HybridConfigurationStatus                                 : Unknown
ReleaseTrack                                              :
SharePointUrl                                             :
MapiHttpEnabled                                           : False
OAuth2ClientProfileEnabled                                : False
OrganizationConfigHash                                    :
LegacyExchangeDN                                          : /o=dom
Heuristics                                                : None
ResourceAddressLists                                      : {\Todas las habitaciones}
IsMixedMode                                               : False
PreviousAdminDisplayVersion                               : 0.10 (14.0.100.0)
IsAddressListPagingEnabled                                : False
ForeignForestFQDN                                         : {}
ForeignForestOrgAdminUSGSid                               :
ForeignForestRecipientAdminUSGSid                         :
ForeignForestViewOnlyAdminUSGSid                          :
MimeTypes                                                 : {application/cdf;cdf, application/directx;x,
                                                            application/fractals;fif, application/futuresplash;spl,
                                                            application/hta;hta,
                                                            application/internet-property-stream;acx,
                                                            application/java-archive;jar,
                                                            application/mac-binhex40;hqx, application/msaccess;mdb,
                                                            application/msaccess;ade, application/msaccess;adp,
                                                            application/msaccess;mda, application/msaccess;mde,
                                                            application/msaccess;snp,
                                                            application/ms-infopath.xml;infopathxml,
                                                            application/msonenote;one...}
IsLicensingEnforced                                       : False
IsTenantAccessBlocked                                     : False
IsDehydrated                                              : False
IsGuidPrefixedLegacyDnDisabled                            : False
IsMailboxForcedReplicationDisabled                        : False
RBACConfigurationVersion                                  : 0.1 (15.0.1365.1)
IsSyncPropertySetUpgradeAllowed                           : False
RootPublicFolderMailbox                                   : 3b0bd11b-da86-4099-8961-6f660cd8dc57
RemotePublicFolderMailboxes                               : {}
AdminDisplayVersion                                       : 0.20 (15.0.0.0)
IsUpgradingOrganization                                   : False
IsUpdatingServicePlan                                     : False
ServicePlan                                               :
TargetServicePlan                                         :
WACDiscoveryEndpoint                                      :
UMAvailableLanguages                                      : {}
AdfsAuthenticationConfiguration                           :
AdfsIssuer                                                :
AdfsAudienceUris                                          : {}
AdfsSignCertificateThumbprints                            : {}
AdfsEncryptCertificateThumbprint                          :
SiteMailboxCreationURL                                    :
IsValid                                                   : True
ExchangeVersion                                           : 0.0 (6.5.6500.0)
DistinguishedName                                         : CN=dom,CN=Microsoft
                                                            Exchange,CN=Services,CN=Configuration,DC=dom,DC=local
ObjectCategory                                            : dom.local/Configuration/Schema/ms-Exch-Organization-Co
                                                            ntainer
ObjectClass                                               : {top, container, msExchOrganizationContainer}
WhenChanged                                               : 14/03/2018 16:07:46
WhenCreated                                               : 14/04/2011 18:03:32
WhenChangedUTC                                            : 14/03/2018 15:07:46
WhenCreatedUTC                                            : 14/04/2011 16:03:32
Id                                                        : dom
OriginatingServer                                         : SRV-DC-02.dom.local
ObjectState                                               : Unchanged



Seguidamente podremos volver a ejecutar  el asistente de configuración de un entorno híbrido de Office 365. El proceso debería terminar correctamente. 


Espero os sea de utilidad.


No hay comentarios:

Publicar un comentario