First, I tried to disable the sandbox and then reactivate later using these commands:
Dism /online /Disable-Feature /FeatureName:"Containers-DisposableClientVM"
Dism /online /Enable-Feature /FeatureName:"Containers-DisposableClientVM"
But as you can imagine, it didn't work out.
For info here is the command I used to install the sandbox on windows home
echo off pushd "%~dp0"
dir /b %SystemRoot%\servicing\Packages\*Containers*.mum >List.txt
for /f %i in ('findstr /i . List.txt 2^>nul') do dism /online /norestart /add-package:"%SystemRoot%\servicing\Packages\%i"
Dism /online /enable-feature /featurename:Containers-DisposableClientVM -All /LimitAccess /ALL
pause
Thanks to everyone who is trying to solve my problem.