Table des matières

Installation d'un serveur Core Windows Server

Ressources

Installation

Configuration

Rename-Computer -NewName "srv-core"
shutdown /r

Lien : https://www.it-connect.fr/chapitres/definir-une-configuration-tcpip/

Get-NetAdapter
# identifier l'index de l'interface
New-NetIPAddress –InterfaceIndex 12 –IPAddress 192.168.1.100 –PrefixLength 24 –DefaultGateway 192.168.1.1

Définir le DNS :

Set-DnsClientServerAddress -InterfaceIndex 6 -ServerAddresses 192.168.100.11
# Pour la vérification :
Get-DnsClientServerAddress -InterfaceIndex 6

Serveur Core Windows Server