Alternative to "Download" as a PowerShell verb?
For me, 'Get' is the most natural verb. It gets everthing, not just properties. For the noun I would use something like 'WebFile', you can easily guess what you get and where it is coming from.
Wouldn't this work:
Start-Download -Url http://blah/
Or use Invoke-Download
, as per the recommendations for synchronous operations. Start
is for asynchronous.