Aneesh,
WFA can do anything that a powershell and .NET can do and a powershell can do (almost) anything. You don't need any external tools or APIs. You can use Invoke-NaSsh cmdlet to get this done.
Attaching the .dar file which is a WFA command to do it. This .dar can be imported on WFA2.0.1 or above.
Command Code:
=================
param (
[parameter(Mandatory=$true, HelpMessage="Unix Command or Script Path")]
[string]$Script,
[parameter(Mandatory=$true, HelpMessage="Unix Host Name")]
[string]$UnixHost
)
try {
$creds = Get-NaCredentials -Host $UnixHost
}
catch {
$creds = Get-WfaCredentials -Host $UnixHost
}
$returnData= Invoke-NaSsh -Name $UnixHost -Credential $creds -Command $Script
Get-WFALogger -Info -Message $returnData
======================
sinhaa
If this post resolved your issue, help others by selecting ACCEPT AS SOLUTION or adding a KUDO.