Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Restoring old deleted emails

Status
Not open for further replies.

CatCox

Technical User
Dec 21, 2005
18
GB
I need to restore old deleted emails - is this possible, I know you can restore a mail box from backup, but the mailbox is still live. Is there any simple way of restoring sent and deleted emails from a few months back for one mailbox.
Many thanks for any replies

 
That's what the recovery storage group is for (so long as you still have a backup tape from the period).
 
I've done ntbackup and tried restoring but I'm reluctant because does it over-write emails and does it restore into mailboxes. Basically is this a safe option, I need to restore emails for one mailbox only.
 
I would FIRST try to use the Recover Deleted Items option from within Outlook.

You may also want to make the dumpster always available.

Code:
'==========================================================================
'
' NAME: DumpsterAlwaysOn.vbs
'
' AUTHOR: Mark D. MacLachlan , The Spider's Parlor
' URL: [URL unfurl="true"]http://www.TheSpidersParlor.com[/URL]
' COPYRIGHT (c) 2005 All Rights Reserved
' DATE  : 10/12/2005
'
' COMMENT: This script and more are available in the Admin Script Pack 
'          [URL unfurl="true"]http://www.thespidersparlor.com/vbscript[/URL]
'==========================================================================
on error resume next
Dim path
Set WSHShell = Wscript.CreateObject("WScript.Shell")
path = "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Exchange\Client\Options\"

WSHShell.RegWrite path & "DumpsterAlwaysOn","1","REG_DWORD"

If err then
	msgbox "Error Encountered"
else
	msgbox "Dumpters Always On Setup Sucessful"
End if

I hope you find this post helpful.

Regards,

Mark

Check out my scripting solutions at
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top