0
PSスクリプトを作成しました。これは、テキストファイルからすべてのIPアドレスとサーバのPrefixlengthを取得します。コードを参照してください:IPAddress、Prefixlength、およびComputernamesのPowershellリスト
$cred = Get-Credential
$computers = Get-Content -Path C:\Users\XX_YY\Desktop\test_hostname_file.txt
invoke-command -computername $computers -Credential $cred -scriptblock {get-netipaddress -AddressFamily IPv4 } | where {$_.ipaddress -like "10.*"} | ft -AutoSize IPaddress, prefixlength
このスクリプトは私に結果をテーブルとして与えます。しかし、テーブルにはコンピュータ名も必要です。
私はこれをどのように処理できるのか考えてください。
乾杯サム
ありがとうございます!正確に – logfile