Home > Windows にまつわる e.t.c.

PowerShell で Web Server の種類を調べる


サイトで使用している Web Server の種類は PowerShell で簡単に調べることが出来ます。

使うコマンドレッドは Invoke-WebRequest
PowerShell 4.0 以降は wget の Alias がついています。

Invoke-WebRequest で http データーを受け取り、Headers を見ると、Server に使用している Web Server の種類が入っています。

PS C:\> (Invoke-WebRequest www.microsoft.com).Headers

Key                                                         Value
---                                                         -----
Pragma                                                      no-cache
CorrelationVector                                           TH8bmiaRR0SAbNMm.1.1
Access-Control-Allow-Headers                                Content-Type
Access-Control-Allow-Methods                                GET, POST, PUT, DELETE, OPTIONS
Access-Control-Allow-Credentials                            true
Cteonnt-Length                                              241974
Cache-Control                                               no-cache, no-store
Content-Type                                                text/html
Expires                                                     -1
P3P                                                         CP="ALL IND DSP COR ADM CONo CUR CUSo IVAo IVDo PSA PSD ...
Server                                                      Microsoft-IIS/8.0
X-AspNet-Version                                            4.0.30319
X-Powered-By                                                ASP.NET,ARR/2.5,ASP.NET
Date                                                        Sun, 03 May 2015 03:26:02 GMT
Transfer-Encoding                                           chunked
Connection                                                  keep-alive,Transfer-Encoding
Set-Cookie                                                  MS-CV=TH8bmiaRR0SAbNMm.1; domain=.microsoft.com; expires...
X-CCC                                                       JP
X-CID                                                       2

 

Alias の wget を使えばこんな感じで調べる事が出来ます。

(wget www.microsoft.com).Headers

 

back.gif (1980 バイト)

home.gif (1907 バイト)

Copyright © MURA All rights reserved.