Invoke-WebRequest не распознается как имя командлета Windows 7 Powershell
Как я могу использовать этот скрипт в Windows 7 PowerShell?
$IE = new-object -com internetexplorer.application
$go = (Invoke-WebRequest –Uri ‘c:\link.html’).Links.href
$IE.navigate($go)
$IE.visible=$true
start-sleep 5
$word=$go = (Invoke-WebRequest –Uri ‘c:\word.html’).Links.href
$Link = $IE.Document.getElementsByTagName("span") | ? {$_.InnerHTML -eq "$word"}
$word2=$go = (Invoke-WebRequest –Uri ‘c:\word2.html’).Links.href
$ie.Document.getElementsByTagName("$word2").item(0).click()
После запуска этого скрипта я получаю эту ошибку:
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:7 char:29
+ $go = (Invoke-WebRequest <<<< –Uri ‘http://lapfix.ir/link.html’).Links.href
+ CategoryInfo : ObjectNotFound: (Invoke-WebRequest:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
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 t
hat the path is correct and try again.
At line:12 char:31
+ $word=$go = (Invoke-WebRequest <<<< –Uri ‘http://lapfix.ir/word.html’).Links.href
+ CategoryInfo : ObjectNotFound: (Invoke-WebRequest:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
Cannot find an overload for "getElementsByTagName" and the argument count: "1".
At line:13 char:42
+ $Link = $IE.Document.getElementsByTagName <<<< ("span") | ? {$_.InnerHTML -eq "$word"}
+ CategoryInfo : NotSpecified: (:) [], MethodException
+ FullyQualifiedErrorId : MethodCountCouldNotFindBest
You cannot call a method on a null-valued expression.
At line:14 char:12
+ $Link.click <<<< ()
+ CategoryInfo : InvalidOperation: (click:String) [], RuntimeException
+ FullyQualifiedErrorId : InvokeMethodOnNull
Я думаю, что ошибка говорит, что не может использовать Invoke-WebRequest
на Windows 7. Почему это будет?
2 ответа
По умолчанию Windows 7 поставляется с установленной версией PowerShell 2.0. Invoke-WebRequest
Командлет был представлен в PowerShell версии 3.0.
Самое простое решение - обновить версию PowerShell до 3 или выше (я рекомендую просто установить последнюю версию: 5.1). Вы можете сделать это, загрузив Windows Management Framework:
https://www.microsoft.com/en-us/download/details.aspx?id=54616
Я нашел это и работал с PowerShell версии 2
$req = [System.Net.WebRequest]::Create("http://sample.com/link.html")
$resp = $req.GetResponse()
$reqstream = $resp.GetResponseStream()
$stream = new-object System.IO.StreamReader $reqstream
$result = $stream.ReadToEnd()
This is for test result : #Write-Host -Object $result
Знаете ли вы какие-либо другие команды, чтобы сделать это для PowerShell версии 2?
$Link = $IE.Document.getElementsByTagName("span") | ? {$_.InnerHTML -eq "https://sample.com/"}
$Link.click()
это не работает с PowerShell версии 2!