Powershell recover deleted items from users Dumpster?
Is there a way to use powershell to recover items from a users mailbox dumpster? They did a Shift+Delete from the inbox folder andI want to be able to recover them without going to the users desktop.
September 27th, 2009 1:27pm
Hi, I dont think that its possible. You can see the number of deleted items using powershell. Thanks.
Free Windows Admin Tool Kit Click here and download it now
September 27th, 2009 1:31pm
How do you see the number of deleted items using powershell?
September 27th, 2009 1:43pm
Hi, It will look like this --> Get-MailboxStatistics User@Domain.com | Select *Deleted* Thanks.
Free Windows Admin Tool Kit Click here and download it now
September 27th, 2009 2:42pm
Hi, The above powershell will give you the count of items in the dumpster. To get the item count from "Deleted items" folder you can use --> Get-MailboxFolderStatistics User@Domainname.com | where {$_.FolderPath -like "/Deleted Items"} Thanks.
September 27th, 2009 2:45pm
On Sun, 27-Sep-09 10:27:19 GMT, DVDKEA wrote:>Is there a way to use powershell to recover items from a users mailbox dumpster? They did a Shift+Delete from the inbox folder and I want to be able to recover them without going to the users desktop. Why complicate things? Give yourself "full mailbox access" on themailbox. Create an Outlook profile on your machine (don't use cachedmode) and recover them from your own machine.Why can't the person whose mailbox this is do this for themselves?---Rich MatheisenMCSE+I, Exchange MVP---
Rich Matheisen
MCSE+I, Exchange MVP
Free Windows Admin Tool Kit Click here and download it now
September 27th, 2009 6:58pm
As rich said configure his OL profile and then recover deleted item. Even though Powershell will list the deleted mails but it wont be able to recover it. Here is good article to recover deleted item, How to Recover a Deleted Item http://technet.microsoft.com/en-us/library/aa997155.aspx Vinod
|CCNA|MCSE 2003 +Messaging|MCTS|ITIL V3|
September 28th, 2009 1:27pm
Give this a try as well. http://support.microsoft.com/kb/246153 Mark Morowczynski|MCT| MCSE 2003:Messaging, Security|MCITP:ES, SA,EA|MCTS:Windows Mobile Admin|Security+|http://almostdailytech.com
Free Windows Admin Tool Kit Click here and download it now
September 28th, 2009 8:11pm