GopherKing
New Member
- Joined
- Jul 28, 2017
- Messages
- 2
Ok, so this being my first post, I figured I would try to give you guys a good one!!
I'll start of by noting that I am using MS Office 2010 for all my applications, with the exception of SharePoint 2013. This is all installed on Windows 7 (yeah, we are a little behind the times on our software, but they want to make sure there are no issues with new software before rolling it out ... [cough] MS Office 2013/Windows 8[cough])
I have a Macro Enabled Excel Spreadsheet that has a bunch of VBA to extract multiple sets of information from a user's MS Outlook Shared Email boxes. Now, we don't have any problems with the code as it is executing without any issues, but to give you a little more background, we are extracting a count of emails per day, a count of emails with a specific subject line and contain a certain file type (.txt) per day, and also finding any emails with a specifically named attachment to extract the text from within that file and get a total line per day. The VBA loops through 8 separate Shared Email Boxes and applies the same code to each one. Now, we don't execute this VBA but once every 2 weeks, since running it on a daily basis isn't necessary, but every 2 weeks is just long enough to where it shouldn't take a large amount of time (expecting no more than 10 mins). I do have in place many bits of code to make sure that all the opening of files and objects are closed out to prevent memory leaks, which the previous owner did not (no wonder he isn't here anymore!), so this was able to help keep the time down.
However, after some time, I noticed that the amount of time to process the last two weeks of emails was taking longer and longer to complete. At some times, it was over an hour (realizing that I was also doing other processes in MS Access which may have contributed to the time due to fighting for PC resources). In the last week, I had a new team member start on our team who I tasked with reviewing the code and potentially moving the counts gathered into a Collection rather than a temporary worksheet (created by the VBA) to speed things back up. But when he ran the process for the first time, it completed in 3 mins!!!!
He had mentioned that he had been encountering issues with his MS Outlook email and had worked with our IT department to setup a new Email Profile via Control Panel --> Mail (32-bit) --> Show Profiles ---> Add. He advised that after doing this, his email was much faster and not as "bogged down" as his 'Outlook Default Profile' (even though they are using the same email address and shared mailboxes).
So, for S&G's (you can guess what they stand for), I decided to try it out myself and created a new Email Profile. After creating it and closing/reopening my MS Outlook to then select which profile I wanted to use, I reran my VBA. The results were that the process was taking me with the new profile on average 8 mins to complete!!! Which is longer than the new guy, but I do have to consider that I am a remote employee connected through a throttled VPN and using a laptop (so my 20mbs compared to his 95mbs is why mine is not that fast!). But, this is better than the 21 mins that it is still taking on my default email profile within MS Outlook. And just to be sure, I ran the process multiple times throughout the day to ensure that it wasn't just because it was early in the morning and no one was really in the office yet killing network bandwidth.
Now, for my question to you ... Can anyone explain to me why accessing MS Outlook via VBA would be slower on a default email profile, but 2-3 times faster if you create a new email profile with the same email and shared email boxes? Is there some cached file that MS Outlook keeps on your local PC that retains any emails that have been deleted from the server (permanently) that when you create a new profile it doesn't download them locally because they aren't on the server anymore?
I've search the net (and someone may have better luck that me as I have seen it multiple times in forums where someone says they searched, but they may not have used the correct verbiage) and haven't found anything yet, so I am looking here to see if anyone else has encountered this issue and found a possible reason as to why it happens. A solution to it would also be great, if it doesn't require creating a new email profile (would like to keep the general masses from trying to do this process, we all know how well they can follow directions at times!).
Thanks in advance!! I look forward to your responses.
I'll start of by noting that I am using MS Office 2010 for all my applications, with the exception of SharePoint 2013. This is all installed on Windows 7 (yeah, we are a little behind the times on our software, but they want to make sure there are no issues with new software before rolling it out ... [cough] MS Office 2013/Windows 8[cough])
I have a Macro Enabled Excel Spreadsheet that has a bunch of VBA to extract multiple sets of information from a user's MS Outlook Shared Email boxes. Now, we don't have any problems with the code as it is executing without any issues, but to give you a little more background, we are extracting a count of emails per day, a count of emails with a specific subject line and contain a certain file type (.txt) per day, and also finding any emails with a specifically named attachment to extract the text from within that file and get a total line per day. The VBA loops through 8 separate Shared Email Boxes and applies the same code to each one. Now, we don't execute this VBA but once every 2 weeks, since running it on a daily basis isn't necessary, but every 2 weeks is just long enough to where it shouldn't take a large amount of time (expecting no more than 10 mins). I do have in place many bits of code to make sure that all the opening of files and objects are closed out to prevent memory leaks, which the previous owner did not (no wonder he isn't here anymore!), so this was able to help keep the time down.
However, after some time, I noticed that the amount of time to process the last two weeks of emails was taking longer and longer to complete. At some times, it was over an hour (realizing that I was also doing other processes in MS Access which may have contributed to the time due to fighting for PC resources). In the last week, I had a new team member start on our team who I tasked with reviewing the code and potentially moving the counts gathered into a Collection rather than a temporary worksheet (created by the VBA) to speed things back up. But when he ran the process for the first time, it completed in 3 mins!!!!
He had mentioned that he had been encountering issues with his MS Outlook email and had worked with our IT department to setup a new Email Profile via Control Panel --> Mail (32-bit) --> Show Profiles ---> Add. He advised that after doing this, his email was much faster and not as "bogged down" as his 'Outlook Default Profile' (even though they are using the same email address and shared mailboxes).
So, for S&G's (you can guess what they stand for), I decided to try it out myself and created a new Email Profile. After creating it and closing/reopening my MS Outlook to then select which profile I wanted to use, I reran my VBA. The results were that the process was taking me with the new profile on average 8 mins to complete!!! Which is longer than the new guy, but I do have to consider that I am a remote employee connected through a throttled VPN and using a laptop (so my 20mbs compared to his 95mbs is why mine is not that fast!). But, this is better than the 21 mins that it is still taking on my default email profile within MS Outlook. And just to be sure, I ran the process multiple times throughout the day to ensure that it wasn't just because it was early in the morning and no one was really in the office yet killing network bandwidth.
Now, for my question to you ... Can anyone explain to me why accessing MS Outlook via VBA would be slower on a default email profile, but 2-3 times faster if you create a new email profile with the same email and shared email boxes? Is there some cached file that MS Outlook keeps on your local PC that retains any emails that have been deleted from the server (permanently) that when you create a new profile it doesn't download them locally because they aren't on the server anymore?
I've search the net (and someone may have better luck that me as I have seen it multiple times in forums where someone says they searched, but they may not have used the correct verbiage) and haven't found anything yet, so I am looking here to see if anyone else has encountered this issue and found a possible reason as to why it happens. A solution to it would also be great, if it doesn't require creating a new email profile (would like to keep the general masses from trying to do this process, we all know how well they can follow directions at times!).
Thanks in advance!! I look forward to your responses.