Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

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")
Source by www.jcchouinard.com #
 
PREVIOUS NEXT
Tagged: #wget #windows
ADD COMMENT
Topic
Name
2+2 =