Is there any command equivalent to webget in WindOS’s PowerShell?
I am trying to create a script to download all publicly available files from the website. I am making the custom script because I need to store the files in specific directory structure (depending on name, type and size).
In PowerShell v2, use a WebClient:
In v3, the
Invoke-WebResquestcmdlet:Another option is with the
Start-BitsTransfercmdlet: