@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