apt-get install wget
Here is a quick video showing you how to download wget on windows 10.
https://www.jcchouinard.com/wget/
#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")