I’m trying to build a package containing Dragon Professional V16 by Nuance.
However, the installation requires certain processes not to be running, those that have edge WebView. I scripted the following lines in the beginning of the installation script to kill those processes but the Edge process does not seem to be killed.
Close certain running applications that will cause silent installation to fail.
Stop-Process -Name “msedge” -ErrorAction SilentlyContinue -Force
Stop-Process -Name “outlook” -ErrorAction SilentlyContinue -Force
Stop-Process -Name “chrome” -ErrorAction SilentlyContinue -Force
Can anyone help identify why this is occurring?