Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Undefined links corrected

...

Instead, the script retrieves the parameter values by reading the environment variable for each parameter (see Passing Parameters to shell-jobs How to pass parameters from JobScheduler to a PowerShell script):

Code Block
languagepowershell
 $Dir = $env:SCHEDULER_PARAM_FolderName
 $Ext = $env:SCHEDULER_PARAM_FileNameExtension
 .
 ...

...