- Get link
- X
- Other Apps
How to install Exchange server 2019 on Windows server 2016 Code edition?
In my last post, we installed Exchange Server 2019 preview on the Windows server 2016 on Desktop preview. In this post, we will install the same on the Server Core.Once you have installed the Windows Server 2016 Core edition, Rename the computer assign static IP and DNS, join the system to the Domain if installing in Existing LAB (Note Installing in production is not recommended at this time), Sconfig.cmd can be used to configure these settings.
If setting a new LAB, after the initial configuration Promote the server to a domain controller.
Import-Module ADDSDeployment
Install-ADDSForest `
-CreateDnsDelegation:$false `
-DatabasePath "C:\Windows\NTDS" `
-DomainMode "WinThreshold" `
-DomainName "Samayra.com" `
-DomainNetbiosName "SAMAYRA" `
-ForestMode "WinThreshold" `
-InstallDns:$true `
-LogPath "C:\Windows\NTDS" `
-NoRebootOnCompletion:$false `
-SysvolPath "C:\Windows\SYSVOL" `
-Force:$true
- Exchange Server 2019 Public Preview
- Visual C++ Redistributable Packages for Visual Studio 2013 (vcredist_x64.exe)
- .Net 4.7.1 offline installer (required only for Windows Server 2016)
D:\>ExchangeISO\UCMARedist\setup.exe
Once they are installed run the following CMD to install the Exchange.
Setup.exe /m:install /roles:m /IAcceptExchangeServerLicenseTerms /InstallWindowsComponents
- Get link
- X
- Other Apps
Comments
Post a Comment