📜  如何在 Windows 上使用 wget - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:55.207000             🧑  作者: Mango

代码示例1
#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")