Skip to content

Instantly share code, notes, and snippets.

@jeffbuenting
Created September 10, 2015 12:45
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 jeffbuenting/851e0e874add7d8dd632 to your computer and use it in GitHub Desktop.
Save jeffbuenting/851e0e874add7d8dd632 to your computer and use it in GitHub Desktop.
import-csv f:\temp\input.csv | foreach {$_ | Add-Member -MemberType NoteProperty -PassThru -Name OSVersion -Value ( gwmi -class Win32_OperatingSystem -ComputerName ($_.MachineName)).Caption } | export-csv f:\temp\output.csv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment