Windows11: Difference between revisions

From Wiki RB4
Line 6: Line 6:
==Operation==
==Operation==
===Download from Powershell===
===Download from Powershell===
  wget <URL>
  $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

  • right click in free bottom area of the left pane

Operation

Download from Powershell

$client = new-object System.Net.WebClient
$client.DownloadFile("http://www.xyz.net/file.txt","C:\tmp\file.txt")