Windows11: Difference between revisions
| Line 6: | Line 6: | ||
==Operation== | ==Operation== | ||
===Download from Powershell=== | ===Download from Powershell=== | ||
$client = new-object System.Net.WebClient | |||
$client.DownloadFile("http://www.xyz.net/file.txt","C:\tmp\file.txt") | |||
Revision as of 07:52, 27 December 2022
Configuration
Explorer
Expand to Open Folder
Operation
Download from Powershell
$client = new-object System.Net.WebClient
$client.DownloadFile("http://www.xyz.net/file.txt","C:\tmp\file.txt")
