Get-CimInstance repeats output multiple times

310 Views Asked by At

I'm trying to get a last boot time report and my script keeps out repeating the same output 8 times, I'm sure its a syntax error. Here is what I have:

$ServerName = (Get-Content -Path 
D:\Users\Admin.sa\Desktop\Computerlist.txt)

##### Script Starts Here ######  

foreach ($Server in $ServerName) {Get-CimInstance -Cn $Servername -ClassName 
win32_operatingsystem | select csname,lastbootuptime}

Format-Table -AutoSize
2

There are 2 best solutions below

2
On

So your issue is that when you do the for loop, you are using the wrong variable. Remember when you use the for-loop, you must use the $Server NOT the $ServerName

so:

$ServerName = (Get-Content -Path 
D:\Users\Admin.sa\Desktop\Computerlist.txt)

##### Script Starts Here ######  

foreach ($Server in $ServerName) {Get-CimInstance -Cn $Server -ClassName 
win32_operatingsystem | select csname,lastbootuptime}

Format-Table -AutoSize
0
On

i believe the issue is inside your for loop. Try:

$ServerName = (Get-Content -Path "D:\Users\Admin.sa\Desktop\Computerlist.txt")

##### Script Starts Here ######  

foreach ($Server in $ServerName) {Get-CimInstance -Cn $Server -ClassName win32_operatingsystem | select csname,lastbootuptime}

Format-Table -AutoSize