hello
I'm trying to parse HTML using Powershell, I tried many methods but unfortunately without success,
https://pcsupport.lenovo.com/Products/desktops-and-all-in-ones/thinkcentre-m-series-desktops/thinkcentre-m83/10ah/10ahs0k004/downloads
the URL above provide an option to select component (like BIOS, WLAN driver etc), can anyone please explain how I can select the relevant component via PowerShell HTML parsing?
$HTML = Invoke-WebRequest -URI https://pcsupport.lenovo.com/Products/desktops-and-all-in-ones/thinkcentre-m-series-desktops/thinkcentre-m83/10ah/10ahs0k004/downloads
I was unable to find a way to parse and take exactly the relevant info I need from the raw content, or at least to select only the component I need,
I general I need to check the version of the BIOS which is available on the website, and the release date of the BIOS on the website,
Any help will be greatly appreciated,
Thanks,