Use Server 2008 Powershell to Export Computer Description based on CSV file import using the following command:Import-Csv c:\computers.csv | FOREACH{Get-QADComputer -Name $_.computername} | select dNSHostName,Description | Export-Csv c:\output.csv -n…
more »