何が起こったのかわかりませんが、毎回次のコマンドを入力します。
Test-Connection -ComputerName TARGET -TimeToLive 6
次のエラーが発生しました。
Test-Connection : Testing connection to computer 'TARGET' failed: Problem with some part of the filterspec or providerspecific buffer in general
At line:1 char:16
+ Test-Connection <<<< -ComputerName TARGET -TimeToLive 6
+ CategoryInfo : ResourceUnavailable: (TARGET:String) [Test-Connection], PingException
+ FullyQualifiedErrorId : TestConnectionException,Microsoft.PowerShell.Commands.TestConnectionCommand
-TimeToLive
おかしなことに、パラメーターを指定しないと、次のようになります。
Test-Connection -ComputerName TARGET
Test-Connection -ComputerName TARGET -Count 2
コマンドは期待どおりに機能します。そして、Get-Help Test-Connection
興味をそそるようなことをすると、それ-TimeToLive
が実際に有効なパラメーターであることがわかります。
どこで私は間違えましたか?