


Active Directory User Reporting
This is a simple example of how to create a report of your Active Directory users. The first command imports the PowerShell Active Directory module, which should be installed by default, otherwhise do this:
Import-Module ActiveDirectory
Get-ADUser -Filter {EmailAddress -like "*"} -Properties * | select DisplayName, GivenName, Name, Surname, mail, SamAccountName, Department, Title, extensionAttribute1, extensionAttribute2 | Out-GridView
And the second command creates a simple report.

Kinaj 13 - Dynamite

Kinaj 12 - Banana Phone

Happy Birthday to me
I love this picture :D Anyway today is my birthday and that’s why you get a cool vector collection of my favorite quotes:

Use software like Inkscape or Adobe Illustrator and create some big posters for your bedroom or office wall.

Kinaj 11 - StupStep (Dubstep, Ambient)

Kinaj 10 - BBC Radio 1 Essential Mixes

Manipulate the hosts file with PowerShell
Recently I had to add a host to the hosts file. What made my angry about this was the fact that I had to do it manually, if you’ve ever used a unix/linux machine this feels so wrong.
That’s why I’ve created several PowerShell functions to make the manipulation of the hosts file easier.

How Facebook Graph Search Affects Your Privacy
via: https://t3n.de/news/privacy-einstellungen-solltet-461777/
