Posts

Showing posts from October, 2016
To add all computers to the list of TrustedHosts In a notepad file add the server names which aretobe added as trusted host and save it with any name, I am doing it as serverlist.txt in C: server1.example.com,ms12.uc.com,ms13.uc.com from powershell run the below commands. $serverlist = get-content -Path C:\serverlist.txt foreach ($server in $serverlist) {set-item wsman:\localhost\Client\TrustedHosts -Value $se rver.ToString() -Force} This should get the servers added. You should be able to see the server get-item wsman:\localhost\Client\TrustedHosts | fl

Implementing certificate based authentication in Exchange server 2016

Sometimes companies wish to implement certificate based authentication for Active Sync users if Mobile Device Management tool is being deployed. High Level steps involved to implement certificate based authentication for Active Sync are: 1. An additional IP (this depends, we will talka bout it later in the post ) 2. Creating an additional site in IIS 3. Creating an Active Sync Virtual directory under the new site. 4. Certificate from 3rd Party Refer the video Link below.