Created
February 18, 2014 16:11
-
-
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...
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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