In my batch file, I call the powershell script like this:
powershell.exe "& "G:\Karan\PowerShell_Scripts\START_DEV.ps1"
Now, I want to pass a string parameter to START_DEV.ps1. Let's say the parameter is w=Dev.
How can I do this?
|
In my batch file, I call the powershell script like this:
Now, I want to pass a string parameter to How can I do this? |
||||
|
and inside your script head:
This if you want to use the built-in variable
and inside your script head:
This if you want a named parameter. You might also be interested in returning the error level:
The error level will be available inside the batch file as |
|||||
|
|
Assuming your script is something like the below snippet and named testargs.ps1
You can call this at the commandline as:
This will print "Test String" (w/o quotes) at the console. "Test String" becomes the value of $w in the script. |
|||
|
|
|
When a script is loaded, any parameters that are passed are automatically loaded into a special variables As an example, create a file called
As a general recommendation, when invoking a script by calling PowerShell directly I would suggest using the |
|||
|
|