Board logo

标题: [技术讨论] PowerShell Invoke-WebRequest获取本机外网IP地址 [打印本页]

作者: PS2.0    时间: 2017-8-23 15:31     标题: PowerShell Invoke-WebRequest获取本机外网IP地址

  1. # requires -Version 3.0
  2. $url = 'http://ip.qq.com'
  3. Invoke-WebRequest -Uri $url -UseBasicParsing | %{
  4.     if ($_ -match "ip_contend") {
  5.         $ExtIP = $_.InputFields.value | select -first 1
  6.     }
  7. }
  8. $ExtIP
复制代码

作者: zhanglei1371    时间: 2017-8-24 08:10

Invoke-WebRequest真是个好东西,等于wget+CURL




欢迎光临 批处理之家 (http://www.bathome.net/) Powered by Discuz! 7.2