Skrypt PowerShell, aby sprawdzić status adresu URL

Podobne do tego pytania tutaj Próbuję monitorować, czy zestaw linków do witryn jest uruchomiony i nie odpowiada. Znalazłem ten sam skrypt PowerShell przez Internet.

Jednak zamiast bezpośrednich linków do stron internetowych muszę sprawdzić więcej konkretnych linków, na przykład:

http://mypage.global/Chemical/

http://maypage2:9080/portal/site/hotpot/

Gdy próbuję sprawdzić stan tych linków, otrzymuję następujące dane wyjściowe:

URL    StatusCode    StatusDescription    ResponseLength    TimeTaken
http://mypage.global/Chemical/    0
http://maypage2:9080/portal/site/hotpot/    0

Powyższe linki wymagają ode mnie połączenia z VPN, ale mogę uzyskać dostęp do tych linków z przeglądarki.

WyjścieInvoke-WebRequest -Uri https://stackoverflow.com/questions/20259251/powershell-script-to-check-the-status-of-a-url:

PS C:\Users\682126> Invoke-WebRequest -Uri https://stackoverflow.com/questions/20259251/powershell-script-to-check-the-status-of-a-url

The term 'Invoke-WebRequest' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.

At line:1 char:18
+ Invoke-WebRequest <<<<  -Uri https://stackoverflow.com/questions/20259251/powershell-script-to-check-the-status-of-a-url > tmp.txt
    + CategoryInfo          : ObjectNotFound: (Invoke-WebRequest:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException

$PSVersionTable

Name                           Value
----                           -----
CLRVersion                     2.0.50727.5472
BuildVersion                   6.1.7601.17514
PSVersion                      2.0
WSManStackVersion              2.0
PSCompatibleVersions           {1.0, 2.0}
SerializationVersion           1.1.0.1
PSRemotingProtocolVersion      2.1

questionAnswers(5)

yourAnswerToTheQuestion