Snippet: one-liners to install all RSAT utilities

Windows Server 2025:

Get-WindowsFeature | Where Name -like "*RSAT*" | Install-WindowsFeature

Windows 11:

Get-WindowsCapability -Online | Where Name -like "*RSAT*" | Add-WindowsCapability -Online