http://www.slipstick.com/problems/outlook-is-sending-winmail-dat-attachments/
Monthly Archives: May 2014
SSL Certificates
Posted by admin
on May 7, 2014
No comments
To restore a single, deleted Active Directory object using the Get-ADObject and Restore-ADObject cmdlets
Posted by admin
on May 5, 2014
No comments
- Click Start, click Administrative Tools, right-click Active Directory Module for Windows PowerShell, and then click Run as administrator.
- At the
Active Directory module for Windows PowerShellcommand prompt, type the following command, and then press ENTER:Get-ADObject -Filter {String} -IncludeDeletedObjects | Restore-ADObjectFor example, if you want to restore an accidentally deleted user object with the display name Mary, type the following command, and then press ENTER:
Get-ADObject -Filter {displayName -eq "Mary"} -IncludeDeletedObjects | Restore-ADObject