1
にログイン情報を入力しようとすると:「HRESULTからの例外:0X800A01B6」PowerShellでエラー私は、このコードは、PowerShellで書かれているFacebookの
Exception from HRESULT: 0x800A01B6
At line:1 char:1
+ ($ie.document.getElementsByName("email") |select -first 1).value = $u ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : OperationStopped: (:) [], NotSupportedException
+ FullyQualifiedErrorId : System.NotSupportedException
:
$username = "xxxxxx";
$password = "xxxxxx";
$url = "www.facebook.com/login";
$ie = New-Object -com internetexplorer.application;
$ie.visible = $true;
$ie.navigate($url);
($ie.document.getElementsByName("email") |select -first 1).value = $username;
をそしてそこにある私は、このエラーメッセージを取得するとき
どのような解決策ですか?
ありがとうございました!
これについて自分で研究しましたか?私はpowershellに慣れていないが、エラーは、開いたかっこの最初の文字で構文エラーのように思える? – owler
@owler構文エラーではありません。 '' ''は '.value'の直前で閉じています。私は推測していますが、' NotSupportedException'は '.value'が書き込み可能ではないと信じさせています。 – briantist