Hi All,
I am trying to pull the information from IBM Chassis ( Management Module).
I am trying to use xmlhttp as the authentication popups.
---
$user = "user"
$pwd = "Pwd"
$url = http://chassisip/private/systatus.ssi
$xHTTP = New-Object -ComObject MSXML2.XMLHTTP;
$xHTTP.open("POST",$url,$false,$user,$password);
$xHTTP.send();
Start-Sleep 5
$xHTTP.responsetext > ibmm.txt
But the data received contains lots of html header/tags. its very diffucult to parse require information from it.
Please help me if you have any idea/advise to pull the information from IBM Chassis Manangement Module Or
To parse the Html files.
Thanks
Neo