Cumulative Update 5 for Microsoft Exchange Server 2016 was released on March 21, 2017. Several nonsecurity issues are fixed in this cumulative update or a later cumulative update for Exchange Server 2016. This release includes support for Windows time zone updates released Read More …
Windows Server 2012 R2 powershell script to generate report for installed Hotfix-Update for Bulk Servers
=============================================================== function Hotfixreport { $computers = Get-Content C:\serversHF.txt $ErrorActionPreference = ‘Stop’ ForEach ($computer in $computers) { try { Get-HotFix -cn $computer | Select-Object PSComputerName,HotFixID,Description,InstalledBy,InstalledOn | FT -AutoSize } catch { Write-Warning “System Not reachable:$computer” } } } Hotfixreport > “$env:USERPROFILE\Desktop\Hotfixreport.csv” Read More …
Installing Password Export Server
The article is just a go through for Password Export Server installation and configuration for cross forest Active Directory users migration keeping the same password. The Active Directory Migration Tool (ADMT) uses the Password Export Server service version 3.1 (PES Read More …
ADMT Server Installation Guide
The article is just go through for Microsoft Active Directory Domain Migration tool prerequisites & installation, it will handy for cross forest Active Directory migration projects. Windows Server AD Migration Tool The Windows Server Active Directory Migration Tool (ADMT) V3.2 is Read More …
Cumulative Update 4 for Exchange 2016
Exchange 2016 CU4 has been released to the Microsoft download centre! Exchange 2016 has a different servicing strategy than Exchange 2007/2010 and utilises Cumulative Updates (CUs) rather than the Rollup Updates (RU/UR) which were used previously. CUs are a complete Read More …
Exchange 2013 Schema And Object Values In AD
Table of Exchange 2013 Schema Versions Exchange Version msExchProductId rangeUpper MESO objectVersion Organisation objectVersion Exchange 2013RTM 15.00.0516.032 15137 13236 15449 Exchange 2013CU1 15.00.0620.029 15254 13236 15614 Exchange 2013CU2 15.00.0712.024 15281 13236 15688 Exchange 2013CU3 15.00.0775.038 15283 13236 15763 Exchange 2013SP1 Read More …
Cumulative Update 15 for Exchange 2013
Exchange 2013 CU15 has been released to the Microsoft download centre! Exchange 2013 has a different servicing strategy than Exchange 2007/2010 and utilises Cumulative Updates (CUs) rather than the Rollup Updates (RU/UR) which were used previously. CUs are a complete Read More …
Power Shell script changes “All” UPNs at Office 356 Tenant
Now a days I am busy working with Domain & Email services consolidation project and got an opportunity to do Vanity Domain & Mailbox migration between O365 tenant. One of the key step is to migrate the SMTP domain source Read More …
AzureAD Pass-Through Authentication and Seamless Single Sign-on
Azure AD Pass-Through Authentication and Seamless Single Sign-on are now both in public preview! Azure AD pass-through authentication Azure AD pass-through authentication provides a simple, secure, and scalable model for validation of passwords against your on-premises Active Directory via a Read More …
Powershell login Script for Office 365
Copy the following content to a notepad and save as .PS1 Start-Service WinRM Set-ExecutionPolicy RemoteSigned Import-Module MSOnline $O365Cred = Get-Credential $O365Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.outlook.com/powershell -Credential $O365Cred -Authentication Basic -AllowRedirection Import-PSSession $O365Session Connect-MsolService –Credential $O365Cred Open the powershell as Read More …