When you run a powershell window in the background, how do you re-connect to it? Or instead, is it's output intended to be viewed via log file at that point?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Normally you would just output to a log and examine that for a scheduled task. However, if you can tolerate the console window flashing up briefly, you can pinvoke to the Win32 API to control the visiblity of the console window e.g.:
Normally you wouldn't want to show the window but perhaps you define an environment variable and then have the script inspect that environment variable for a certain value and show the window in that case e.g. |
|||
|
|