|
outlook
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
Outlook pre-SP2 update going wild every minuteI have recently installed the pre- Office SP2 Outlook update (see http://support.microsoft.com/?kbid=968009 - I installed both packages). The update has been installed on 3 systems: 2 XP Pro french systems (monoprocessor mobo) and one XP Pro english system (dual core). The problem I'm describing below cannot be observed on the dual core system. Exactly *every minute*, Outlook is going wild and loading the CPU at 100%. Depending on the system, this can last up to 4-5 seconds. During this period, everything is freezed. You can't even click on a button. When observing the process activity with ProcMon, one can see that Outlook is **massively** using the registry during this period (about 15-20 000 events - yes, twenty thousands!). Of course, this generates some trouble because any activity is interrupted during a few seconds every minute (typing, mouse clicks and wheeling,...). Anyone experiencing the same problem? Thanks in advance. -- Patrick Patrick Philippot wrote:
> Exactly *every minute*, Outlook is going wild and loading the CPU at Actually, it seems that Outlook is re-reading all settings from the > 100%. Depending on the system, this can last up to 4-5 seconds. During > this period, everything is freezed. You can't even click on a button. > When observing the process activity with ProcMon, one can see that > Outlook is **massively** using the registry during this period (about > 15-20 000 events - yes, twenty thousands!). registry every minute, as if it was starting up again. -- Patrick So the problem is only on the French systems? Have you rebooted? Tried
Detect and repair? A new profile? (Keep the old profile, we just want to see if it is a problem with the profile or the installation.) -- Show quoteHide quoteDiane Poremsky [MVP - Outlook] Need Help with Common Tasks? http://www.outlook-tips.net/beginner/ Outlook 2007: http://www.slipstick.com/outlook/ol2007/ Outlook Tips by email: dailytips-subscribe-requ***@lists.outlooktips.net Exchange Messaging Outlook newsletter: EMO-NEWSLETTER-SUBSCRIBE-REQU***@PEACH.EASE.LSOFT.COM Outlook Tips: http://www.outlook-tips.net/ Outlook & Exchange Solutions Center: http://www.slipstick.com You can access this newsgroup by visiting http://www.microsoft.com/office/community/en-us/default.mspx or point your newsreader to msnews.microsoft.com. "Patrick Philippot" <patrick.philip***@mainsoft.xx.fr> wrote in message news:ufDgtllnJHA.4964@TK2MSFTNGP05.phx.gbl... > Hi, > > I have recently installed the pre- Office SP2 Outlook update (see > http://support.microsoft.com/?kbid=968009 - I installed both packages). > The update has been installed on 3 systems: 2 XP Pro french systems > (monoprocessor mobo) and one XP Pro english system (dual core). The > problem I'm describing below cannot be observed on the dual core system. > > Exactly *every minute*, Outlook is going wild and loading the CPU at 100%. > Depending on the system, this can last up to 4-5 seconds. During this > period, everything is freezed. You can't even click on a button. When > observing the process activity with ProcMon, one can see that Outlook is > **massively** using the registry during this period (about 15-20 000 > events - yes, twenty thousands!). > > Of course, this generates some trouble because any activity is interrupted > during a few seconds every minute (typing, mouse clicks and wheeling,...). > > Anyone experiencing the same problem? > > Thanks in advance. > > -- > Patrick Diane Poremsky [MVP] wrote:
> So the problem is only on the French systems? Have you rebooted? Tried Hello Diane,> Detect and repair? A new profile? (Keep the old profile, we just want > to see if it is a problem with the profile or the installation.) >So the problem is only on the French systems? Well, it happens that the english system is also the dual core system. This is the most powerful system and the one having the most memory. I can't draw any conclusion from this. > Detect and repair? Didn't help> A new profile? I created a new profile containing a single email account. I started Oultlook with this profile. Problem gone. I re-started Outlook with the original profile. Problem back. What on earth in a profile can trigger such an event exactly every other minute? Ooooops! Got it! I have an old macro that uses a 1 minute timer. This code always used to run very quickly. This is what has changed. Now, it seems to take much more time to run. Code excerpt: Set objNS = Application.GetNamespace("MAPI") Set objDeletedItems = objNS.GetDefaultFolder(olFolderDeletedItems).Items ..... Public Sub TimerFunc() ' It's the timer callback If Not bCanRun Then Exit Sub Dim Item As Object If Not objDeletedItems Is Nothing Then For Each Item In objDeletedItems Item.UnRead = False Next End If End Sub I can't understand why this code might take up to 4-5 seconds to execute, even on a slower system. I just noticed that if I disable the ESET NOD32 antivirus plugin for Outlook, the execution time is significantly shorter, but still too long. Disabling ESET NOD32 (version 4) alltogether doesn't change anything. Now that I know where the problem is, I will investigate this further and let you know. I guess that I don't see the problem on the dual core system because the macro code is probably executed on a different thread. Thanks. Patrick Philippot wrote:
Show quoteHide quote > I have an old macro that uses a 1 minute timer. This code always used I must mention that most of the time, objDeletedItems is empty or > to run very quickly. This is what has changed. Now, it seems to take > much more time to run. Code excerpt: > > Set objNS = Application.GetNamespace("MAPI") > Set objDeletedItems = > objNS.GetDefaultFolder(olFolderDeletedItems).Items > > .... > > Public Sub TimerFunc() ' It's the timer callback > If Not bCanRun Then Exit Sub > > Dim Item As Object > > If Not objDeletedItems Is Nothing Then > For Each Item In objDeletedItems > Item.UnRead = False > Next > End If > End Sub > > I can't understand why this code might take up to 4-5 seconds to > execute, even on a slower system. contains only a few items. So the timer callback should execute in a snap. -- Patrick Patrick Philippot wrote:
>> I can't understand why this code might take up to 4-5 seconds to OK. Problem spotted.>> execute, even on a slower system. > > I must mention that most of the time, objDeletedItems is empty or > contains only a few items. So the timer callback should execute in a > snap. Before installation, the "Empty the Deleted Items folder upon exiting" option was enabled on all systems. After installation of the pre-SP2 patch, this option has been disabled on the french systems, not on the english system. So there were hundreds of invisible deleted messages in this folder. Consequently, the above quoted loop in the macro code took a lot of time to execute. Sorry for the trouble but it's good to know this. -- Patrick Thanks for the info but next time you may want to also post to a programming
group - that is where the experts in coding tend to hang out. -- Show quoteHide quoteMilly Staples [MVP - Outlook] Post all replies to the group to keep the discussion intact. ALWAYS post your Outlook version. How to ask a question: http://support.microsoft.com/KB/555375 After furious head scratching, Patrick Philippot asked: | Patrick Philippot wrote: ||| I can't understand why this code might take up to 4-5 seconds to ||| execute, even on a slower system. || || I must mention that most of the time, objDeletedItems is empty or || contains only a few items. So the timer callback should execute in a || snap. | | OK. Problem spotted. | | Before installation, the "Empty the Deleted Items folder upon exiting" | option was enabled on all systems. After installation of the pre-SP2 | patch, this option has been disabled on the french systems, not on the | english system. So there were hundreds of invisible deleted messages | in this folder. Consequently, the above quoted loop in the macro code | took a lot of time to execute. | | Sorry for the trouble but it's good to know this. "Milly Staples [MVP - Outlook]" <what@ever> a écrit dans le message de news: OHKRrv3nJHA.1***@TK2MSFTNGP06.phx.gbl...> Thanks for the info but next time you may want to also post to a Milly,> programming > group - that is where the experts in coding tend to hang out. It you re-read this thread more cautiously, you'll see that it's actually not a programming problem but an installation problem. The macro issue was only a consequence of the installation problem. There's no programming problem at all. -- Patrick "Patrick Philippot" <patrick.philip***@mainsoft.fr> wrote in message Then microsoft.public.outlook.installation should be more appropriate.news:gp166n$1j6f$1@biggoron.nerim.net... > It you re-read this thread more cautiously, you'll see that it's actually > not a programming problem but an installation problem. -- Brian Tillman [MVP-Outlook] "Brian Tillman [MVP - Outlook]" <tillman1***@yahoo.com> a écrit dans le message de news: O7vis%23CoJHA.1***@TK2MSFTNGP04.phx.gbl...> "Patrick Philippot" <patrick.philip***@mainsoft.fr> wrote in message OK. But this was not known when starting the thread. Should I repost all > news:gp166n$1j6f$1@biggoron.nerim.net... > >> It you re-read this thread more cautiously, you'll see that it's actually >> not a programming problem but an installation problem. > > Then microsoft.public.outlook.installation should be more appropriate. messages to microsoft.public.outlook.installation ? -- Patrick "Patrick Philippot" <patrick.philip***@mainsoft.fr> wrote in message No, but perhaps a summary and a new description of the problem given what news:gp1il2$1k7l$1@biggoron.nerim.net... > OK. But this was not known when starting the thread. Should I repost all > messages to microsoft.public.outlook.installation ? you've discovered would be appropriate. -- Brian Tillman [MVP-Outlook]
Weblink launch from Ootlook 2003 hangs
Outlook Addin for Windows Live Mail causing problems with Blackberry Grab URL and put in a mail (Outlook 2003) Outlook Update Will Not Install - Help.... Question about using rules on multiple machines Outlook 2003 - Send Receive button disappeared on add of newprofil Sending Large Attachments Outlook 2007 and links My own e-mail is shown whenreplying a mail??? How to change AutoCorrect options permanently? |
|||||||||||||||||||||||