Skip to content

Instantly share code, notes, and snippets.

@RaccoonDev
Created June 12, 2015 14:12
Show Gist options
  • Save RaccoonDev/8de0964a3c6911647184 to your computer and use it in GitHub Desktop.
Save RaccoonDev/8de0964a3c6911647184 to your computer and use it in GitHub Desktop.
Ask Active Directory For User Data
#get thumbnail bytes array
$userThumbnail = (Get-ADUser dmytro_mykhailov -Properties thumbnailPhoto).thumbnailPhoto;
#store bytes array into file
Set-Content -Value $userThumbnail -Encoding byte -Path thumbnail.png
Get-ADUser dmytro_mykhailov -Properties *
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment