You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In some circumstances (did not dig) Stop-Process waits for confirmation.
Work around: use -Force -Confirm:false in Open-ExcelPackage function, line 17.
In this context the expression in the line 18 while (Get-Process -Name "excel" -ErrorAction Ignore) {} can cause an infinite loop. I would introduce a timeout.
The text was updated successfully, but these errors were encountered:
In some circumstances (did not dig)
Stop-Process
waits for confirmation.Work around: use
-Force -Confirm:false
inOpen-ExcelPackage
function, line 17.In this context the expression in the line 18
while (Get-Process -Name "excel" -ErrorAction Ignore) {}
can cause an infinite loop. I would introduce a timeout.The text was updated successfully, but these errors were encountered: