What to do when Outlook AutoArchive doesn't work

AutoArchive feature helps us manage the space in the mailboxes or on the e-mail server that were are using by automatically moving items to an archive location. These items can be Email messages, Calendar items, Tasks, Notes, Journal entries.
However, sometimes some users may find that Outlook AutoArchive doesn’t work as expected, this can be frustrating. In this article I’ll introduce some steps to troubleshoot this issue, I hope it will be helpful to those who meet the issue.
Always check the Default AutoArchive settings first
When AutoArchive is not working properly, the first thing we should do to troubleshoot the issue, is to make sure the AutoArchive setting is correct.
I’ll take Outlook 2013 for example, go to FILE tab -> Options -> Advanced -> AutoArchive -> AutoArchive Settings… button, we will see the AutoArchive window below:

To make AutoArchive work, make sure the first checkbox has been selected and you have configured how frequently you want AutoArchive to run.

If you select “Prompt before AutoArchive runs”, it will notify you before AutoArchive runs.

If you want to delete expired items, select “Delete expired items (e-mail folders only)”.

You should select “Archive or delete old items”, or only expired items will be deleted.

Select “Show archive folder in folder list” to let the archive.pst appear in the folder list, which helps you find archived items easily.

You can set the age of the items that you want to archive in the field of “Clean out items older than x”, the age is based on the last Modified date by default. I’ll introduce this later in this article.

Then you need to decide whether to move old items to an archive .pst file, or permanently delete old items. Once you have your choice, you can apply these settings to all folders now and click OK to save the settings.
AutoArchive doesn’t work on one specific folder?
Apart from the default settings, each folder can be set with its own AutoArchive settings different from the global settings.
Right click on the folder and select Properties -> AutoArchive tab.

You can select “Do not archive items in this folder” if you want this folder to be an exception of AutoArchive.

If you select “Archive items in this folder using the default settings”, you will archive items in this folder using the default settings as it states, and the “Default Archive settings” button below is referring to the same AutoArchive
window as FILE -> Options -> Advanced -> AutoArchive -> AutoArchive Settings.

If you want the AutoArchive settings for this folder to be different from the Default AutoArchive settings, select “Archive this folder using these settings”. The age of items can be set to a different one, you can even select a separate
.pst file to archive items in this folder. After everything is decided, click OK to save the settings.
Please note these settings are specific to each folder and are not applied to subfolders. Please configure the settings individually for each folder.
Modify the ArchiveIgnoreLastModifiedTime registry value
Outlook archive works based on the last modified date and time by default, if you
reply, forward, move, edit, save, import an item, the modified date will change, this may cause the AutoArchive not to archive the item.
If you want to let Outlook to archive items based on the received date, you need to set the ArchiveIgnoreLastModifiedTime registry value.
Since serious problems might occur if you modify the registry incorrectly, please back up registry in Windows first:http://windows.microsoft.com/en-US/windows7/Back-up-the-registry
To create the ArchiveIgnoreLastModifiedTime registry value, follow these steps:
Press Win + R to start Run, type
regedit in the Open box, and then click OK.
Locate and then click the following registry subkey:
HKEY_CURRENT_USER\Software\Microsoft\Office\14.0\Outlook\Preferences (Outlook 2010)
HKEY_CURRENT_USER\Software\Microsoft\Office\15.0\Outlook\Preferences (Outlook 2013)
On the Edit menu, point to New, click
DWORD Value, type ArchiveIgnoreLastModifiedTime, and then press ENTER.
Right-click ArchiveIgnoreLastModifiedTime, and then click
Modify.
In the Value data box, type 1, and then click
OK.
Exit Registry Editor and restart Outlook to make the registry take effect.
Once the registry key is added, check if Outlook archives the items properly. We can try manually archiving:
Go to FILE tab -> Info -> Cleanup Tools -> Archive, select the folders that you want to archive and archive criteria, click OK. Outlook should then archive the items based on the received date.
The Archive .pst file
As the Archive storage file, the .pst file may cause AutoArchive not working issue. If the .pst file is corrupted or too large, AutoArchive may not work as expected.
Scanpst.exe is an Inbox repair tool to fix Outlook Data Files like .ost and .ost files, it can be used to fix a corrupted .pst file. To find Scanpst.exe, browse to the locations below:
For Outlook 2013 on a 32-bit version of Windows:
<disk drive>\Program Files\Microsoft Office 15\root\office15
For Outlook 2013 on a 64-bit version of Windows:
<disk drive>\Program Files(x86)\Microsoft Office 15\root\office15
For Outlook 2010 on a 32-bit version of Windows:
<disk drive>:\Program Files\Microsoft Office\Office14
For Outlook 2010 on a 64-bit version of Windows:
<disk drive>:\Program Files\Microsoft Office(x86)\Office14
When the tool is opened, type the path and the file name of the .pst file or click Browse to locate the file by using the Windows file system, and then click Start.
More details about the tool can be found in this kb below:
How to repair your Outlook personal folder file (.pst)
http://support.microsoft.com/kb/272227/en-us
Another scenario is the .pst file is full. For Outlook 2003 and Outlook 2007 the default limit is 20GB and for Outlook 2010 and Outlook 2013 the limit is 50GB.
You won’t be able to add items to the archive .pst file when the file reaches 19GB or 47.5GB, once the .pst file gets too large, I suggest you create a new .pst file to archive the items.
One more thing to remember, don’t store the .pst file on the network share, which we always reminder our users of.
Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

Consider this program that tests whether a number is
prime.
[attempt to divide by each integer from 2 to n-1]At risk of lowering the signal to noise ratio, I
should point out that the algorithm given is just
about the worst possible.
I know that the point was to illustrate debugging
and not good prime test algorithms, and I disagree
with the correspondent who thought the post was
condescending.
Anyway, the java libraries have good prime testing
methods based on advanced number theory research that the
non-specialist is unlikely to know. Looking at the java
libraries first is always a good idea.
Even with the naive approach, dramatic improvements
are possible.
First, only try putative divisors up to the square root
of the number. For 999997 this is about 1000 times faster.
Next only try dividing by prime numbers. This is about
7 times faster again. The snag, of course, is to find the
prime numbers up to 1000, so there might not be much
advantage unless you already have such a list. The sieve
of Erastosthenes could be used. This involves 31 passes
through an array of 1000 booleans and might allow an
improvement in speed at the expense of space.
Sorry if I've added too much noise :-)

Similar Messages

  • What to do when your program doesn't work.

    A huge number of posts here seem to relate to code that has been written (one presumes by the poster), but which doesn't work.
    I get the impression that people don't know what to do next.
    It's really not that difficult. When you're writing your program you constantly have in mind what you expect will happen as a result of each bit of code that you put.
    If at the end of the day, the program as a whole doesn't behave as you expected, then somewhere in there there must be a point at which the program starts doing something that doesn't correspond to what you anticipated. So, you add some System.err.println statements to test your beliefs.
    Consider this program that tests whether a number is prime.
    public class Test
        public static void main(String args[])
            // Get the number to test.
            int number = Integer.parseInt(args[0]);
            // Try each possible factor.
            int factor;
            for(factor = 2; factor < number; factor++)
                // See whether it is really a factor.
                if(number / factor == 0)
                    break;
            if(factor == number)
                System.out.println("Number is not prime.");
            else
                System.out.println("Number is prime.");
    }Straight forward enough, but it doesn't actually work :( It seems to say that every number is not prime. (Actually, not quite true, but I didn't test it that carefully, since it didn't work).
    Now, I could scrutinise it for errors, and then, having failed to find the problem, I could post it here. But let's suppose I'm too proud for that.
    What might be going wrong. Well, how sure am I that I'm even managing to capture the number of interest, number. Let's put in a System.err.println() to test that.
    Is the program in fact trying the factors I expect? Put in System.err.println() for that.
    Is the program correctly determining whether a number is a factor? Need another System.err.prinln (or two) for that.
    public class Test
        public static void main(String args[])
            // Get the number to test.
            int number = Integer.parseInt(args[0]);
            System.err.println("Number to check is " + number);
            // Try each possible factor.
            int factor;
            for(factor = 2; factor < number; factor++)
                System.err.println("Trying factor " + factor);
                // See whether it is really a factor.
                if(number / factor == 0)
                    System.err.println(factor + " is a factor.");
                    break;
                System.err.println(factor + " is not a factor.");
            if(factor == number)
                System.out.println("Number is not prime.");
            else
                System.out.println("Number is prime.");
    }Let's try with on the number 6.
    The output is:
    Number to check is 6
    Trying factor 2
    2 is not a factor.
    Trying factor 3
    3 is not a factor.
    Trying factor 4
    4 is not a factor.
    Trying factor 5
    5 is not a factor.
    Number is not prime.
    Whoah! That's not right. Clearly, the problem is that it's not correctly deciding whether a number is a factor. Well, we know exactly where that test is done. It's this statement:
                if(number / factor == 0)Hmm.... let's try 6 / 3, 'cos 3 is a factor.
    6 / 3 = 2.
    But that's not zero. What the.... Oh - I see, it should have been number % factor.
    Ok - let's fix that, and run it again.
    Now the output is:
    Number to check is 6
    Trying factor 2
    2 is a factor.
    Number is prime.
    Not the right answer, but at least it's now figured out that 2 is a factor of 6. Let's try a different number.
    Number to check is 9
    Trying factor 2
    2 is not a factor.
    Trying factor 3
    3 is a factor.
    Number is prime.
    Again, got the right factor, but still the wrong answer. Let's try a prime:
    Number to check is 7
    Trying factor 2
    2 is not a factor.
    Trying factor 3
    3 is not a factor.
    Trying factor 4
    4 is not a factor.
    Trying factor 5
    5 is not a factor.
    Trying factor 6
    6 is not a factor.
    Number is not prime.
    Aagh! Obvious - the final test is the wrong way round. Just fix that, remove that System.err.println()s and we're done.
    Sylvia.

    Consider this program that tests whether a number is
    prime.
    [attempt to divide by each integer from 2 to n-1]At risk of lowering the signal to noise ratio, I
    should point out that the algorithm given is just
    about the worst possible.
    I know that the point was to illustrate debugging
    and not good prime test algorithms, and I disagree
    with the correspondent who thought the post was
    condescending.
    Anyway, the java libraries have good prime testing
    methods based on advanced number theory research that the
    non-specialist is unlikely to know. Looking at the java
    libraries first is always a good idea.
    Even with the naive approach, dramatic improvements
    are possible.
    First, only try putative divisors up to the square root
    of the number. For 999997 this is about 1000 times faster.
    Next only try dividing by prime numbers. This is about
    7 times faster again. The snag, of course, is to find the
    prime numbers up to 1000, so there might not be much
    advantage unless you already have such a list. The sieve
    of Erastosthenes could be used. This involves 31 passes
    through an array of 1000 booleans and might allow an
    improvement in speed at the expense of space.
    Sorry if I've added too much noise :-)

  • HT4259 I have been trying for hours to extend my Extreme Gen 5 network with an Express Gen 2.  But no matter what I do or try, it doesn't work.  What does happen is my internet gets block somehow when the Express looks like it's set up and 'green' - no in

    I have been trying for hours to extend my Extreme Gen 5 network with an Express Gen 2.  But no matter what I do or try, it doesn't work.  What does happen is my internet gets blocked somehow when the Express is online and looks like it's set up perfect and 'green' - but no internet connection for anything even though the Extreme is green and the modem is good.  Once I disconnect the Express, everything is good again.
    I've tried LAN, WAN, though a switch, direct connect, Extreme set to Extend the network, the Express set to be an extension.  Most of the time I get an error trying to update the Express.  But when it seems to be set up perfect, the entire house can't get to the internet.  Just when it looks right, it is so wrong.
    If anyone can give me exact steps (e.g., "...from the Base Station menu, select the Restore Default Setting option" vice "...just restore the defaults..."), I would greatly appreciate it.  I'm left to the conclusion that the Express is faulty.  I've been using Airport Utility 6.2 from Mountain Lion on one computer and Airport Utility 5.6.1 from Snow Leopard on another computer (the latter give more control while the former just want you to 'forget' the Express).

    I finally got it working.  I was trying to set it up ethernet.  My biggest mistake was when the new Express came on, I did not select 'Continue' - I went straight to manual thinking that I would get the most setup options in manual mode.  So everything I initially tried always resulted in 'wireless'.  Even when I would update or restore default settings, the Express would not completely restart. Or sometimes I would get an error. So most of the time I had to unplug it.  So when it came back up, none of my changes were retained. But there were a lot of times when everything was green and appeared to be fine. But anytime the ethernet cable was plugged in, no more internet.
    So here's the weird part.  When I finally tried 'continue' (vice manual), I would get 4 options.  One would be 'ethernet' extended.  So I would select it, it gave me green lights, all looked good, and still the same problem.  This is when I got frustrated.  I thought I had exhausted all possible combinations.
    But somehow when trying continue again after another restore, I only got 3 options.  One was the same ethernet extended option (can't remember what the missing 4th one was).  And this time it worked - it gave me the big green circle with the checkmark saying it was successful.  I don't know what I did different, but I know now that it won't work if 4 options come up to choose from.  It will work if only 3 options come up.  And success if only verified by the big checkmark.  Had anyone anywhere said the checkmark declaring success is validation, then maybe I wouldn't have gone down so many rabbit holes thinking it should have been successful.
    As for which Airport Utility I prefer, 6.2 looks nice, but it would just ignore the Express and would want me to 'forget' it and would not let me edit it.  Airport Utility 5.6.1 was the one that I ended up using the most and finally had success with.  It still strikes me as odd that there is no manually way to pick ethernet, it can only be choosen following a 'restore defaults', and only from the 3-option list (the 4-option list had the same ethernet choice, but it no worky).
    Thanks for the response.  I really do appreciate it.
    Aiport Extreme Gen5 - internet access and router
    Airport Express Gen2 - connected via ethernet, extending my wireless
    - configured while connect directly to the Extreme, but now on a switch (16-port hub)
    Using Airport 5.6.1
    1) Restore Defaults from Base Station menu
    2) Following restart, Select Continue
    3) Of the 3 option presented, select 'ethernet.... extend network...'
      - if 4 options are present, may not work
    4) Wait for the green circle with the big white checkmark.
    5) Connected Express to the switch where a cable went to other end of house - works.
    Dead-zone went from 2mbps to 24mbps.
    I probably spent 4 hours chasing my tail in anger.  The correct way took about 5 minutes total.
    Thanks again.

  • When forced quit doesn't work???

    What do I do when forced quit doesn't work?? This happens occasionally when something freezes, like Logic did today. I force quit, and wait... and wait... and nothing happens. I try and restart and it keeps coming up with the same window: Logout timed out, please force quit to continue or cancel.
    Anyways I hit force quit over and over and nothing happens. I resolve to holding the button and manually restarting the computer. How can I get this thing to force quit?!!
    - All updated
    - Repaired permissions
    - Repaired disk (nothing was wrong anyways)

    Funny you should ask as I had the EXACT same problem this afternoon.
    I had to do a hard restart.
    But, then I got the gray spinning startup.
    So, I had to restart from my backup drive (thank you SuperDuper!).
    Then, 5 minutes later my internal hard drive reappeared.
    Then, I restarted from my internal drive.
    I had this problem in April (I took notes) and Apple replaced my hard drive.
    Your mileage may vary.

  • Acrobat Pro X 10.1.6 attach to email, Mac Outlook 2011 Doesn't work, but Adobe Reader X 10.1.6 works

    Acrobat Pro X 10.1.6 attach to email, Mac Outlook 2011 Doesn't work, but Adobe Reader X 10.1.6 works.......WHY?!?1?1?!

    Past the contents of the install.log file in the forum.  It's located at:  /var/log/install.log

  • What happened to online text..doesn't work anymore

    what happened to online text..doesn't work anymore since they upgraded their website

    i know you can send text messages through your email...just like a regular email all you do is send it to [email protected] dont use a subject just use the body of the email and its easiest to keep them short..i would do a test one to your phone first just so you see how it looks. hope that helps

  • When Apple Care Doesn't Work

    Has anyone had problems getting something solved through Apple Care technical support? This is the second time for me with this computer. Last time, over a year ago, they finally paid to have it put in the shop. I've been dealing with them with this issue since November. Two regular level and two specialists have tried to help me. We've done all of the regular stuff, making more room on the hard drive, resetting the PRAM, taking stuff off and reinstalling the system software. The last was done on Friday. I'm still having problems. It totally freezes up at odd times. Sometimes there are black lines across the screen. It is now (since the reinstall) not recognizing my external hard drive and saying it can't open itunes. I'm so frustrated! Not only do my kids need the computer for homework, but I have a part-time home business and need to print shipping labels etc. as well as look up information related to my business. Any suggestions? I've had Macs almost since they came out and this really makes me want to get a PC. I realize they can have problems, too, but at least they are cheaper.

    "Will Apple keep making updates to 10.4"
    That final version update of Tiger is 10.4.11.
    "Should I buy 10.5? It's been my feeling that since this particular computer has had so many problems I shouldn't spend any more money on it unless I am convinced it will continue working well (or begin working well) for a while. " I wouldn't think it would be advisable to upgrade to Leopard until your Mac is stable.
    "Re: When Apple Care Doesn't Work
    Posted: Mar 1, 2009 9:35 PM
    Robert,
    Unfortunately we don't have an Apple store here. I hear there may be one soon. There are various people who contract with Apple to do repairs, so maybe I need to go to one of those. The question, then, is, how do I get Apple to pay. Since my computer is still under Apple Care and since I've had extended problems with it, they should, right?
    Carolyn,
    I didn't list all of the things that have been tried on it in the past four months...hard to remember. I had done the disk utility probably twice before. I did update to 10.4.11, as you suggested. How does this work with updating? Will Apple keep making updates to 10.4 even though they have 10. 5 out? Should I buy 10.5? It's been my feeling that since this particular computer has had so many problems I shouldn't spend any more money on it unless I am convinced it will continue working well (or begin working well) for a while.
    I didn't understand all of your directions. I found the disk utility, although it wasn't listed under the finder menu bar. I" There is a Disk Utility application on your hard drive. Applications/Utilities.
    "Were you suggesting running disk utility on the install disk? " Yes!
    " There wasn't anything to select anywhere that said Utilities/Startup Disk. " Ok, when you boot from your restore disk, you hold down the C key until you see the Apple logo on your screen. An Installer window will open. Do not proceed with any installations. Instead, from the Menu Bar (very top of your screen), select Utilities/Startup. That will open the window where you can then select your MacintoshHD 10.4 icon and click Restart. Without doing this, your Mac doesn't know disk to boot from.
    "Sorry, it's been a rough week. Maybe I'm not understanding something obvious." No problem. Sometimes you just have to sit back and take a deep breath, or call it a night and work on it in the morning. I understand ... these tasks can be daunting at times.
    Carolyn

  • [Exchange 2010] Autodiscover on outlook 2010 doesn't work and OWA can't be browsed internally

    Hi,
    Since this morning, I'm getting weird issues with Exchange.
    1) Some people can open OWA with Firefox but with IE or Chrome can't. On Chrome, it says the certificate is malformed and hence it can't open the website. I can access OWA externally.
    2) Some users are getting security alert for OWA and autodiscover certificate.
    3) Autodiscover doesn't work and it failed to connect when I run test connectivity and configuration from Outlook client.
    Has anyone had any similar issues like this?
    Since that we didn't make any change to the environment and email is going through fine via outlook, I'm afraid to do some config changes on Exchange.
    Thanks,
    John

    It's fixed now. It was the issue with comodo certificate. Comodo issued a new intermediate cert yesterday morning. Some users didn't get the cert so we pushed out manually.

  • RegisterFont when running local doesn't work.

    Hi guys anybody knows why Font.register(class) doesn't work when i run from my local machine?
    the fonts.swf is loaded from a server loading fires a complete event so that should be fine.
    However when i load the fonts.swf also from local machine then it works fine.
    Anybody any idea?
    Regards Iason

    You can use network or local

  • Wiping AT&T Curve 8330 when home page doesn't work

          I tried to move one icon yesterday - something I've done lots of times successfully.  Suddenly all of my icons disappeared from my home screen.  Now I cannot access home screen general options to wipe my device clean and restore the information.  I can only get to a few icons by hitting the space bar, bringing up my history of phone calls and then switching the application from that menu.  How can I get to home screen menu when it's a blank.  I can receive and send phone calls and email, but by Blackberry button doesn't work.
         Help!  And thank you.

    Hi there, just to be safe, when you get to the homescreen, can you try pressing the BB Menu button and ensure that there is a check beside "Show All"?  In addition, try doing a battery pull - while the device is on, remove the battery for 15-30 seconds and then reinsert it.
    If neither of those options work, then you may need to do things differently.  Start by backing up the data on the device so that you don't lose it (you can do an advanced back up and just backup the things you need like messages, contacts, etc and leave everything else off.  Once you've done that, if you have your phone password protected, you can simply input the wrong password 10 times and that will wipe your phone and restore it to factory condition.  If you don't have a password, then there are 3 party applications that you can install on your computer which can do this for you.  One such application is called BBSAK.  Simply install it to your computer, then plug your BlackBerry in and click the "Wipe Device" button on the first screen.
    Once that is complete, you can reload the data you need back to your phone.
    Hopefully that helps and if you need further assistance, feel free to let us know.
    If you want to thank someone for their comment, do so by clicking the Thumbs Up icon.
    If your issue is resolved, don't forget to click the Solution button on the resolution!

  • What to do when your iphone camera isnt working?

    My phone camera screen never works, I turn on the app and its a black screen and then it just eventually freezes. Sometimes the front camera works but never the back and its random because it was working this morning but it wont work now. other apps like snapchat that involve the camera also aren't working and I don't know how to solve this problem...

    Try resetting your phone. Press and hold the Home and Sleep button for 10 seconds or so until the Apple logo appears.
    If that doesn't work restore your phone to new but not from a backup. Use iTunes to restore your iOS device to factory settings
    If that does't solve the problem then it's likely a hardware issue. Make an appointment at an Apple store and have it examined.

  • When I type in something to search and hit "seach" firefox does NOTHING wiht no response. What is going on? it doesn't work!

    OK...the new Firefox I just installed does not work at all. WHY?

    This issue can be caused by an extension or theme that isn't working properly.
    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Appearance/Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]

  • Help. iPhone 5, calendar sync issues using Outlook. Doesn't work. Does any kind soul have a solution

    At my wits end. iPhone 5, OS 7.1.1, using Outlook as mail, contacts and calendar but unable to find a solution to sync everything. I have my own domain and use a small ISP. It's not an Exchange server account. I've trawled countless forums but to no avail. Can anyone help? Steve. 

    Mavericks doesn't sync contacts or calendar via iTunes anymore. Apple removed 'sync services' so Outlook doesn't have the sync engine to move data between iOS & the Mac. It will still work on iTunes 11 on earlier OS X's.
    On 10.9 you can either use iCloud, setup your own contacts & calendar server (OS X server, Biakal, Owncloud & many others) or you can find another online service to use to sync data, like Google apps.
    There is a 200 page thread on the issue…
    https://discussions.apple.com/thread/5460803?start=0&tstart=0
    There is also a user tip on how to setup Baikal…
    Hosting your own CalDAV and CardDAV server using Baïkal Server
    You should also look for apps that may help like SyncMate http://www.eltima.com or maybe missing sync? http://www.markspace.com/
    <Edited by Host>

  • Options when Force Quit doesn't work?

    My newly installed QuarkXpress 7.3.1 is not behaving nicely in my newly installed 10.5.2 on my new Intel iMac. Firstly, it sends a stream of errors to Console, mostly "<Error>: CGContextSetFillColorWithColor: invalid context l", of which I get thousands within a short while of opening Quark.
    But now it doesn't even want to quit. And it refuses to obey Force Quit. Are there any other persuaders I can try (never used Terminal but will give it a go if foolproof)?
    Simon

    sudo shutdown -h NOW
    That will for the machine to accept a shutdown command no matter what is happening. It may take awhile. Come back in an hour. If you get an error message saying can't shut down because something won't quit, then do a:
    ps -ax
    Identify the PID of what will not quit that is third party that you recognize.
    kill -15 PID
    where PID is the number of the offending process.
    Repeat until you can get the process to disappear from ps -ax.
    As for being foolproof, any data that isn't saved on a killed process won't save.

  • IsScript.msi Needed yet when downloaded still doesn't work....huh?

    Okay. I just recently got the new remastered IpodNano and they told me too update my Itunes. Not a problem. So I downloaded Itunes 7.01.8 and then when its installing a message pops up that I need to download Isscript.msi. Thing is I do have it. But its outdated (version 6). So I updated and to version 7.01 and greater but it still wont worker. I even downloaded version 8 and 9 but its still popping up the same message. I've never experienced this problem before. What's up? Seriously I might return this peice of junk if my Itunes wont bother to work.
    Help?

    I think you got an adware or other bad software on your system.
    While some web sites may want you to use '''their''' comm program,
    the site you should be on would not tell you what program to
    use. Also, did the message include a link for Firefox? Was the
    download from Mozilla? If not you may have a bad version.
    What is the web address you are having trouble with? Is the FF
    program you have from Mozilla? Have you tried Windows
    internet explorer anyway?

Maybe you are looking for