The response content cannot be parsed because the Internet Explorer engine is not available, or
In your invoke web request just use the parameter -UseBasicParsing e.g. in your script (line 2) you should use: $rss = Invoke-WebRequest -Uri $url -UseBasicParsing According to the documentation, this parameter is necessary on systems where IE isn’t installed or configured: Uses the response object for HTML content without Document Object Model (DOM) parsing. This … Read more