dism /Online /Add-Package /PackagePath:Windows6.1-KB2809215-x64.cab /NoRestart
$msu = 'Win7AndW2K8R2-KB3191566-x64.msu'
mkdir c:\windows\temp\ps5
expand.exe $msu -f:* c:\windows\temp\ps5
(gc c:\windows\temp\ps5\PkgInstallOrder.txt | ? { $_ -match 'cab' }) -replace '^\d+=' | % {
& dism /Online /Add-Package /PackagePath:c:\windows\temp\ps5\$_ /NoRestart
}