Tag: 2012
-
Windows server 2012 activation grace period
Slmgr /rearm Shutdown /r /t 0 Thanks, Malcolm
-
How to configure Server Core as Domain Controller
UNOFFICIAL Add-WindowsFeature AD-Domain-Services Import-Module ADDSDeployment Install-ADDSForest ` -CreateDnsDelegation:$false ` -DatabasePath “C:\Windows\NTDS” ` -DomainMode “Win2012” ` -DomainName “CHALMERS.net” ` -DomainNetbiosName “CHALMERS” ` -ForestMode “Win2012” ` -InstallDns:$true ` -LogPath “C:\Windows\NTDS” ` -NoRebootOnCompletion:$false ` -SysvolPath “C:\Windows\SYSVOL” ` -Force:$trye
-
How to install a DNS Server on Server Core
UNOFFICIAL [draft] Install-windowsfeature DNS Add-DnsServerPrimaryZone -Name “DMZ.ServerCore.Net” -ZoneFile “dmz.servercore.net.dns” dnscmd.exe localhost /ZoneAdd 0.209.17.85.in-addr.arpa /Primary /file 209.17.85.in-addr.arpa.dns
-
How to install a DHCP Server on Server Core
UNCLASSIFIED [draft] Install-WindowsFeature DHCP –IncludeManagementTools Add-DhcpServerv4Scope -Name “Internal” -StartRange 192.168.0.10 -EndRange 192.168.0.250 -SubnetMask 255.255.255.0 -Description “Internal Network” Set-DhcpServerv4OptionValue -ScopeID “Internal ” -DNSServer 192.168.0.1 -DNSDomain demo.servercore.net -Router 192.168.0.254 Add-DhcpServerInDC -DNSName demo.servercore.net Source : https://4sysops.com/archives/how-to-install-a-dhcp-server-on-server-core/