Powershell
Find User Creation Date AD
Command to know when user ceated in AD Get-ADUser username -Properties whenCreated | Select Name...
Get Last Logon User
How to Get Last Logon Date of an User with Powershell: #store in Variable an object contains Las...
How To 'Grep' in powershell
The rapid method: get-process | findstr foo The proper way: Get-Process | Where-Object {$_ | S...
Get computer serial number with powershell
To Get the motherboard Serial number via powershell, use the following command: Get-WMIObject Wi...