PowerShell NASA Astronomy Picture of the Day

The following example PowerShell script was created to demonstrate the usage of the NASA Astronomy Picture of the Day API (APOD).

nasa_apod_image
NASA Astronomy Picture of the Day

The code uses the PowerShell Invoke-Webrequest cmdlet to retrieve data from the NASA API and then outputs the resultant image or video information to a formatted html text file which is stored locally on the users disk drive.

At some point in the future, I may add the option to add a drop-down date selection component so that you can select images from previous days, but for the time being it is a working example which displays the current days picture of the day.

PowerShell Code