Query HTTP Status Code detailed information using Powershell

Web harvest HTTP Status code information from a website and wrap it in a function which can query these statuses to add more verbosity to my web requests.

On top of that, once I have the HTTP Status codes and their description in a CSV, JSON or XML format,  I can repurpose this data in any program/script as desired which is obviously way better than Googling it each and every time when troubleshooting such errors.… Read More Query HTTP Status Code detailed information using Powershell

Scrolling Internet Explorer with Powershell

My top preference for data munging and harvesting from The Web is Internet Explorer, Yes, Internet Explorer! 🙂 because I can create an InternetExplorer.Application object and access the HTML DOM to scrape web data as and when required. This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review,… Read More Scrolling Internet Explorer with Powershell

[ Powershell ] Data Harvesting all dictionary words for each alphabet from Web

PROBLEM :  I am working on a personal project where in I require common/popular dictionary words for lookups and performance is a concern. INITIAL THOUGHTS : Figure out a way in which I can use In-built dictionary on Microsoft Word, but couldn’t find much on google search ( May be I didn’t tried enough :P)… Read More [ Powershell ] Data Harvesting all dictionary words for each alphabet from Web