Windows
Bootfähigen Windows-USB-Stick unter Fedora Linux erstellen
Windows ISO-Datei downloaden:
Windows 7: https://www.microsoft.com/en-us/software-download/windows7
Windows 8.1: https://www.microsoft.com/en-us/software-download/windows8
Windows 10: https://www.microsoft.com/en-us/software-download/windows10
Windows Server 2019 (Evaluation): https://www.microsoft.com/en-us/evalcenter/evaluate-windows-server-2019
Windows Server 2019 Essentials: https://www.microsoft.com/en-us/evalcenter/evaluate-windows-server-2019-essentials
Windows Server 2019 Hyper-V: https://www.microsoft.com/en-us/evalcenter/evaluate-hyper-v-server-2019
Stick mit MBR/Dos formatieren, z.b. mit GNOME-Disk. Anschliessend Stick mit Hilfe von WoeUSB erstellen:
dnf install WoeUSB
woeusb --target-filesystem NTFS --device Win10_21H1_English_x64.iso /dev/sda
Windows-Updates auf der Kommandozeile installieren
In PowerShell (Run as administrator):
> Install-Module PSWindowsUpdate
> Set-ExecutionPolicy -ExecutionPolicy RemoteSigned
> Get-WindowsUpdate
> Install-WindowsUpdate
Services auf der Kommandozeile abfragen
Powershell:
> Get-Service | select -property Name,DisplayName,Status,StartType
> Get-Service | Where-Object {$_.Status -eq "Running"}
> Get-Service "s\*" | Sort-Object status
Built on 2023-09-21