Install Server Core - Paiet/Tech-Journal-for-Everything GitHub Wiki

https://docs.microsoft.com/en-us/windows-server/administration/server-core/what-is-server-core [ ]manage Windows Server Core installations using Windows PowerShell, command line, and remote management capabilities

Install and configure Windows Server Core

Installation requirements System Requirements Processor | 1.4 GHz 64-bit RAM | 512 MB Disk space | 32 GB

If you close out of cmd hit CTL ALT DEL to bring up Task Manager

  1. Configure the network connection
  2. Setting the time zone
  3. renaming the computer
  4. Joining a domian
  5. Enabling Remote Deskyop
  6. Configure Windows Update Settings

Demo Tools

  • Netdom.exe
  • Sconfig.exe
  • Netsh.exe (old)
  • PowerShell
  • Server Manager
  • MMC Snapins

###Post Install Configuration PowerShell To assign a static IP ipconfig /all copy computer name to notepad

Launch PowerShell powershell.exe New-NetIPAddress -interfaceindex < # > -ipaddress xxx.xxx.xxx.xxx -prefixlength 24 -defaultgateway xxx.xxx.xxx.xxx Netsh.exe To assign a static IP netsh interface ip set address "connection name" static 192.168.0.101 255.255.255.0 192.168.0.1 Netdom.exe To Rename using Netdom type: netdom renamecomputer ComputerName /NewName: place new name here Then restart with shutdown /r to join domain using Netdom type:

join ComputerName /domain: < Domain Name > /user: < UserName > /Password: assuming system is using DHCP, otherwise you must manually configure.

Sconfig Change machine name (2) (restart required) Set time zone (9) Set IP address (8) Set DNS Server Ping domain controller Join domain (1) (restart required) Log in as domain admin Get-NetAdapter Enable-NetAdapter -Name < Name >

⚠️ **GitHub.com Fallback** ⚠️