Windows2016:DomainController: Difference between revisions

From Wiki³
m (Kyau moved page Windows2016:Install to Windows2016:DomainController without leaving a redirect)
Line 61: Line 61:
Install the Domain Controller feature for Windows.
Install the Domain Controller feature for Windows.
{{console|prompt=false|powershell=true|1=PS C:\> {{yellowBold|Install-WindowsFeature}} AD-Domain-Services {{white|-IncludeManagementTools}}}}
{{console|prompt=false|powershell=true|1=PS C:\> {{yellowBold|Install-WindowsFeature}} AD-Domain-Services {{white|-IncludeManagementTools}}}}
When finished, create the first domain controller in a new forest/domain.
{{console|prompt=false|powershell=true|1=PS C:\> {{yellowBold|Install-ADDSForest}} {{white|-DomainName}} {{blueBold|"wa.kyaulabs.com"}} {{white|-DomainNetbiosName}} {{blueBold|"KYAULABS"}}}}
{{Note|1=The {{mono|DomainName}} here should be the FQDN, while the {{mono|DomainNetbiosName}} is the NetBIOS name for the root domain.<br/>If you do not specify this it will use the subdomain of your domain. (eg. In this instance it would be {{mono|WA}})}}
Provide a SafeModeAdministratorPassword and then confirm you want the server to be configured and restarted.


= {{Icon24|sitemap}} Conclusion =
= {{Icon24|sitemap}} Conclusion =

Revision as of 12:25, 8 July 2018

IconUNDER CONSTRUCTION: The document is currently being modified!
Icon  Back to Category:Windows

Icon Introduction

The Server Core option is a minimal installation option that is available when you are deploying the Standard or Datacenter edition of Windows Server. Server Core includes most but not all server roles. Server Core has a smaller disk footprint, and therefore a smaller attack surface due to a smaller code base.[1] Most notably, no Windows Explorer shell is installed. All configuration and maintenance is done entirely through command-line interface windows, or by connecting to the machine remotely using Microsoft Management Console (MMC), remote server administration tools, and PowerShell.[2]

Testing was done as a virtual machine on my Dell PowerEdge R610 using Hyper-V Server, the following image was used:

Icon en_windows_server_2016_x64_dvd_9718492.iso

Icon Installation

Insert the Windows Server 2016 boot media into the machine and reboot (or power on) the machine, booting from the inserted media. Follow the instructions on the screen to install, make sure you do not select (Desktop Experience) as this is not Server Core. Upon reboot you will be prompted to set an Administrator password, doing so will log into the machine finalizing the installation.

Use the command prompt provided to launch Windows PowerShell.

C:\> powershell

Icon Networking

Before we can begin with the domain controller the network needs configuring.

Rename the computer.

PS C:\> Rename-Computer -NewName DC1

List the current network adapters.

PS C:\> Get-NetAdapter -Physical

Locate the NIC that you want to setup.

Set the IP information.

PS C:\> New-NetIPAddress -InterfaceAlias "Ethernet" -IPAddress 10.0.42.35 -AddressFamily IPv4 -PrefixLength 24 -DefaultGateway 10.0.42.1

Update the DNS servers.

PS C:\> Set-DnsClientServerAddress -InterfaceAlias "Ethernet" -ServerAddress 127.0.0.1
IconMake sure the DNS server address is set to localhost or the domain controller will not function correctly. It needs to use it's own DNS.

Icon Remote Management

In order to use RSAT and Windows Admin Center remotely a few changes need to be made.

Enable WinRM.

PS C:\> Enable-PSRemoting -Force

Enable remote authentication acceptance.

PS C:\> Enable-WSManCredSSP -Role server

Enable firewall rules for remote management.

PS C:\> Set-NetFirewallRule -DisplayGroup 'Windows Management Instrumentation (WMI)' -Enabled true -PassThru


PS C:\> Set-NetFirewallRule -DisplayGroup 'Remote Event Log Management' -Enabled true -PassThru

Icon Housekeeping

Remove Windows Defender.

PS C:\> Uninstall-WindowsFeature -Name Windows-Defender-Features

Check to see that the timezone is set properly.

PS C:\> Get-TimeZone

If you need to change it, use the following:

PS C:\> Set-TimeZone -Id "Pacific Standard Time"

Finally reboot the machine to commit the machine name and IP changes.

PS C:\> Restart-Computer

Icon PowerShell

Since PowerShell will be used for a lot of the remote management it is a good idea to update to the latest version.

To install, copy to the server via windows SMB.

PS C:\> msiexec /i PowerShell-6.1.0-preview.3-win-x64.msi

Icon Domain Controller

Install the Domain Controller feature for Windows.

PS C:\> Install-WindowsFeature AD-Domain-Services -IncludeManagementTools

When finished, create the first domain controller in a new forest/domain.

PS C:\> Install-ADDSForest -DomainName "wa.kyaulabs.com" -DomainNetbiosName "KYAULABS"
IconThe DomainName here should be the FQDN, while the DomainNetbiosName is the NetBIOS name for the root domain.
If you do not specify this it will use the subdomain of your domain. (eg. In this instance it would be WA)

Provide a SafeModeAdministratorPassword and then confirm you want the server to be configured and restarted.

Icon Conclusion

The server should now be completely setup for production VMs.

Icon References