Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Dan1el42/12efb2c39b4aa1eef8c7 to your computer and use it in GitHub Desktop.
Save Dan1el42/12efb2c39b4aa1eef8c7 to your computer and use it in GitHub Desktop.
Import-Csv -Path '.\Input.csv' |
Select-Object -Property MACHINENAME, @{Name='OSVERSION'; Expression={ Get-WmiObject -Class Win32_OperatingSystem -Property Caption -ComputerName $_.MACHINENAME -ErrorAction SilentlyContinue | Select-Object -ExpandProperty Caption }} |
Export-Csv -Path '.\Output.csv' -NoTypeInformation
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment