Invoke PowerShell
Description
This action component allows you to synchronously invoke Powershell Command.
Input Properties
- Command Text (String) – The PowerShell command that is to be executed.
- Input (Collection) – A collection of PSObjects that are passed to the writer of the pipeline used to execute the command.
- Is Script (Bool) – Specifies if the command text is a script
- Parameters (Dictionary<string, InArgument>) – A dictionary of PowerShell command parameters.
- PowerShell Variables (Dictionary<string, Argument>) – A dictionary of named objects that represent variables used within the current session of the command.
Output Properties
- Result (Collection) – A collection of TypeArgument object returned by the execution of the command
- Errors (Collection) – A collection of ErrorRecord object returned by the execution of the command.
General Properties
- GlobalWaits (Checkbox) – Apply global waits when PreWait or PostWait are not specified.
- IgnoreError (Checkbox) – Continue the process flow without throwing error.
- PostWait (Checkbox) – Apply specified wait after execute the action.
- PreWait (Checkbox) – Apply specified wait before execute the action.