Benutzer:MovGP0/Core Server
aus Wikipedia, der freien Enzyklopädie
MovGP0 | Über mich | Hilfen | Artikel | Weblinks | Literatur | Zitate | Notizen | Programmierung | MSCert | Physik |
Core ServerCore Server ist auf der ISO des Windows Server zu finden. Download-Link: Image mounten $ImagePath = C:\Users\<USERNAME>\Downloads\windows.iso
Mount-DiskImage -ImagePath $ImagePath -StorageType ISO
$DriveLetter = (Get-DiskImage -ImagePath $ImagePath | Get-Volume).DriveLetter
Verzeichnis auf Festplatte kopieren $imageGeneratorPath = 'C:\NanoServerImageGenerator\'
Copy-Item -Path "$DriveLetter:\NanoServer\NanoServerImageGenerator" -Destination $imageGeneratorPath -Recurse
Image erstellen Import-Module $imageGeneratorPath\NanoServerImageGenerator
New-NanoServerImage PARAMETER
Image dismounten Dismount-DiskImage -ImagePath $ImagePath
Installation in VMInstallation auf HostSetzen der IP-AdresseHerstellen der Remote-Verbindung$nanoServerIP = 192.168.1.1
Set-Item WSMan:\localhost\Client\TrustedHosts $nanoServerIP -Force
Enter-PSSession -ComputerName $nanoServerIP -Credential ~\Administrator
Installing Windows Updates$sess = New-CimInstance -Namespace root/Microsoft/Windows/WindowsUpdate -ClassName MSFT_WUOperationsSession
Invoke-CimMethod -InputObject $sess -MethodName ApplyApplicableUpdates
Restart-Computer
|