I have the below code that goes through and gets scheduled tasks info and puts the output that occurs on the screen to a log file.
However, what I have noticed is t
None of the above worked for me. I found a link from 2009 with discussions of the issue. But a microsoft blog from 2010 solved the issue for me.
In short, pipe the native command output to Out-Default.
schtasks.exe /query /S $name /fo CSV /v | Out-Default
{I didn't really try that line myself, but you get the idea.}