Windows

Windows ISO-Download

Windows ISO-Datei downloaden:

Bootfähigen Windows-USB-Stick unter Fedora Linux erstellen

Zunächst ISO-Datei downloaden. Dann einen 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 2024-07-16