Contrarily to what even Microsoft says, both Hyper-V and Windows Sandbox are available for Windows 10 Home. The procedures are simple, and just require an admin powershell prompt (note that a reboot will be required):

Get your copy/paste skills ready!

Install Hyper-V on Windows 11 Home

Get-ChildItem $env:SystemRoot\Servicing\Packages\*Hyper-V*.mum | ForEach-Object { dism -Online -NoRestart -add-package:"$_" }
Enable-WindowsOptionalFeature -All -Online -LimitAccess -FeatureName Microsoft-Hyper-V 

Install Windows Sandbox on Windows 10 Home

Get-ChildItem  $env:SystemRoot\Servicing\Packages\*DisposableClientVM*.mum | ForEach-Object { dism -Online -NoRestart -add-package:"$_" }
Enable-WindowsOptionalFeature  -All -Online -FeatureName Containers-DisposableClientVM

Another useful miniz! 👋

minis