wget windows code example

Example 1: install wget

apt-get install wget

Example 2: how to wget on windows

#you can perform similar to wget with this command in powershell, accept all certs in test mode
 $client = new-object System.Net.WebClient
 [System.Net.ServicePointManager]::ServerCertificateValidationCallback = {$true} ;
 $client.DownloadString("https://url-url-here")

Example 3: linux wget command

wget command use to download the files

# wget https://linuxconcept.com/testfile.zip

Example 4: install wget

sudo yum install wget