Forum Discussion

charlie4872's avatar
charlie4872
Brass Contributor
May 03, 2022

Write-Host AND output results to text file.

Hello I have a script where I want to write results of "offline" hosts to the terminal and also write the results of the offline computers to a .txt file. The code I have below is what I have so far ...
  • Harm_Veenstra's avatar
    Harm_Veenstra
    May 03, 2022

    It does a ping/icmp test to the computers listed in the computers.txt file, if the firewall is active.. It won't return the request marking the computer inaccessible. You could try to use Test-Path "\\$($computer)\c$" instead of test-connection -computername.. (Run this as an account who has local admin priviledges on the remote machine, Domain Admin of Global Admin/Device Administator? Also, shouldn't invoke-command -computername (get-content -Path .\computers.txt) be invoke-command -computername $computer ?

Resources