Skip to content

Instantly share code, notes, and snippets.

@lidopaglia
Created February 18, 2014 16:11
Show Gist options
  • Save lidopaglia/9073991 to your computer and use it in GitHub Desktop.
Save lidopaglia/9073991 to your computer and use it in GitHub Desktop.
Maybe you have some tabular data that you would like to paste into Excel across cells...
# Got Macs?
Get-ADComputer -Filter {Name -like "foo*" -and (OperatingSystem -like "Mac*")} -Properties CanonicalName,OperatingSystem,OperatingSystemVersion | select Name,OperatingSystem,OperatingSystemVersion,CanonicalName | sort canonicalName | ConvertTo-Csv -NoTypeInformation -Delimiter "`t" | clip
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment