由于我升级到 Windows 8,很多依赖于启动不可见 IE 的 PowerShell 脚本将不再工作,所以我尝试切换到Invoke-WebRequest命令。我做了很多谷歌搜索,但仍然无法让我的脚本正常工作。
这是它应该做的:
- 使用简单的表单(用户名、密码、提交按钮)加载网站,
- 输入凭据
- 并提交。
Microsoft tech-net的示例对我来说不是很有帮助,这是我拼凑起来的:
$myUrl = "http://some.url"
$response = Invoke-WebRequest -Uri $myUrl -Method Default -SessionVariable $rb
$form = $response.Forms[0]
$form.Fields["user"] = "username"
$form.Fields["password"] = "password"
$response = Invoke-WebRequest -Uri $form.Action -WebSession $rb -Method POST
$response.StatusDescriptionOK
我收到两个错误,第一个是在尝试写入该user
字段时:
Cannot index into a null array.
$form.Fields["user"] = "username"
+ CategoryInfo : InvalidOperation: (:) [], RuntimeException
+ FullyQualifiedErrorId : NullArray
第二个与$form.Action
我不知道应该读什么有关:
Invoke-WebRequest : Cannot validate argument on parameter 'Uri'. The argument is null or empty. Supply an argument that is not null or empty and then try the command again.
同样,我严重依赖Microsoft 的示例 #2。