Outlook 2010 rules only run manually

Hello All,
I have a user whose Outlook 2010 rules only run manually. He has some server rules and he has some that say client only next to them. All of the client side rules are listed under the server rules. I have deleted all of his rules and had him recreate them
and i've ran outlook /cleanrules and they still do not work. I'm not sure what to try next. We are running Exchange 2010 Standard and Outlook 2010. Any ideas?
Thanks,
Alex

I had this same problem, tried many things that said it would work and didn't. Here's how I fixed it:
There are several good programs that backup Outlook. Backup FIRST.... I use Outback Plus 9 (http://ajsystems.com/outbackplus/obp.html) and there's also BackupOutlook (http://www.backupoutlook.com/)
Backup Outlook using Outback 9 Plus then:
1 - Go to the Control Panel
2 - In the Search box - enter:  
Mail
3 - Run the Mail 
- or -  Mail (32 bit) applet
4 - Click: 
Show Profiles
5 - Select the profile (you likely have only one)
6 - Click: 
Remove    [this will remove the registry settings for this profile]
7 - Close the Control Panel
8 - Run Windows Explorer
9 - Go to the: 
[My Documents]\Outlook Files  folder
10 - Delete the \Outlook Files folder (or delete all of the items in it)
11 - Go to the folder  
c:\users\--your user name--\appdata\local\Microsoft\outlook
12 - Delete all of the files in this folder
13 - Go to the folder:  
c:\users\--your user name--\appdata\roaming\Microsoft\outlook
14 - Delete all of the files in this folder
This gets rid of the Outlook data and the profile setting.
I would restore the Outlook data (using OutBack Plus 9 - and assuming you have at least one POP3 type account) as follows:
1 - Run OBP9 and click Restore
2 - Locate the backup file to restore from  
-- Open it
3 - When you get the message indicating that a full profile restore will not be done - acknowledge it.  
OBP9 should then be planning to do a "Default" restore (i.e. it will restore the data to the default locations). 
4 - Select the Outlook data files for the restore ... but do NOT restore any ".ost" type files (Outlook will rebuild these automatically).
5 - Finish the restore -- this will restore the Outlook data files to the proper default locations (e.g. 
[My Documents]\Outlook Files for normal ".PST" files)
6 - Start Outlook [which will begin with a request to create a new Profile (Outlook) then email account]
7 - Refer to the web page:  
http://ajsystems.com/kb3/outlook2010emailaccounts.htm
and begin at step "B" ... by electing to do a manual configuration of the account.
8 - Link the account to the (appropriate) Personal Folder file [PST file] restored to [My Documents]\Outlook Files
9 - Add any other POP3 type accounts using the same procedure .. linking them to the appropriate PST file. 
Note - you can have multiple POP3 account linked to the same Personal Folder file (as was always the case prior to Outlook 2010.
10 - Add any other accounts (e.g. IMAP based accounts) which will automatically create the appropriate file and re-synch with the server.
11 - Re-run OBP9
12 - Locate the backup file to restore from  
-- Open it
13 - Select Outlook Profile settings and ancillary settings (e.g. Signatures) ... but do NOT select any PST or OST files.
14 - Finish the restore to restore these settings to the new profile (created by step 6).
This was done with Outlook 2013 as well and on Windows 7 and Windows 8.1.  All worked!

Similar Messages

  • Outlook 2010 Rules Run at Schedule Time

    I set a rule to forward certain important corporate email to my hotmail so I can check it on my cell phone. It works fine but I like to set the rule to run on the weekend only, is this possible? I search internet and I don't see anyone has this need but
    I - weird! Thanks
    Thang Mo

    No, it's not possible to run Outlook rules at specified date. If you don't want the rule to run everyday, we can deactivate the rule and manually run the rule by clicking "Run rules now" button any time you want from
    Home tab > Rules > Manage Rules & Alerts.
    Or you can post your question to Outlook for developers forum and check if we can do this via VBA:
    http://social.msdn.microsoft.com/Forums/office/en-US/home?forum=outlookdev
    Best Regards,
    Steve Fan
    TechNet Community Support

  • Can not add a New appointment to a shared calendar in Outlook 2010, can only add a New Meeting.

    Hi
    I can not add a new appointment to a shared calendar in Outlook 2010. I can see the calendar and appointments in it (all appointments are marked as busy, the detail can not be seen. I want it to do this) and I can and a New meeting to the shared calendar
    but I can not add just an appointment.
    I do not want e-mail being sent to the owner of the shared calendar everytime I add something.
    When I view the appointment that im creating in the shared calendar the New appointment button is greyed out but the New meeting button is available.
    The permision on the shared calendar for the user is:
    Custom
    Read = none
    Write = create items, create subfolders, edit own
    delete = Own
    Other = folder visable
    Thanks
    contributor permission in outlook 2010 calendar does not work, I have given this as permision but issue is the same.  We currently connect to an exchange server 2003;

    Hi Cmrl,
    Does it happen when you create an appointment via OWA?
    Does it happen when you create an appointment via Outlook 2003?
    Do you have any mobile device?
    How many users encountered the issue, all users or some user?
    At first, I suggest you recreate outlook profile.
    At second, 
    use PFDAVAdmin
    to correct any problems found.

  • AppleScript-based rule only works manually

    Greetings,
    I have set up numerous Rules to automatically move messages to specific folders, based on Subject headers. These work automatically, as new mail comes in.
    However, one of my Rules is set up to "Run Applescript." The script deals with a single file that gets e-mailed to me by one of my webservers at 11:00 each night. It deletes the previous night's file from the HD, grabs the new attachment, saves it to the HD, and deletes the message in Mail. The script works correctly, but the Rule (which is set as Active) only works when I select the message and do it manually (Command-Option-L) -- not automatically when the message arrives.
    Why is this?
    The script, which lives in /Library/Scripts/Mail Scripts/Rule Actions, is below.
    Thanks!
    DM
    <hr>
    using terms from application "Mail"
        on perform mail action with messages theMessages for rule theRule
            tell application "Mail"
                repeat with thisMessage in theMessages
                    set theAttachment to first item of thisMessage's mail attachments
                    set theAttachmentFile to theAttachment's name
                    tell application "Finder"
                        if exists "iBook:Users:me:Documents:" & theAttachmentFile then
                            delete "iBook:Users:me:Documents:" & theAttachmentFile
                        end if
                    end tell
                    save theAttachment in "iBook:Users:me:Documents:" & theAttachmentFile
                    delete thisMessage
                end repeat
            end tell
        end perform mail action with messages
    end using terms from

    I would start by verifying that the rule is in fact firing - add a set color of background action before the run applescript action.
    Next I would try a few magic incantations:
    change the script location to ~/Library/Scripts/Applications/Mail/
    remove the "for rule theRule" from the on perform
    add an on run handler after the end of the existing script
    using terms from application "Mail"
    on run
    tell application "Mail" to set sel to selection
    tell me to perform mail action with messages (sel)
    end run
    end using terms from
    Why? 'cos any scripts that I have successfully run from a rule are like that! The 3rd one has the advantage that you can apply your script to selected messages, which can be useful (though not in the present case).
    If none of this works, it is time to try some serious debugging. You could consider putting in an try ... on error with a display dialog for the error message, or simply a display dialog on script entry to verify that it is running.
    Let me know ...
    AK

  • Unable to access BCM 2010 DB with Outlook 2010 after running compatibility pack for Outlook 2013

    After reading about the Description of Business Contact Manager compatibility pack for Outlook at this link http://support.microsoft.com/kb/2793723 it clearly states "Business Contact Manager for Microsoft Outlook is a compatibility pack that enables
    Business Contact Manager for Outlook 2007 and Business Contact Manager for Outlook 2010 to run in Microsoft Outlook 2010 and Microsoft Outlook 2013. Business Contact Manager for Outlook (BCM) also supports using Outlook 2010 and Outlook 2013 in a side-by-side
    installation."  This link also states "General product fixes, including stability and performance improvements."
    So, I was hoping for some stability and performance improvements but desired to continue running from Outlook 2010.  After running this downloaded compatibility pack it had little messages other than completed. If I try to run it again it says the database
    is already updated.  however, now I cannot open the BCM DB in Outlook 2010.  when I try to connect to it from Outlook 2010 BCM it only opens a small window with no message, only a yellow exclamation sign.  It also won't allow me to restore the
    back up.
    Can I undo what the compatibility pack program did to my BCM 2010 DB?
    Now it won't allow me to restore a DB from two days ago. It gives this error "Access is denied due to a password failure. RESTORE FILELIST is terminating prematurely".  I know the password is correct.
    Please help, anyone? Now I'm starting to freak out a bit.  I am going to reinstall BCM and pray.
    I was able to restore the two day old DB by not entering a password. Odd since I know I backed up using a password.

    Hi,
    Just checking in to see if the information was helpful. Please let us know if you would like further assistance.
    Thanks,
    Melon Chen
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please click
    here

  • Outlook 2010 prompting for password

    Hi everybody. I ran into an issue yesterday morning where at one of our sites Outlook 2010 has started prompting for a username and password. If the user types in their username as "MYDOMAIN\myuser" and their password, it lets them in but the Exchange
    status shows as "Disconnected". If the user sets their username to just "myuser" without the domain on the front it lets them in and works as expected until they close Outlook, at which point they have to enter their credentials again. 
    The strangest thing about this is that it's only affecting one of our sites and only Outlook 2010. Users running 2007 and 2003 do not have the problem and only users at this physical location have the problem. Does anybody know where I can look? I have tried
    clearing stored credentials, created new Outlook profiles and reset passwords. None of these things seem to have had any effect. 

    After changing a ton of outlook settings, deleting the user's account profile on outlook, deleting their domain profile from the effected computer, trying to fix the registry, deleting stored credentials, etc.... almost everything else I found something
    that FINALLY worked for me after over a year and about 12 different users being effected. 
    in the past I would just give up after much frustration and upgrade them to Office 2013 but that gets very expensive especially when I have 57 other users that could potentially run into the same issue. 
    Here is what I did. 
    - back up the user's data. log out and log into local admin
    - delete the user from the local registry
    - repair Office 2010 through control panel/programs, restart
    - have user log back in with their credentials to make new local profile. recover their backed up documents. log out and log back in as local admin. 
    - install hotfix KB2597011
    - restart computer
    - install hotfix KB2583935
    -restart computer
    - log in, open outlook and setup user's account. 
    Some of these steps may be skipped as I didn't find the hot-fixes until after I repaired office, however I am just providing what I did in the process to end up with a working outlook again. 
    Some things unique to my situation that may or may not help. 
    - I noticed some of the computers have Office2010 32bit installed on 64 bit machines. 
    - Some of the users were swapped over using a profile mover program when we moved to a domain environment. 
    - For me this always happens when the user's passwords expire and they have to log in to the portal to change it. Then outlook starts with the repeated prompt for passwords. It is always computer specific and nothing but what I provided above has worked
    other than re installing windows 7 and then office or upgrading to office 2013. 

  • "Connecting to Printer" in Outlook 2010 sends message window to back.

    I have a client experiencing a peculiar issue in Outlook 2010 that only occurs when particular Brother printers are set as their default. A HL-4140CN or a MFC-9460CDN
    If within Outlook they open a message window then click on File | Print they get a brief message "Connecting to Printer" then the Main Outlook window comes to the front, obscuring the Email Message Window that displays the print preview and options.
    It's possible to switch back and print but it's a nuisance and confusing for some users.
    This situation appears to be intermittent. Sometimes the "Connecting to Printer" message does not appear and in this case the peculiar behaviour doesn't appear.
    I don't know what changes to require the "Connecting to Printer" message but I do know that it can be removed by changing the default to the third printer in the office, an MFC-9440CN or by switching the Printer driver to a BR-Script version.
    Any ideas or suggestions?

    Hi,
    Did you use the same user account to logon another client computer and check whether still encounter the same
    issue? Please refer to following thread and check if can help you.
    Outlook
    - Email minimises when you go to File > Print
    àI do know that
    it can be removed by changing the default to the third printer in the office, an MFC-9440CN or by switching the Printer driver to a BR-Script version.
    Based on your description, the issue can be solved by switching the printer driver. There seems has issue in
    printer driver. Please check if latest printer drivers need to be installed. I suggest that you should install the driver which help to remove
    "Connecting to Printer" message, then check if this issue occurred
    again.
    If anything I misunderstand or any update, please don’t hesitate to let me know.
    Hope this helps.
    Best regards,
    Justin Gu
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Outlook 2010 hangs when loading in "processing"

    After upgrading from Windows 7 home to ultimate I am having problems with Outlook 2010.  When staring the program hanks up on "processing"
    Any idea what I can do to resolve this problem?
    Pheresisman

    Hi,
    First, I suggest you try to start Outlook 2010 in safe mode [hold ctrl key while startup] to see if this issue is caused by some add-ins.
    If it works fine in this situation, try to disable add-ins.
    Click the File menu –> Options link –> Navigate to Add-Ins options.
    Select
    Disabled Items in the Manage dropdown and click the
    Go button. This would display the following Disabled Items window using which you can see and also
    re-enable the disabled add-in. You can select the ones you wish to re-enable and click the Enable button.
    Second, ensure Outlook 2010 are not running in compatibility mode,
    Locate C:\Program Files\Microsoft Office\Office14 Outlook.exe
    Right-click
    Outlook.exe, and then click Properties. 
    On the
    Compatibility tab, click to clear the Run this program in compatibility mode for check box.
    Click
    OK and try to start Outlook again.
    Hope that helps.

  • Outlook 2010 integration with OneNote 2013

    I have Outlook 2010 installed and then Office 2013 installed for all other Office applications. The problem I have is when I try to click the Send to OneNote button in Outlook 2010, it still opens OneNote 2010 - not OneNote 2013. How do I fix this? I've
    tried installing the latest Office 2010 service pack for Outlook 2010 - I've tried manually adding the .dll for OneNote 2013, etc. 
    I had this combination of apps working on another machine - but I must have done it with luck - because I sure as heck can't figure out how to get it to work on purpose on my new machine. 
    Jeff Dembinski

    Here is some basic troubleshooting steps for OneNote and Outlook Integration Issues:
    http://blogs.technet.com/b/lior/archive/2013/02/09/troubleshooting-onenote-and-outlook-integration-issues.aspx
    However, we don't recommand our user install the different Office version  in one machine. There might be some
    Compatibility Issues between them.
    Cheers,
    Tony Chen
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please contact
    [email protected]

  • Sync Outlook contacts and calendar with iTunes between iPhone 4 and Outlook 2010 (32bits) USB only manually, not automatically.

    Hello guys,
    After disabeling and enabeling the option automatic sync iPods, iPhones and iPad in iTunes (settings > devices), my iPhone 4 is only syncing manually and not automatically as before the option change.
    With manually sync I mean connecting the usb cable and pushing the synchronisation button in iTunes. I reinstalled Outlook (Office 2010 32bit) and iTunes but it did not solve the problem and it's still only manually syncing. I also renewed the Windows Profile. Is there an option I missed in iTunes or Outlook? In Outlook is the iTunes Outlook Addin present and enabled....
    How can I solve this problem?
    Thanks, William

    Hi, could you specify what you did. It appears that nothing on my iPhone syncs any more. I have an iMac and iPhone 4 running the latest system updates. Thanks!

  • Auto reply (client rule) Outlook only Outlook 2010

    When i setup a rule in outlook 2010 for automactic reply it say Client rule only. Is it possible to make this rule perminent so that i can close the outlook and the auto reply rule is still working. Maybe a server
    based rule? We use outlook client with O365 exchange On-Premises
    Thank you.
    Kind regards,

    Hi,
    I've tried the following with Outlook 2010 connected to Exchange 2013, and this works for me;
    Select the Inbox, and click Tools, then Rules and Alerts.
    Click New Rule and click Check messages when they arrive.
    Click Next twice (don’t do anything in the "What condition(s) do you want to check?" box.)
    Select have server reply using a specific message, and click …a specific message. A blank email appears.
    In the Subject and Message fields, type the message you want to send. Leave the To, CC, and BCC (if showing) fields blank
    Click Save and Close to close the message window and click Next.
    Select the appropriate exclusion option (if any) and click Next.
    Name the rule (do not check the Run this rule… checkbox.) and check Turn on this rule.
    Click Finish.
    That works for me. Make sure your outlook profile is configured to use the mailbox that you want to have the auto-reply configured.
    If this still does not work, the alternative is to set up a transport rule on the Exchange server.

  • Outlook 2010 only pick up the default printer, ignore the manually selected printer.

    when I want to print paper through word or excel, I select printer-A, I got the paper from printer-A, which is fine. but in Outlook 2010, I did the same selection of Printer-A, and the outlook show the printer-A had been selected, but the paper was came
    out from printer-B, which is default printer in the windows 7...
    is anyone having this problem?

    Hi,
    I've seen some add-ins caused this issue, please start Outlook in Safe Mode to print:
    Press Win + R, type "outlook.exe /safe" in the blank box, press Enter.
    If then there's no problem selecting the printer to print, disable the suspicious add-ins to verify which caused the problem.
    Regards,
    Melon Chen
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Rules not working in Outlook 2010 Sent Items folder (Personal Folder)

    I've been trying to automatically categorize and send emails I've written and sent to the archive's Sent Items folder.  However, everytime I create a rule for a particular type of email it doesn't carry it out.  The rule will only work when I manually
    click 'Run this rule now...'.
    Here is what my rule looks like:
    Apply this rule after the message arrives
    from Byron33
      and sent to 'XXX'
      and with 'YYY' in the subject'
    assign it to the 'ZZZ' category
      and move it to the Sent Items folder (here, 'Sent Items' is in the Archive section)
    But it doesn't work.  All my other rules work (for the inbox folder).  Any way in which I can get this rule to function automatically?

    Hi
    Thank you for using
    Microsoft Office for IT Professionals Forums.
    From your description, I understand that the rule will only work when you manually click 'Run this rule now...'. If there is any misunderstanding,
    please feel free to let me know.
    Turn off Cached Exchange Mode to test this issue:
    http://office.microsoft.com/en-us/outlook-help/turn-on-or-off-cached-exchange-mode-HP010355560.aspx?CTT=1
    Click the File tab.
    Click Account Settings, and then click Account Settings.
    On the E-mail tab, click the Exchange account, and then click
    Change.
    Under Microsoft Exchange server, clear the Use Cached Exchange Mode check box.
    Exit and then restart Microsoft Outlook 2010.
    If it work fine after turn off cached exchange mode ,please repair your .OST file follow this article steps:
    http://office.microsoft.com/en-us/outlook-help/repair-outlook-data-files-pst-and-ost-HA010354964.aspx?CTT=1
    More additional information
    Troubleshoot rules you can refer to this link:
    http://office.microsoft.com/en-us/outlook-help/troubleshoot-rules-HP005242904.aspx?CTT=1
    Similar thread you can refer this link:
    http://www.msoutlook.info/question/133
    Please Note: Since the web site is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this
    information.
    Please take your time to try the suggestions and let me know the results at your earliest convenience. If anything is unclear or if there is anything
    I can do for you, please feel free to let me know.
    Hope that helps.
    Sincerely
    William Zhou CHNPlease remember to mark the replies as answers if they help and unmark them if they provide no help.

  • Outlook 2010/multiple exchange accounts/new mail notification on one only

    Hi, is there a way to have multiple exchange accounts in Outlook 2010 but just have new mail notifications on the first only?
    I tried having the first exchange account open an additional user, but running into memory errors as a result. Found the solution to that by adding them as separate accounts, but this creates noise with mail notifications, reminders, etc-
    Thanks in advance - Joe

    Hi,
    You can configure multiple Exchange accounts in Outlook 2010. For details on how to configure, you can refer to this article:
    http://blogs.msdn.com/b/outlook/archive/2009/08/25/multiple-exchange-accounts-in-outlook-2010.aspx
    Also, only the default mail store will get the new mail icon. You can use rules to pop up a desktop notification for the other accounts but the icon will only appear
    for the default account.
    Best Regards,
    Sally Tang
    TechNet Subscriber Support
    in forum
    If you have any feedback on our support, please contact
    [email protected]  

  • How can I set up a "receive only" email account in Outlook 2010

    I have an Outlook 2010 email account that receives emails from a "Fax-to email" service, and I'd like to make that accout "Receive Only".  Is it possible to do that, and if so, how.
    Capt. Dinosaur

    Hi
    As per the information and details provided by you, to set up a
    “Receive Only”email account in Outlook 2010, please follow these steps: -
    You have a few options available to you. You can set up the account with
    a fake SMTP server name and configure the Send/Receive group to not send mail from this account, or you can use a different, valid account for the Outgoing server, just in case you accidentally use the wrong account when you compose a message.
    First, create the account in Outlook: -
    Fill the name and address fields with the desired information. Select
    POP3 account type and enter the incoming server name.
    In the Outgoing server field, type
    nomail.
    Enter the correct username and password for the incoming mail account.
    If you want to verify the incoming server is correctly configured, click on
    Test Account Settings, and then choose the dialog after the incoming server is verified.
    Deselect the option to
    Automatically test account settings when the Next is clicked.
    Click on the
    Finish to return to Outlook.
    Because Outlook will error on every manual send and receive when it can not find the outgoing server error, you need to change the
    Send and Receive Settings for this account.
    Press
    Ctrl+Alt+A to open the Send/Receive Settings dialog. (or you can go to
    Send/Receive tab, Send/Receive Groups and select Define Send/Receive Groups.
    Click the
    Edit button.
    Select the receive-only account, then deselect
    Send Mail Items.
    Click on the
    OK, then Close to return to Outlook.
    I hope this information will be helpful for you.
    Thanks and regards
    Shweta@G

Maybe you are looking for

  • Problem installing Windows

    Hallo everybody. Need help installing Windows on a Macbook Pro, late 2008, 8Gb RAM. This is what i have: - I have a Macbook Pro 15" late 2008 - it's running Yosemite 10.10.1 - my CD-Drive died couple a years ago, so I have replaced it with a SSD: thi

  • BAPI ME_PROCESS_REQ_CUST - invalidate item

    Dear SAP, We are using BADI BAPI ME_PROCESS_REQ_CUST and pretend to flag parameter re_valid as mmpur_rule_invalid, on the method PROCESS_ACCOUNT or PROCESS_ITEM. According to note  Note 611175 - ME_PROCESS_REQ_CUST: Documentation, we must use method

  • Technical names Deactivation in User menu

    Dear Gurus, The Internal requirement is - Users should not be able to see Technical Name of Transaction codes. Ex : When user is assigned to Transaction Codes like SU01 When user logs in he should have to see only description " User Maintenace" not l

  • Error when saving a report to CMC when it contains dynamic parameters

    The error reads: Failed to read data from file C:\....reportname.rpt. Reason: Unable to launch C:\Program Files\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\ReportAdd. Both reportadd.exe and it's associated dll exist in the folder. Any

  • Where is the log files?

    Hi. I have some daemons in rc.conf that [FAILED] on boot. Arch boots so fast that i can't tell wich deamon who fails. I've been searching in /var/log but I'm not able to find a logfile that contains those errors.