Dear PowerShell users of SO,

We are using a long running PowerShell script to perform a lot of small operations that can take an extremely long amount of time. After about 30 minutes the scripts froze. We were able to get the scripts to start running again by pressing Ctrl-C which caused the scripts to resume execution instead of killing the process.

Is there some sort of script timeout or mechanism that prevents long running scripts within PowerShell?

Thank you for your help.

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

I have not had any responses to this question after a really long time. I am going to assume it was something wrong with my script or a child thread freezing. If this is not the case please answer.

link|improve this answer
Actually, I'm having behavior that sounds the same as yours. I have a template that grabs a list of computers on the domain from ActiveDirectory and performs some given task (usually a get-wmiobject). But even on my simplest test script that just does Test-Connection, it hangs on several machines. I also notice that it is the same machines, and that if I reboot the problem machine, the problem often goes away. I'll keep poking around, and I'll post here if I find a definite answer. – labyrinth Feb 7 at 5:56
I am not sure whether this was the eventual reason but I have noticed that some executables that need console input will simply not work in the ISE (there is no way to provide extra input). I don't think this was the issue here and it probably was the script I had written. – smaclell Feb 7 at 21:40
In my test script, though, it is really just a wrapper to apply test-connection to all domain computers. I don't believe Test-Connection should ever require further input, so I don't know why it's hanging. Also, my script runs each as a job, but it still halts on particular machines without errors--it can even run all night. But if I press ctrl-c, it continues on without problem... – labyrinth Feb 10 at 4:13
feedback

Your Answer

 
or
required, but never shown

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