PS script to record powershell version information
Hi all, I have the start of a script which I want to run, parse a text file full of server names and record the PS version to a text file. Here is the script so far:
$result |Add-Member -MemberType NoteProperty -Name Version -Value $version
$result|out-file c:\work\temp\result.txt -append
}
But I get the error of:
Invoke-Command : Cannot validate argument on parameter 'ComputerName'. The argument is null or empty. Provide an argument that is
not null or empty, and then try the command again.
Can anyone teak this so it works for me please?
Thank you
Jason
Powershell
Last Comment
Alan
8/22/2022 - Mon
Alan
Hi Jason,
If it were me having this problem, the first thing I would do it insert a 'Write-Host' command just after you start the ForEach loop thus:
Write-Host $Computer
That will output what the script has pulled from the txt file and is trying to pass to the Invoke-Command.
If you do that, what do you get on screen?
I might also Write-Host what I got into $Computers prior to the start of the loop - again, just to see what it appears to be.
Alan.
Lasse Bodilsen
I testet your script and it works fine. except it don't print the version number in my test?
So as Alan suggested, check your input from c:\work\temp\serverlist.txt and what gets stored in $Computer
my script does close to the same as oBdA's, but his script does have Error handling.
if($computer)
{
"Commands"
}
Will check for the string to be empty, and if it is, will not run the commands in the { } brackets, but instead skip to the next string.
Also it moves the $version variable to the start of the invoke-command, so that you set the variable on the local host, instead of the remote host. (as oBdA also mentiones.)
If it were me having this problem, the first thing I would do it insert a 'Write-Host' command just after you start the ForEach loop thus:
Write-Host $Computer
That will output what the script has pulled from the txt file and is trying to pass to the Invoke-Command.
If you do that, what do you get on screen?
I might also Write-Host what I got into $Computers prior to the start of the loop - again, just to see what it appears to be.
Alan.