Info | ||||
---|---|---|---|---|
| ||||
|
Table of Contents | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
|
There are at least two different approaches to pass parameters to a ps-PowerShell script:
- as command line parametersarguments
- as environment variables
As an example for both methods we will use a simple script which will list the content of a folder, filtered by a given filename extension. The parameters are defines in an order like this:
Code Block | ||
---|---|---|
| ||
<[http://www.sos-berlin.com/doc/en/scheduler.doc/xml/order.xml order] <order title="Executes the script ListFilesByExtension.ps1"> <[http://www.sos-berlin.com/doc/en/scheduler.doc/xml/params.xml params]><params> <[http://www.sos-berlin.com/doc/en/scheduler.doc/xml/param.xml param ]<param name="Script_Filename" value="ListFilesByExtension.ps1"/> <[http://www.sos-berlin.com/doc/en/scheduler.doc/xml/param.xml param ]<param name="FolderName" value="c:\temp"/> <[http://www.sos-berlin.com/doc/en/scheduler.doc/xml/param.xml param ]<param name="FileNameExtension" value=".txt"/> </params> <[http://www.sos-berlin.com/doc/en/scheduler.doc/xml/run_time.xml run_time ]<run_time let_run="no"/> </order> |
'FolderName' ist the name of the folder which has to that should be listed and 'FileNameExtension' is the value of the extension which that will be selected.
The script code, without the initialisation of the parameters, is shown given below:
Code Block | ||
---|---|---|
| ||
$Dir = .....
$Ext = .....
$a = "List $Dir with Extension $Ext `n" + "==========================";
$a
# Filenames as a list
GCI $Dir -R | Where \{$_.Extension -EQ $Ext\} | sort-Object -descending Length | Format-List -property *
|
using command line parameters
...
Using Command Line Parameters
Using Position Parameters
Code Block | ||
---|---|---|
| ||
powershell.exe ... -file "%SCHEDULER_PARAM_SCRIPT_FILENAME%" "%SCHEDULER_PARAM_FolderName%" "%SCHEDULER_PARAM_FileNameExtension%" |
Code Block | ||
---|---|---|
| ||
$Dir = $args[0] $Ext = $args[1] . ... |
We do not recommend using parameters like this:
- Depending on the parameters every job
...
- will be different.
- No general solution for a generic
...
- PowerShell job is possible.
...
- This will
...
- increase the effort for maintenance of jobs.
- In Addition,
...
- accessing a parameter by its position
...
- can lead
...
- to errors
- if someone changes the
...
- command line arguments without
...
- adjusting the script
...
- or
- if the same script will be used by different jobs
...
- with
...
- different command
...
- line arguments.
- The better approach is to use the parameters by name.
...
Using Named Parameters
Starting a script like below:
Code Block | ||
---|---|---|
| ||
.\CreateVariablesFromEnvironment.ps1 -Prefix "VARSCHEDULER_PARAM_" |
and the first statement in the script is the param- statement:
Code Block | ||
---|---|---|
| ||
param ([string] $Prefix)
|
will fill the variable "Prefix" with the Value "VARSCHEDULER_PARAM_
".
using environment variables
Using Environment Variables
JobScheduler provides parameters of jobs and orders JobScheduler can provide order- and job-parameter as environment variables to the a shell.
...
Using Explicit Variables
The command line , which that is used to start the script, has no would not make use of additional parameters for the script:
Code Block |
---|
powershell.exe ... -file "%SCHEDULER_PARAM_SCRIPT_FILENAME%" |
The scripts gets the values for the parameters 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 | ||
---|---|---|
| ||
$Dir = $env:SCHEDULER_PARAM_FolderName
$Ext = $env:SCHEDULER_PARAM_FileNameExtension
.
...
|
Defining all needed required variables at the beginning of the script will give one an overview, which variables are used from JobScheduler. In other words, this could be part of an integrated automatic documentation.
...
Using by parsing all environment variables
JobScheduler provide more environment variables as the one which are related to a parameter. it is possible to get all this variables as "internal" named variables into the powerscript.
The script below shows how it works:
Code Block | ||
---|---|---|
| ||
# .SYNOPSIS # Creates global powershellPowerShell variables from environment variables # .PARAMETER Prefix # Only environment variables with this prefix are converted. The prefix is cut off from # the variable name # .Example # .\CreateVariablesFromEnvironment # # All environment variables will be converted, e.g. VAR_TEST will become $VAR_TEST # .Example # .\CreateVariablesFromEnvironment -Prefix "SCHEDULER_PARAM_" # # All environment variables beginning with VAR_ will be converted, e.g. VAR_TEST will become $TEST param ([string] $Prefix) # $Prefix = "SCHEDULER_PARAM_" $envVariables = @(dir env:$Prefix*) foreach($envVar in $envVariables) \{ $name = $envVar.Name $name = $name.Substring($Prefix.Length) Set-Variable -name $name -value $envVar.Value -Scope Global \} |
Executing this script standalone or as part of another script it will parse all environment variables and create for each variable , which name is starting with "with the prefix SCHEDULER_PARAM_
" a powerscript PowerShell variable. For example, the environment variable "SCHEDULER_PARAM_FOLDER_NAME" is then acessible with FOLDERNAME is then accessible by the script as $FOLDER_NAME. This approach is more flexible than the first one, but contrasted to the first one, it is not so easy to find out, which variables from JS are used. $FOLDERNAME.
- The advantage
...
- of using parameters
...
- from environment variables is that
...
- access to
...
- parameters is
...
- effected by the
...
- name of the parameter, not by
...
- its position on the command line
...
- .
...
- This would allow to create
...
- a generic
...
- job to run
...
- PowerShell scripts.
...
Related Downloads
...
See also
...
- How to execute a PowerShell script with JSJobScheduler
- Why can't JobScheduler execute Windows PowerShell scripts?Setting the executionPolicy to execute .ps1-scripts
- How to get the Exit exit code of a powershell PowerShell script
- A How to configure a generic PowerShell Jobjob
- How to pass parameters to subsequent jobs in a job chain
- How to set parameters in shell scripts and make them accessible to the next node in a job chain
- Example for control of
- Passing Parameters to shell-jobs
- Passing parameters from shell-jobs to JS
- How to control the process flow of a jobchain job chain by exit codes