We have a series of retrieve process that run each morning. Most of these can run Async, but I have had two problems with using Jobs to accomplish this.
- If we pass simple variables to the job we have to make a DB call to get the full record and Dot Includes to the functions we have don't seem to want to work.
- If we gather the details and populate the class to pass along we get serialization issues.
Once the process is over the batch needs to log-out to release the session. Simply waiting for the process to close doesn't seem to always cut it for us on 2003 Server. But if Start has each one running on its own, we need to know when those are done. So before we can call the ShutDown.exe logout command, we need to test that every powerShell session is closed. And we need to make sure that only the sessions in this RDC are being checked. It is helpful to mention that the server has 5 or 6 interactive users RDC in at times.
So:
001
002 003 004 005 006 007 008 009 010 |
#http://blogs.msdn.com/b/powershell/archive/2009/02/12/stopping-every-instance-of-powershell-exe-except-the-one-i-m-in.aspx
#$SessionID = Get-Process | Where-Object { $_.ID -eq $pid } | Select -expandproperty SessionID # 24 MilliSeconds $SessionID = [System.Diagnostics.Process]::GetCurrentProcess() | Select -expandproperty SessionID; # 15 MilliSeconds Do { Sleep -seconds 30 $ActivePSEXE = Get-process PowerShell | Where {$_.SessionID -eq $SessionID -and $_.ID -ne $pid} } While ($ActivePSEXE) |
------
Will asked why not use a threading approach, but these scripts load some generated code that has overlapping namespaces and they would fail to load if called from the same appdomain. (9:17a CT)
No comments:
Post a Comment