vote up 3 vote down star
1

I'm using Powershell to test a COM object method call. Due to poor design/coding/everything, this COM object method simply hangs when it errors. My default instinct is to control+c out of it, but this does not work. Do I have to kill Powershell to kill a hung COM method call?

Thanks in advance.

flag

3 Answers

vote up 5 vote down check

Are you calling a method on a COM object which lives in the address space of the PowerShell process? If so then yes you must kill PowerShell in order to un-hang the call.

EDIT Matthew asked if AppDomains could be used to fix this problem.

Unfortunately no it cannot. The key here is that the COM object is executing native code. This means that at the point where the COM object hangs, the thread is in native code. There is nothing you can do from managed code to unstick a thread in native code. Even calls to .Abort() won't take effect until the thread returns to managed code.

link|flag
Not exactly sure what you mean, but I think the answer is yes. I've instantiated the object in PS with "new-object -Com". – AJ Jun 30 at 14:33
Is that true for the process or could he use an AppDomain for isolation? – Matthew Whited Jun 30 at 14:35
@Matthew yes, I added a detailed reason why to my answer – JaredPar Jun 30 at 14:44
@PITADev then most likely it is in the address space of the PS process – JaredPar Jun 30 at 14:44
@JaredPar, thanks. It kind of sucks, but it's not Powershell's fault, of course. – AJ Jun 30 at 14:49
vote up 0 vote down

You can try:

[System.Runtime.Interopservices.Marshal]::ReleaseComObject($obj)

Or pipe the process to Stop-Process, adding -Force could help as well.

link|flag
vote up 1 vote down

The easy way for me is to use pskill.

link|flag
That won't work in this case. The process that is hung is PowerShell because it's making a call to an inproc COM object that's hung – JaredPar Jun 30 at 14:47
Yeah - I saw your answer and the OP's comment after I posted. – Harper Shelby Jun 30 at 14:48

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.