0

Can we capture logs if we run a job from power shell . As we are trying to run a control-m job from windows servers 2008 and its getting failed so we tried to run it from power shell . Is there any way to capture logs as job is failing in power shell also ?

Vish
  • 2,144
  • 5
  • 25
  • 48
Anurag
  • 1
  • 3

1 Answers1

0

You could use Start-Transcript for logging the actions/output of a script. You need to make sure the user running the script has write access to the output location.

Start-Transcript -Path 'C:\path\to\transcript.log' -Append

# production code here

Stop-Transcript
Ansgar Wiechers
  • 193,178
  • 25
  • 254
  • 328