Forum Discussion
Jeffrey_Fronius
Jun 10, 2020Brass Contributor
Suppressing the "Microsoft Edge Closed Unexpectedly" Prompt
Good day! We'd like to request a feature for the ability to suppress the "Microsoft Edge Closed Unexpectedly" prompt that appears if Edge were to crash or terminate unexpectedly. We'd like the a...
pkutaj
Jan 18, 2021Copper Contributor
This is just for the use case when you want to remove the unwanted prompt in case the application is killed with Stop-Process -Force (kill) command with a script and that could be achieved with. This returns the prompt:
Stop-Process msedge -Force
This does not:
Get-Process msedge | % {$_.CloseMainWindow() | Out-Null} | Stop-Process -Force