Deployments stuck - Logs show last line as "Deployment type is [Installation]"

My deployment for flash and for IE 11 are both getting stuck seemingly when launching the first MSI, this is causing deployments to not run successfully. The only trace I’m seeing is the logs from C:\windows\software\logs are ending after - Deployment type is [Installation].

I don’t really know what else to do to troubleshoot this. It’s strange that this seemingly happened all of the sudden, as I have been using the same script for the flash deployment.

From SCCM - I’m using - Deploy-Application.exe -DeploymentType “install” -DeployMode “Silent” as the parameter within SCCM.

Sorry for mass of logs, but I wanted to provide any information I could. Please help point me in the right direction!

Here is my log for flash:
http://pastebin.com/KPzmRZLx
Here is my log for IE:
http://pastebin.com/CTYTQExe

Here is my deployment for flash:
http://pastebin.com/8m1dP0HP
Here is my deployment for IE:
http://pastebin.com/Gt4N3SyR

Add a -Force to your Stop-Process
I would also move the mms.cfg to Post-Installation

Thanks Brian. I modified those close lines of code to be the following.
Get-Process -name “processname” | Stop-Process -Force

I also moved the copying of the mms.cfg to the post-install.

I’m going to give this a go and follow up.
Thanks!