This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Ways to test command in a shell from probe

I already know how to do some commands troubleshooting in a shell for 2 type of discovery : SSH and PowerCMD.

- Is there a tool too on the probe to open a shell on a UDA?

- Is there a tool too on the probe to do SNMP tests like Mindterm for ssh?

-----

SSH:

From the prob, run this to connect to a machine and test some command, similar to putty :

java -jar [...]\DataFlowProbe\content\lib\Mindterm.jar

------

PowerCMD:

In a cmd window:

powershell [...]\DataFlowProbe\runtime\probeManager\discoveryResources\PowerCmd.ps1 [MachineNameInDNS] [username]

In a powershell window directly :

$so = New-PSSessionOption -IdleTimeout 180000 -OpenTimeout 180000 -OperationTimeout 180000 -ProxyAccessType NoProxyServer
$s = New-PSSession -ErrorAction Stop -ComputerName [MachineNameInDNS] -Credential [username] -ApplicationName "" -SessionOption $so -Port 5985

  • 0  

    Hello there,

    for Shell you can try the OOTB job Execute Command by shell

    We don't have one OOTB for Powershell or WMI.

    \Bogdan

  • 0 in reply to   

    Yes i know the job thanks :). But for my case i've a timeout after a command even with a big delay, and want to investigate how the answer is return since i don't have access to the target machine. So i was looking for a interactive way to test, like mindterm for ssh :)