I have a powershell script that runs a console .exe application. The console application runs a web service. The webservice takes approx 10 mins to complete a task.
In a production environment the powershell script finishes after approx 130 seconds and the web service task is terminated. This is the core problem! Everything works just fine in a local environment.
Powershell version 2 is running both locally and in production.
When running the powershell script from the console. Locally, the powershell script prints the return value of the console app. In production, nothing is printed to the screen. It just displays a new command prompt.
The task can be run async from a web page in the production environment just fine.
All application code/config files are the same on both local/production environments.
The only thing that makes sense is the powershell script is timing out and terminating the console app that in turn terminates the web service.
Have researched powershell timeouts and have played with different scripts. But the fact that it works locally seems to indicate a powershell default setting problem.
This page describes timeout settings: http://www.ehow.com/how_12026004_set-timeout-powershell.html
But running: Dir WSMan:\localhost\shell results in a path not found error when run in production.
Powerscript is below but has had all sensitive information removed. Success email is sent after script is run.
# attempt to exe file. iex is an alias for the invoke-expression cmd
iex "Reminder.exe"
$smtpServer = ""
$fromAddress = ""
$toAddress = ""
$subject = "SUCCESS"
$msgBody = ""
# $? lets us know if the previous command was successful or not
# $LASTEXITCODE gives us the exit code of the last Win32 exe execution
if (!$? -OR $LASTEXITCODE -gt 0)
{
$subject = "FAIL"
}
$smtpClient = new-object Net.Mail.SmtpClient($smtpServer)
$smtpClient.Credentials = $senderCreds
$smtpClient.Send($fromAddress,$toAddress,$subject,$msgBody)
&to invoke Win32 programs instead ofInvoke-Expressionsuch as& reminder.exe. See more info from the Windows PowerShell blog aboutInvoke-Expressionhere. – Andy Arismendi Jan 4 '12 at 20:22reminder.exeis your console application that runs the web service, correct? Also you could you describe in a little more detail the difference between the production environment and your local environment in terms of how you are invoking the script? Are you using PowerShell remoting to run the script remotely on the production system? – Andy Arismendi Jan 4 '12 at 20:35& ping.exe localhost -n 300 >$NULL. This run ping.exe for about 300 seconds. You can also measure the time it takes usingMeasure-Command {& ping.exe localhost -n 300}. – Andy Arismendi Jan 4 '12 at 21:12