Nano Server Image erstellen
Mit diesem Skript erstellt ihr ein Nano Server Image. Alles was ihr braucht ist lediglich ein Windows Server ISO.
# Windows Server 2016 ISO Image Media
$ServerISO = “C:\WindowsServer2016.ISO”
# Mount the ISO Image
Mount-DiskImage $ServerISO
# Get the Drive Letter of the disk ISO image
$DVDDriveLetter = (Get-DiskImage $ServerISO | Get-Volume).DriveLetter
# Import NanoServerImageGenerator.psd1 PowerShell module
Import-Module “C:\NanoServer\NanoServerImageGenerator\NanoServerImageGenerator.psd1” -Verbose
Set-Location C:\NanoServer
# Enter Administrator Password
$Password = Read-Host -Prompt “Administrator Password vergeben” -AsSecureString
# Create New Nano Server Image
New-NanoServerImage -MediaPath “$($DVDDriveLetter):” `
-BasePath C:\NanoServer\ `
-TargetPath C:\NanoServer\NanoServer01.vhdx `
-DeploymentType Guest `
-Edition Datacenter `
-ComputerName “NANO-01” `
-AdministratorPassword $Password `
-InterfaceNameOrIndex Ethernet `
-Ipv4Address 192.168.1.10 `
-Ipv4SubnetMask 255.255.255.0 `
-Ipv4Dns 192.168.1.9 `
-Ipv4Gateway 192.168.1.1 `
-EnableRemoteManagementPort `
-Verbose
# Dismount Windows Server 2016 ISO Image
Dismount-DiskImage $ServerISO