PowerShell and Outlook

Greetings,
I wrote a script that traverses a mailbox, extracts an email then removes that email from a contacts list.  It works but it is running very slow because the contacts list is 40k+ items.
This is a marketing contacts list.  When I receive email bounces, those emails are moved to a folder.  This is the folder the script scans then removes the associated contact.  This way I don't keep sending emails to an account that no longer
exists.  Pretty simple.
Is there a way for me to load the contacts list in to memory so the contact look up operations runs faster?  All I really need to load in memory is the email address.  Then I would need a way to delete the actual contact based on that email address.
Any thoughts?
Thank you!

Hi Bob,
Any updates about this issue?
If there is anything else regarding this matter, please feel free to post back.
If you have any feedback on our support, please click here.
Best Regards,
Anna Wang
TechNet Community Support

Similar Messages

  • Powershell and Outlook Issues

    So my ultimate goal is to export emails after a specific length of time as a .msg and then upload them to sharepoint for archival purposes.
    My issue is all the examples I find never seem to work for me. I use PowerGUI for my ISE, I have powershell 2.0 and Outlook 2007 SP3
    So for example, when I try something very simple according to the scripting guy
    Reference, I try this line of code:
    [Reflection.Assembly]::LoadWithPartialname("Microsoft.Office.Interop.Outlook") | out-null
    [enum]::GetNames("Microsoft.Office.Interop.Outlook.OlDefaultFolders")
    This should list the enums used to point to the different folders in outlook....here are some of them:
    olFolderDeletedItems
    olFolderOutbox
    olFolderSentMail
    olFolderInbox
    olFolderCalendar
    olFolderContacts
    olFolderJournal
    When I run it, either PowerGUI or straight in the console I receive the following error:
    Cannot convert argument "0", with value: "Microsoft.Office.Interop.Outlook.OlDefaultFolders", for "GetNames" to type "System.Type": "Cannot convert the "Microsoft.
    Office.Interop.Outlook.OlDefaultFolders" value of type "System.String" to type "System.Type"."
    At C:\Users\clayman\AppData\Local\Temp\ceb3eca9-5cf1-4dd2-92aa-c2c29d3ca438.ps1:2 char:17
    + [Enum]::GetNames <<<< ("Microsoft.Office.Interop.Outlook.OlDefaultFolders")
    + CategoryInfo : NotSpecified: (:) [], MethodException
    + FullyQualifiedErrorId : MethodArgumentConversionInvalidCastArgument
    Truth be told, no matter what sample I try they all fail, for instance try and run this function (yet another scripting guy article)
    Function Get-OutlookInBox
    Add-type -assembly "Microsoft.Office.Interop.Outlook" | out-null
    $olFolders = "Microsoft.Office.Interop.Outlook.olDefaultFolders" -as [type]
    $outlook = new-object -comobject outlook.application
    $namespace = $outlook.GetNameSpace("MAPI")
    $folder = $namespace.getDefaultFolder($olFolders::olFolderInBox)
    $folder.items |
    Select-Object -Property Subject, ReceivedTime, Importance, SenderName
    And this one fails with:
    Add-Type : Could not load file or assembly 'Microsoft.Office.Interop.Outlook, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c' or one of its dep
    endencies. The system cannot find the file specified.
    At C:\Users\clayman\AppData\Local\Temp\51f81593-6a0f-4261-9888-5499432508e7.ps1:3 char:10
    + Add-Type <<<< -AssemblyName "Microsoft.Office.Interop.Outlook" | Out-Null
    + CategoryInfo : NotSpecified: (:) [Add-Type], FileNotFoundException
    + FullyQualifiedErrorId : System.IO.FileNotFoundException,Microsoft.PowerShell.Commands.AddTypeCommand
    Exception calling "GetDefaultFolder" with "1" argument(s): "Value does not fall within the expected range."
    At C:\Users\clayman\AppData\Local\Temp\51f81593-6a0f-4261-9888-5499432508e7.ps1:8 char:39
    + $folder = $nameSpace.getDefaultFolder <<<< ($olFolders)
    + CategoryInfo : NotSpecified: (:) [], MethodInvocationException
    + FullyQualifiedErrorId : ComMethodTargetInvocation
    If I change:
    Add-Type -AssemblyName "Microsoft.Office.Interop.Outlook" | Out-Null
    To:
    [Reflection.Assembly]::LoadWithPartialName("Microsoft.Office.Interop.Outlook") | Out-Null
    The first error goes away, but the second one remains. What the heck am I doing wrong?
    If you find that my post has answered your question, please mark it as the answer. If you find my post to be helpful in anyway, please click vote as helpful.
    Don't Retire Technet

    Hi,
    How about change
    $folder = $namespace.getDefaultFolder($olFolders::olFolderInBox)
    to
    $folder = $namespace.getDefaultFolder($olFolders.olFolderInBox)
    Please test it.
    Regards,
    Yan Li
    TechNet Subscriber Support
    If you are
    TechNet Subscription
    user and have any feedback on our support quality, please send your feedback
    here.
    Cataleya Li
    TechNet Community Support

  • Powershell and Outlook 2007, trying to delete messages in a folder older than date

    I was hoping to get a powershell script that would do the following
    1) Connect to outlook 2007
    2) Go to Mailbox folder (not an inbox subfolder) called 'Processes'
    3) Delete all email from that folder older than 3 days old
    I did some searching, I have found very useful things like how to empty a deleted items folder.  I can even display all messages in that folder using this script snippet.  But whenever I try to filter it down to email older than 3 days old, it blows up on me.  I was attempting to use a | Where-Object pipe to reduce it and there are thousands of messages in that folder.
    $outlook = New-Object -ComObject Outlook.Application
    $olFolderInbox=6
    $n = $outlook.GetNamespace("MAPI")
    $f = $n.GetDefaultFolder($olFolderInbox)
    $mailbox = $n.Folders.Item($f.Parent.Name)
    $folder = $Mailbox.Folders.Item("Processes")
    $folder.Items
    #Clean out any open connections
    $outlook = $n = $f = $mailbox = $folder = $null;

    I thought I might offer another solution for this.  I came across this post looking to do the same, but I found it didn't always delete messages.  Based on some other information on another site I was able to come up with a modified version.
    The two other sites I referenced were:
    http://gallery.technet.microsoft.com/ScriptCenter/en-us/966637b9-0b70-41c0-99d0-4647a89da70a
    http://msdn.microsoft.com/en-us/library/bb220369%28office.12%29.aspx
    ----Script----
    #Name of folder to access.  You can specify subfolders by using FolderName\Subfolder
    $folderPath = "FolderName"
    #Filter older than 7 days
    $olderThan = (get-date).AddDays(-7)
    #Set format of date to use
    $dateFormat = "g" # This will base on time to do just date choose "M/dd/yyyy"
    #Create filter
    $sFilter = "[LastModificationTime] < `'$($olderThan.tostring($dateFormat))`'"
    $outlook = New-Object -ComObject Outlook.Application
    $olFolderInbox=6
    $n = $outlook.GetNamespace("MAPI")
    $f = $n.GetDefaultFolder($olFolderInbox)
    $mailbox = $n.Folders.Item($f.Parent.Name)
    $folders = $mailbox.Folders
    #Navigate to the proper folder
    foreach ($folderName in $folderPath.split("\"))
      $folder = $folders.Item($folderName)
      $folders = $folder.Folders
    $Items=$folder.items
    $FilteredItems = $Items.Restrict($sFilter)
    for ($i = $FilteredItems.Count; $i -gt 0; $i--) {
        Write-Host "Deleting $($FilteredItems.Item($i).Subject)"
        $FilteredItems.Item($i).Delete()
    #Clean out any open connections
    $outlook = $n = $f = $mailbox = $folder = $folders = $Items = $FilteredItems = $null;

  • Need to create Meeting Request using Powershell with Outlook 2010 / 2013

    We will be creating around 100 meeting request based on data from excel, so planning to migrate it to SQL & using powershell we need to speed-up the progress.
    Script tried :
    http://social.technet.microsoft.com/Forums/scriptcenter/en-US/e88ca51c-62dd-493b-a0d1-ffe6a8696fdf/create-view-in-outlook-2013-using-powershell?forum=ITCG
    http://en.community.dell.com/techcenter/powergui/f/4833/t/19576698.aspx
    http://www.amandhally.net/2013/08/30/powershell-and-outlook-create-and-send-a-new-email-using-powershell-outlooktools-module/
    Do we have any working scripts, i tried few scripts it fails throwing error as below:
    New-Object : Exception calling ".ctor" with "0" argument(s): "Retrieving the COM class factory for component with CLSID 
    {0006F03A-0000-0000-C000-000000000046} failed due to the following error: 80080005 Server execution failed (Exception from HRESULT: 
    0x80080005 (CO_E_SERVER_EXEC_FAILURE))."
    At line:2 char:6
    + $o = New-Object Microsoft.Office.Interop.Outlook.ApplicationClass
    +      ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : InvalidOperation: (:) [New-Object], MethodInvocationException
        + FullyQualifiedErrorId : ConstructorInvokedThrowException,Microsoft.PowerShell.Commands.NewObjectCommand
    You cannot call a method on a null-valued expression.
    At line:4 char:1
    + $a = $o.CreateItem($olAppointmentItem)
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : InvalidOperation: (:) [], RuntimeException
        + FullyQualifiedErrorId : InvokeMethodOnNull
    Ganapathy

    Hi Ganapathys,
    For the error "failed due to the following error: 80080005", please Make sure that Outlook and Powershell are either both running as a standard user (not elevated) or that they are both running elevated as Administrator. They need to be running at the same
    integrity level to avoid that error.
    Please try to run powershell as standard user without "run as admin".
    If you have any feedback on our support, please click here.
    Best Regards,
    Anna Wang
    TechNet Community Support

  • Hoping for some help with a very frustrating issue!   I have been syncing my iPhone 5s and Outlook 2007 calendar and contacts with iCloud on my PC running Vista. All was well until the events I entered on the phone were showing up in Outlook, but not

    Hoping for some help with a very frustrating issue!
    I have been syncing calendar and contacts on my iPhone 5 and Outlook 2007 using iCloud  2.1.3 (my PC is running Vista). All was well until the events I entered on the phone were showing up in Outlook, but not the other way around. I’ve tried the usual recommended steps: deselecting calendar and contacts in the iCloud control panel and then re-selecting, signing out of the panel and back in, and repairing the Outlook installation in control panel.  I even uninstalled iCloud on the PC and downloaded it again (same version). 
    The furthest I’ve gotten is step 2 (and once, step 3) of 7 while performing “Outlook Setup For iCloud.” At that point I get, “Your setup couldn’t be started because of an unexpected error.”  After the first attempt at all this, all my calendar events disappeared from Outlook, although they are still in iCloud calendar and on my phone.
    Sound familiar?  Any ideas on how to solve this iCloud/Outlook issue?  Thanks much in advance!

    Hoping for some help with a very frustrating issue!
    I have been syncing calendar and contacts on my iPhone 5 and Outlook 2007 using iCloud  2.1.3 (my PC is running Vista). All was well until the events I entered on the phone were showing up in Outlook, but not the other way around. I’ve tried the usual recommended steps: deselecting calendar and contacts in the iCloud control panel and then re-selecting, signing out of the panel and back in, and repairing the Outlook installation in control panel.  I even uninstalled iCloud on the PC and downloaded it again (same version). 
    The furthest I’ve gotten is step 2 (and once, step 3) of 7 while performing “Outlook Setup For iCloud.” At that point I get, “Your setup couldn’t be started because of an unexpected error.”  After the first attempt at all this, all my calendar events disappeared from Outlook, although they are still in iCloud calendar and on my phone.
    Sound familiar?  Any ideas on how to solve this iCloud/Outlook issue?  Thanks much in advance!

  • I am having difficulty: we are running a windows server 2003 - mail and outlook support 2007 and upwards, how do I get the brand new apple machines to work with the 2003 version of server

    I am having difficulty: we are running a windows server 2003 - mail and outlook support 2007 and upwards, how do I get the brand new apple machines to work with the 2003 version of server

    I may be way out, but do you know about this product, would it help integrate the Macs for you.
    https://www.thursby.com/sites/default/files/images/ADmitMacv8_SPD.pdf

  • HT1692 Have recently installed itunes and outlook on a new computer.  Have multiple email accounts set up in Outlook tho only use contacts and calendar in relation to one of these. Cannot sync itunes with the correct contacts and calendars, Help!

    My new computer is 64-bit running Windows 7 pro, SP1 and Microsoft Office 2010 Pro Plus 32-bit
    My phone is a 4S runing iOS 6.1.3
    Very frustrated now that I have recently installed itunes and outlook on this new computer.  Everything worked perfectly ok on my laptop which was also 64-bit Windows 7 and running 32-bit Microsoft Office 2010 Pro.  I have multiple email accounts set up in Outlook tho only use contacts and calendar in relation to one of these. Cannot sync itunes with the correct contacts and calendars, when I sync the calendar and contacts are empty.  Not sure if there is any way to point itunes to particular address books and calendars.
    I have installed and uninstalled itunes 3 times and thank goodness have a backup
    Can anyone help please?
    thanks in anticipation

    I had my home computer set up to sync to work's Exchange server. It worked well, but I didn't like seeing work email messages and other programs trying to sync with my default Outlook folder, which was then the Exchange (& work related) .ost file. I know there are various ways to manage those problems using filters, view, subfolders, etc., but it was a hassle for me. I think it could work well for many other folks.
    For now, I have published my work calendar and subscribed to that calendar on my home computer. So I have view only access to my calendar on my home computer (and I can add/edit calendar items on my iPad (or Outlook Web Access) when away from work). This is not quite what I wanted, but it may work.
    It almost makes me long for the days when I used my Windows Mobile Treo to sync back and forth between exchange at work and outlook at home (but had many sync conflicts as a result).

  • How can I read my incoming emails in one folder?Like I do in Live mail and Outlook express.

    Now we can only read emails in different folders if I am managing multiple email accounts.
    It does not feel so comfortable as we use Live mail and Outlook express.

    '''Unified Inbox for pop and Imap mail accounts:'''
    If you use the Unified folder view, this will show an Inbox with all emails from all accounts, with sub folder Inboxes for the individual Inboxes for the various accounts. Then you can choose to view the collective Inbox or the individual Inbox.
    This method can be chosen simply and quickly.
    * View > folders > Unified
    '''Setting up Pop mail accounts to use Global Inbox.'''
    Pop mail accounts can be set up to use a Global Inbox in Local Folders.
    Imap mail accounts cannot be set up to use Global Inbox, but can use the Unified view.
    To change Pop mail accounts to use Global Inbox, you would need to move all emails into Local Folders Inbox.
    Then change the settings for each pop mail account.
    Tools > Account Settings > Server Settings for the pop mail account
    click on 'Advanced' button
    select 'Inbox for a different account' and 'Global Inbox (Local Folders)
    click on OK
    You need to do this for each Pop mail account.
    Then close Thunderbird. You must do this before downloading anything otherwise the emails may continue to go to the wrong Inbox.
    Wait a few moments for Thunderbird to fully close and then restart Thunderbird.
    Please read more info on global inbox here:
    * http://kb.mozillazine.org/Global_Inbox

  • I use a Win7 PC with iCloud and Outlook 2010 for syncing my calendar and contacts. I can enter data in my Outlook Calendar and it will appear in iCloud, but data entered in iCloud does not sync back to Outlook.  ICloud syncs to my iphone fine both ways.

    I use Win 7 PC with iCloud and Outlook 2010 for syncing my Contacts and Calendar.  They have stopped syncing...mostly.
    Now, appointments I enter on my local Outlook (iCloud) Calendar goes up to iCloud fine.  But, data I enter on iCloud directly does not come down to my local Outlook iCloud Calendar.  If I reboot the computer, the iCloud data shows up.
    Also, Contacts I try to enter on my Outlook (iCloud) Contacts goes up to iCloud fine, but does not show up in my local iCloud Contacts.
    All syncing works with my iPhone.
    I have signed out of iCloud on PC.  I have stopped syncing and re-started.  No change.
    I have an .aplzod folder for iCloud.  I have a separate Earthlink.net.pst email account in Outlook and a me.com.pst Outlook email account (which I don't actually use) listed under Data Files.
    Any help would be appreciated.  Curious that Outlook will upload to iCloud but not receive downloads unless I reboot.  However, rebooting does not download the missing Contacts.
    Jim Robbins

    Hi Jim!
    You've started off with some good troubleshooting steps, so let's see if we can take this a little further and figure out what the issue is with your iCloud contacts and calendars. I have two articles here that will help you troubleshoot this issue a little further, but the troubleshooting steps for both articles are exactly the same, so I will lay those out for you here:
    Note: When using iCloud Control Panel 2.0 and later, iCloud Calendar event descriptions in Outlook 2010 do not support text formatting (bold, italics, or underline), HTML, images, or attachments. The contextual (right-click) menu has also been disabled.
    If you are having trouble with a PC (with Outlook 2007 or 2010) and iCloud Calendar, try each of these steps, testing after each to see if the issue is resolved:
    Verify that you are using a Windows configuration that is supported by iCloud. For more information, see iCloud system requirements.
    When enabling Calendars in the iCloud Control Panel, part of the setup process is to copy your Calendars data from the default Outlook ".pst" file to iCloud, and then remove the Calendars from the ".pst" file by placing them in the Deleted Items folder in Outlook. The Calendars data is then stored in the iCloud data set within Outlook so that changes can be pushed to and from Outlook by iCloud. Be sure you are looking for your data within the iCloud dataset within Outlook after enabling Calendars in the iCloud Control Panel. The deleted files can be seen by viewing Deleted Items within your Outlook Folder List. This is not iCloud removing your data; iCloud simply copies your data into the iCloud data set and then removes the local Calendars data by placing it in the Deleted Items folder.
    Make sure your computer is online. Attempt to view www.apple.com and iCloud.com. If you can't connect to the Internet, your iCloud calendars and events will not update in Outlook. Click here for more information about troubleshooting your Internet connection.
    Open a secure website to test if you are online as is necessary for iCloud Calendar. This also tests if the ports 80 and 443 are accessible. Outlook requires port 443 access to iCloud in order to push and pull updates to and from the iCloud Calendar servers.
    Verify that your iCloud member name is entered into the iCloud Control Panel pane. See iCloud Setup for more information about setting up iCloud on Windows.
    Completely close and reopen the iCloud Control Panel.
    If you recently made changes in Outlook and they are not moving to your other devices or vice-versa, click the Refresh button in Outlook.
    Turn iCloud Calendar off and back on:
    Close Outlook.
    Open the Windows Control Panel:
    In Windows 8, move the pointer to the upper-right corner of the screen to show the Charms bar, click the Search charm, and then click the iCloud Control Panel on the left.
    In Windows 7 and Vista, choose Start menu > All Programs > iCloud > iCloud.
    Remove the checkmark in the checkbox next to Mail, Contacts, Calendars & Tasks, and click Apply. Wait a few seconds, then replace the checkmark, and click Apply.
    Open Outlook and test to see if the issue has been resolved.
    Ensure the iCloud Outlook Add-in is active within Outlook.
    Outlook 2010:
    Open Outlook 2010.
    Click the File menu.
    Click Options in the left panel of the Outlook window.
    Click Add-Ins in the left panel of the Outlook Options window.
    Look at the list of add-ins beneath "Active Application Add-Ins" and verify that the "iCloud Outlook Add-in" is listed.
    For Outlook 2007, follow these steps to verify the iCloud Outlook Add-in is active
    Open Outlook 2007.
    From the Tools menu, choose Trust Center.
    Select Add-ins from the left column.
    Look at the list of add-ins beneath "Active Application Add-Ins" and verify that the "iCloud Outlook Add-in" is listed.
    For additional information about managing Add-ins with Microsoft Outlook, see this Microsoft support document.
    Restart your computer. This may sound simple, but it does reinitialize your network and application settings and can frequently resolve issues.
    iCloud: Troubleshooting iCloud Contacts
    http://support.apple.com/kb/ts3998
    iCloud: Troubleshooting iCloud Calendar
    http://support.apple.com/kb/ts3999
    Thanks for using the Apple Support Communities!
    Cheers,
    Braden

  • I have an Ipad2, an Iphone 4 . I want to be able to sync both of these with my Windows desktop and Outlook 2007. I would like to sync to and from the Idevices and Outlook.

    I have an Ipad2, an Iphone 4 . I want to be able to sync both of these with my Windows desktop and Outlook 2007. I would like to sync to and from the Idevices and Outlook. When I attempt to sync in itunes I get a popup message asking if I want to delete, Merge or cancel. Not wanting to delete of cancel the only option left is Merge.
                When selecting Merge all of the entries in outlook are added to the idevice. The next time I merge all of the same entries plus any new ones are added, resulting in older entries being repeated i.e an entry like “John’s Birthday” will appear 5 or 6 times on the same date.
                How do I resolve this issue? How do I get the the sync process to add only new entries?

    This is a great question. First, facetime will not work because it has to establish a Call connection first. iMessage should work, but how to get it going I am not sure. Two great Apps to try are, Viber and Skype. Viber is excellent, it works over WiFi, you can make free calls and free text messages all over the world with other users who have Viber installed. It does not even have to be open on screen to work. Viber does have to recieve one text message with activation code, to activate it, this will be your only hurdle, but maybe Verizon can help you get that one text message. Skype does have to be open on screen however, but this can function like Facetime with WiFi connection. Definitely get Viber free in App Store, and put it on all your iDevices so the old Verizon iPhone can function as a telephone when on WiFi.

  • I am using OSX 10.9.5 and Outlook Web App for emails. When I download an attachment it replaces the space in the file name with   - how can I change this?

    I am using OSX 10.9.5 and Outlook Web App for emails. When I download an attachment it replaces the space in the file name with %20  - how can I change this?

    Click on the below link :
    https://get.adobe.com/flashplayer/otherversions/
    Step 1: select Mac OS  X 10.6-`0.`0
    Step 2 : Safari and FIrefox
    Then click on " Download Now"  button.

  • Synching on Windows 7 (64 bit) between Palm desktop (6.2.2) and Outlook 2010

    I have recently purchased a new laptop with Windows 7 (64 bit) and Outlook 2010 which I use for email, contacts and calander.  I have managed by a miracle using bluetooth to synch between my Tungsten E2 and Palm desktop and know that there are no tools, as yet, to synch between my E2 and Outlook 2010.  Would  it work as  a two stage process i.e.
    1. synch desktop and outlook
    2. synch desktop and E2.
    If so how do I do step one?
    Thanks
    Pepper
    Post relates to: Tungsten E2

    In PD 6.2.2 there is a PIM conduit switcher. Have you tried this?
    Another option I can think to try is to export your data in a format compatible with Outlook, .csv or .tab and then import into Outlook.
    Chapura makes a program called pocket copy. It is a one time transfer of your data from PD to Outlook.
    They have a program called Pocket Mirror but is only compatible with 32 bit versions.
    Here is a link to their site.
    http://www.chapura.com/products.php

  • Hotsync problem with Windows 7 and Outlook 2007

    Hello,
     I try to make contact between my Palm Tungsten E2 and outlook 2007 on my laptop with Windows 7 for synchronizing.Before this, I worked on this laptop with Windows Vista and also Outlook 2007.I installed the standard software and after that the update for outlook 2007 (palmoutlook2007conduits.zip (7.2MB)).In Vista this was working well, but not in Windows 7.I can see in the soft ware part that palmoutlook2007conduits is installed, but the in the log book I still have the same errors :
    - Not Synchronized
    Outlook Contacts synchronization failed
    When I go to the settings, also there is the same error : “This version of Outlook is not supported by the Outlook Conduit application. Supported outlook versions are Outlook 98, 200, XP(2002) and 2003.”. It looks like the upgrade with palmoutlook2007conduits have no effect in Windows 7. 
    I hope someone have a solutions for this problem.
    Post relates to: Tungsten E2
    Post relates to: Tungsten E2

    My new computer came with Windows 7 64-bit, and I need to HotSync my Tungsten E2 with Outlook 2007.  Did anyone find a way to do this?

  • Sync Problems between Blackberry 8330 and Outlook 2007 using Desktop software v 4.7

    I have a Blackberry Curve 8330 and I have been experiencing some problems syncing it with my HP Notebook running Outlook 2007.  I am using the most current Desktop Software version 4.7.  I am using the BB Internet Service and all of my email accounts seem to be operating well.  When I attempt to sync I receive the following errors in this sequence
    Error 1:  Intellisync;  There are no applications configured for synchronization.  From the synchronize screen, go to Configure > Synchronization to configure the applications.
    At this point, I attempt to follow the above instructions and configure the applications I want to Sync.  When I complete the above step for all applications, or each one seperately, I receive the following error:
    Error 2:  Runtime Error;  Folder is no longer a part of the system data source or  the folder can not be found.
    As I stated above, I receive the error for all 4 applications (Address Book, Calendar, Memos and Tasks) whether they are configured seperately or all at once.  I have unistalled the desktop software v4.7 5 times and Outlook 3 times. I am truly at a loss and in dire need of my Calendar and Contacts on my phone.  If anyone has come across this in the past or has any ideas, Please feel free to comment or reply.  Any info will be greatly appreciated!!!
    BB:  8330 Curve
    DS:  Desktop Software v 4.7
    PC:  HP TX2500Z Notebook/Tablet
    OS:  Windows Vista Ultimate 64-Bit
    DO:  Microsoft Office Outlook 2007
    Thanks,
    Brian

    uninstall the desktop manager, and install "4.7 without Media Manager"
    The search box on top-right of this page is your true friend, and the public Knowledge Base too:

  • Is iCloud compatible with Windows 8.1 and Outlook 2013 Ver 15.0?

    I have rcently updated Windows to 8.1 and Outlook 2013 to 15.0.  Now iCloud is not providing any info to the Outlook Calendar, Contacts, Tasks, Notes, etc. The error message I get is "The set of folders cannot be opened.  The information store could not be opened."  The info exists on iCloud and my phone.

    What is missing is the iCloud (& iTunes) Outlook Add-in

Maybe you are looking for

  • FBL5N  Drilldown

    Hi All,         I am developing a Report which should call the FBL5N Tcode in the drill down. In FBL5N i have display all items ( Both Open and Cleared Items) and should pass Clearing Date also as input. If i pass Clearing date , open items are not d

  • Mavericks 10.9.1 Can't Copy or Move Files To NAS

    Arrrghhh!  Constant **** message: The operation can't be completed because the item "xxxxxxxxxxx" is in use. I'm struggling with this god awful OS!  Is there any cure for this?

  • How to search pdf files in another language?

    I have been trying to search a  large Arabic documents but not result came up?

  • How can I find the ASM port

    Hi, When I use OEM grid control to monitor the ASM, during the configuration, I was asked to enter port, SID, please tell me from which file I can find the ASM instance port information? Thanks, Hank USA 2007

  • Watermarks - Acrobat 8

    I am trying to add a watermark to a document (.pdf) and there is an option to have the watermark behind the text...however, this option does not seem to work.  It provides the option to see it as a preview when you check the box but it does not show