PowerShell
Use this Node to execute a PowerShell script on a remote server via a DropPoint.
Revision History
1.0.0.8 Initial Release
Properties
Connection
Type: Connection Input
The Connection Property
Username
Type: String
The username of the user to impersonate when a runspace is being used
Password
Type: Password
The password of the user to impersonate when a runspace is being used
SnapIns
Type: Multiline Text
Provides the names of the snap-in's that should be referenced
RemotingUri
Type: String
Provides the URI to the runspace. For example http://servername/powershell
RemotingShellUri
Type: String
Provides the URI to the shell of the runspace. For example http://schemas.microsoft.com/powershell/Microsoft.Exchange
OutputHandling
Type: List
None - No serialization will take place. The output will be generated by executing the .NET .ToString()
method
Text - The output will be returned as text. The Node does this by appending | Out-String
to the command
FormatList - A list will be returned. The Node does this by appending Format-List
to the command
Serialized - the data will be serialized to an XML document
Script
Type: Multiline Text Input
Provides the PowerShell script that should be executed
Output
Type: Multiline Text Output
Returns the result of the PowerShell script, according to the OutputHandling
mode that has been specified.
Remarks
Use this Node to execute PowerShell commands on a remote server by routing the Connection through a DropPoint.