Outbound mails are not getting delivered to Edge Servers from Hub Servers

Problem Scenario: Mails are not reaching to edge servers after properly configured Connector towards Edge server as well as receive connector on Edge server for Hub Transport server. Resolution: I found the Access denied error for SMTP Connections of the hub transport server on the Edge server. It was also identified that mails are reaching […]

How to Install Active Directory Federation Services on Server 2012

In this article, I will explain how to install Active Directory Federation Services on Server 2012, Let’s begin, Open Server Manager, Click on Add Roles and Features, Click Next, Select Role-based or features-based installation and Click Next, Select Active Directory Federation Services and Click Next, No need to select any features. Click Next, Click Next, […]

How to Install Certitifcate Services in Server 2012

How to Install Certificate Services in Server 2012

In this article, I will explain how to install Certificate Services(CA) in Server 2012 Open Server Manager, Click on Add Roles and Features, Click on Next Select Roles-based or features-based installation and click Next Select Server on which you want to install Certificate Services and Click Next, Select Active Directory Certificate Services and click Next, […]

How to Promote First Domain Controller in the New Forest

How to Promote First Domain Controller in the New Forest

In this Article, I will guide you how to Promote Domain Controller In the New Forest. Open Server manager Select Manage and Click Add Roles and Features, In Welcome, Click Next Select Server which you need to promote as Domain Controller Select Active Directory Domain Services Select Add Features Group Policy Management Feature is added […]

Exchange Migration 2010 to Exchange 2013-Part 7:Moving Namespaces

Exchange Migration 2010 to Exchange 2013-Part 7:Moving Namespaces

Moving Outlook Anywhere Run the below commands in Exchange server 2010 using Exchange Powershell, $Exchange2013HostName = “mail.windowstechpro.com” Get-ExchangeServer | Where {($_.AdminDisplayVersion -Like “Version 14*”) -And ($_.ServerRole -Like “*ClientAccess*”)} | Get-ClientAccessServer | Where {$_.OutlookAnywhereEnabled -Eq $True} | ForEach {Set-OutlookAnywhere “$_\RPC (Default Web Site)” -ClientAuthenticationMethod Basic -SSLOffloading $False -ExternalHostName $Exchange2013HostName -IISAuthenticationMethods NTLM, Basic} Get-ExchangeServer | Where {($_.AdminDisplayVersion […]