Internet Stuff

I often find myself installing Firefox on a new machine or VM. Interestingly you can use PowerShell to download the Firefox stub installer:
Invoke-WebRequest -Uri "https://download.mozilla.org/?product=firefox-stub&os=win64&lang=en-GB" -OutFile "FirefoxInstaller.exe"
Which works very nicely, as you can do this direct in PowerShell and then launch the executable.

There is of course, much more too this and many possibilities. It is worth reading Calling a REST API from PowerShell - 4bes.nl which is a good article.