Results 1 to 4 of 4

Thread: How to find store folder in OE ?

  1. #1
    Join Date
    Feb 2009
    Posts
    55

    How to find store folder in OE ?

    hie,

    I want to ask how can I find the store folder in Outlook Express ? Does anybody knows any ideas or information regarding this......plz help

    thnx

  2. #2
    Join Date
    May 2008
    Posts
    4,345

    Re: How to find store folder in OE ?

    Here's an easy way to display Store Folder in Outlook Express with just a few clicks and keystrokes.

    In Outlook Express, click Options on the Tools menu. Click the Maintenance tab. Click the Store folder button. Press the TAB key to highlight the Store Folder path. Press CTRL+C to copy the path to the clipboard. Click OK, then again OK to close the Options panel.

    Click Start, and then click Run. Press CTRL+V to paste the path into the command line. Click OK.

    If you do not see any files in the folder that opens, click Folder Options on the Tools menu, click the View tab, and then click "Show hidden files and folders" and click OK.

  3. #3
    Join Date
    May 2008
    Posts
    4,831

    Re: How to find store folder in OE ?

    Follow the steps to identify Share Folder in Outlook Express.

    1. Select "Tools | Options..." from the menu in Outlook Express
    2. Go to the "Maintenance" tab
    3. Click on the "Store Folder..." button
    4. Make sure you highlight the full folder location
    5. Select "Start | Run..."
    6. Press "Ctrl-V" to paste the folder location in the "Open" box

  4. #4
    Join Date
    Jan 2008
    Posts
    3,755

    Re: How to find store folder in OE ?

    Additonal Information

    Code:
    'find_oe_store.vbs - Locate the OE Mail Store and open it in Explorer
    '© Doug Knox - 04/07/02
    'Downloaded from www.dougknox.com
    
    Set WshShell = WScript.CreateObject("WScript.Shell")
    OE_ID = "HKEY_CURRENT_USER\Identities\Default User ID"
    OE_ID2 = WshShell.RegRead(OE_ID)
    OE_ID3 = "HKEY_CURRENT_USER\Identities\" & OE_ID2 & "\Software\Microsoft\Outlook Express\5.0\Store Root"
    StoreFolder = WshShell.RegRead(OE_ID3)
    
    
    X = MsgBox("Mail Store Location is: " & vbCR & StoreFolder & vbcr & vbcr & "Would you like to open this folder?", vbYesNo, "Store location")
    
    If X = 6 Then
      WshShell.Run("%WINDIR%\explorer.exe " & StoreFolder)
    End If
    
    Set WshShell = Nothing
    The above code locates and opens the current Store Folder for Outlook Express

Similar Threads

  1. Where can I find Content.MSO folder
    By The-Farmer in forum MS Office Support
    Replies: 3
    Last Post: 17-01-2014, 10:03 AM
  2. Replies: 8
    Last Post: 25-10-2011, 06:56 AM
  3. Where can I find the iPod games in the iTunes Store?
    By Megatruck in forum Portable Devices
    Replies: 4
    Last Post: 31-10-2010, 04:56 AM
  4. Replies: 3
    Last Post: 30-10-2010, 10:40 PM
  5. How to find the 8-character DOS name for a folder?
    By Saphire in forum Window 2000 Help
    Replies: 1
    Last Post: 03-05-2007, 09:00 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,713,412,995.81934 seconds with 17 queries