Here is a quick way to download a file in powershell:
1 | Invoke-WebRequest -Uri <source> -OutFile <destination> |
ORIGINALLY POSTED TO: https://blog.simontimms.com/2021/05/08/download-file
Here is a quick way to download a file in powershell:
1 | Invoke-WebRequest -Uri <source> -OutFile <destination> |