PowerShell 技能连载 - 获取美国邮政编码

适用于 PowerShell 所有版本

是否曾需要查找某个(美国)城市的邮政编码,或者反过来通过邮政编码查找城市的名称?

只需要简单地用 PowerShell 连接到一个免费的 Web Service 就可以获得这些信息:

$webservice = New-WebServiceProxy -Uri 'http://www.webservicex.net/uszip.asmx?WSDL'
$webservice.GetInfoByCity('New York').Table
$webservice.GetInfoByZIP('10286').Table

PowerShell 技能连载 - 获取美国邮政编码

http://blog.vichamp.com/2014/10/13/getting-us-zip-codes/

作者

吴波

发布于

2014-10-13

更新于

2022-07-06

许可协议

评论