hi there,

I have prtg installed on a win 2k8 server. Now what i need to do is to monitor some projectors (inFocus) but they don't support SNMP so i cant put them in the prtg..

I thought of a powershell script to get information of the html page and show them into the prtg. but i'm still a newbie at programming ps-scripts.

Do you guys have any ideas? what should i try?

thanks for your help :)


Article Comments

Hi,
I would suggest using Invoke-WebRequest here if you are using Powershell 3. There are excellent tutorials around on how to use it for web scraping.
Basically you would use the following call to get all of a page's content and parse it later:

$page = Invoke-Webrequest -UseBasicParsing -Uri "http://www.google.com"

Best regards


Jan, 2015 - Permalink

hi,

thanks for this info! I will try :)

Regards


Jan, 2015 - Permalink