Error upgrading desktop to 6.1: Visual C++ 2008 not installed

I have Desktop v5.0 installed, and tried to install the upgrade to v6.1  After downloading the software, as soon as the installation started, I received the error message:
BlackBerry Desktop Software requries that Microsoft Visual C++ 2008 Redistributable Package is installed.
A cleanup of my computer a few months ago removed software that was not in use, and it is likely that C++ was removed at that time.  Seeing the above message, and verifying  C++ was not installed,  I downloaded C++ from the MS website (as well as SP1).  I can now see Visual C++ 2008 Redistributable x86 9.0.30729.17 in the list of installed programs on my computer.  However, the installation of 6.1 continues to fail in the same way as before.
Anyone have any ideas how to fix this issue?  Many thanks in advance.

Hey JooJoo,
Welcome to the BlackBerry Support Community Forums.
I would first uninstall BlackBerry Desktop Software 5.0.  Then perform all the latest windows updates which will include a new version of Microsoft Visual C++.  
Restart the computer and then download the BlackBerry Desktop Software from www.blackberry.com/desktop
-ViciousFerret
Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
Be sure to click Like! for those who have helped you.
Click  Accept as Solution for posts that have solved your issue(s)!

Similar Messages

  • Installing upgrade on new computer if prior edition is not installed

    I'm trying to install Lightroom 4 upgrade on my new desktop, which does not have Lightroom 3 installed. My copy of LR 3 is 800 miles away and I will not see the box until next May.
    Please advise.

    My information, serial number, is not available.
    Date: Wed, 21 Nov 2012 09:53:27 -0700
    From: [email protected]
    To: [email protected]
    Subject: Installing upgrade on new computer if prior edition is not installed
        Re: Installing upgrade on new computer if prior edition is not installed
        created by Mylenium in Downloading, Installing, Setting Up - View the full discussion
    You only need the serial numbers. During instal lyou will be asked for a qualifying product and then must input the serial number for LR3 as a secondary number. Mylenium
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/4864853#4864853
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4864853#4864853
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4864853#4864853. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Downloading, Installing, Setting Up by email or at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Every time I install an update of itunes, I get an error message saying: "/System/Library/Extensions/WkClassicNotSeizeDriver.Kext" was not installed Correctly. Has any one had it? Can you help me?

    Every time I install an update of itunes, I get an error message saying: "/System/Library/Extensions/WkClassicNotSeizeDriver.Kext" was not installed Correctly. Has any one had it? Can you help me?

    Find out what that third party software the kext file belongs to and update or use the developers method to uninstall the third party software responsible for it.
    I suspect it's a iTunes extension perhaps?
    You also can use the manual method of Finder > Go > Computer and opening your drive, then your  System/Library/Extensions folder and looking for the file and moving it out onto the desktop, you will need to be in Admin user and use your password, then reboot to clear the random access memory. However this method doesn't remove the parent program you still need to do that.
    How to uninstall/install software on your Mac
    The kext file wasn't loaded, so it's not running, but removing it from the Extensions folder or uninstalling what put it there will solve your notification problem as that's all it appears to be.

  • After installing Final cut server client on OSX 10.6.8 error: Apple QuickTime or the QuickTime Java component is not installed.

    After installing Final cut server client on OSX 10.6.8 error: Apple QuickTime or the QuickTime Java component is not installed.
    I know this error on windows machines but cannot get a solution for OSX.

    I have fixed this by installing the latest combo update

  • An error in Crystal Reports Basic for Visual Studio 2008

    Greetings from Peru,
    We have a problem with one of the Crystal Reports products weu2019d like you to help us with. We work with Crystal Reports Basic for Visual Studio 2008.
    The error weu2019ve detected is in one of our systemu2019s reports; this report shows data inside frames. When the content to show is larger (in height) than the space left in the page, the container object of the report makes a line break keeping the title and the frame empty at the end of that page, but  the information is shown in the next page. What we need is that not empty frame is displayed.
    Weu2019ve tried to solve this problem by adjusting the report in different ways (by programming coding), but unfortunately this problem is related to how much data is displayed, because if this data fit in the space left in the page, the line break would not occurs and the data is shown at the end of the same page.
    We hope you can help us with this issue.  I look forward to your comments.

    All I can think of is trying CR 2008 (v.12.x). You can obtain an eval copy from here:
    http://www.sap.com/solutions/sapbusinessobjects/sme/freetrials/index.epx
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup
    Got Enhancement ideas? Try the [SAP Idea Place|https://ideas.sap.com/community/products_and_solutions/crystalreports]

  • Error Ora-604 on connect from Visual Studio 2008 to Oracle database

    Hello!
    I have installed Oracle 9.2.0.6 Database, Microsoft Visual Studio 2008 and today I succesfully installed ODP.NET 1110621.
    I wrote a simple console application like this:
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using Oracle.DataAccess.Client;
    using Oracle.DataAccess.Types;
    using System.Data;
    namespace ConsoleApplication1
    class Program
    static void Main(string[] args)
    OracleConnection c = new OracleConnection();
    c.ConnectionString = "Data Source=(DESCRIPTION="
    + "(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=192.168.1.1)(PORT=1521)))"
    + "(CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=ssss)));"
    + "User Id=user;Password=pwd;";
    c.Open();
    OracleCommand cmd = new OracleCommand();
    cmd.CommandText = "Select * from CATEGORY_TABLE";
    cmd.CommandType = CommandType.Text;
    cmd.Connection = c;
    OracleDataReader dr = cmd.ExecuteReader();
    while (dr.Read())
    Console.WriteLine(dr[0].ToString() + " " + dr[1].ToString());
    dr.Dispose();
    cmd.Dispose();
    c.Dispose();
    Console.ReadLine();
    at line c.Open(); appear runtime error : ORA-604 Error occurred at recursive SQL level 1
    How to solve it?

    Your issue is not SQL and PL/SQL so much as .NET so I would suggest you ask the question in the "Windows and .NET" forum.
    But a couple of thoughts:
    1. Your database is undoubtedly not at "HOST=192.168.1.1"
    This IP address is generally the address of the router not the server.
    2. Why would you install an unpatched version of software so old it is in desupport mode and then try to work with it using a current
    version of a Microsoft product? Would you be comfortable installing a 10 year old version of a Microsoft product and expect it to
    work well with Oracle 11gR1?

  • I upgraded to CS5 on old pc, but did not install it. I have new pc and want to install upgrade

    PS5 was on sale and I upgraded but did not install on OLD pc. I now have a new pc and want to install my CS5 and don't know how to go about it

    use your installation discs or download the installation files.
    Downloads available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4 | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  13 | 12 | 11, 10 | 9, 8, 7 win | 8 mac | 7 mac
    Photoshop Elements:  13 |12 | 11, 10 | 9,8,7 win | 8 mac | 7 mac
    Lightroom:  5.6| 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

  • New to Visual Studio 2008, not new to CR - but have  question

    Hi,
    I started a position to build reports for a small company.  They use VS 2008 and Crystal 2008 (basic).  I am not new to Crystal Reports, been using it since version 4.0.  But I am new to integrating it into Visual Studio or using it to deploy reports via a web application.
    I was able to create a dataset, connect Crystal to the Dataset in Visual Studio and design a report. 
    There are two tabs on the bottom of the Crystal Window - one is to the design side and one is to preview the main page of the report.
    So here in lies the problem - when I go to view the results - there are none.  It is random or dummy data being presented in Visual Studio 2008. 
    I have scoured MSDN and SAP forums looking for help in this.  I see other posts that elude to the same issue, but --there has to be some way to see the data in Visual Studio.
    Can someone explain to me why I don't see the real data from the dataset?   And more importantly where is the tutorials for Visual Studio 2008 and Crystal Reports 2008?
    Thanks so much for your help!

    Hi,
    I have also seen the same, that is report displays dummy data at my end however when you run the report from application you get the data that is when you pass the dataset to the report at runtime and not while previewing the report. I believe this is because when we use datasets to design a report we consider the schema of the report mainly not data.
    If you mean that you do not get any data in the report then I would suggest you to use the below mentioned code to generate an xsd file, after filling up the dataset so that the report schema and the dataset schema matches.
    datasetObject.WriteXml("c:\\temp\\myData1.xml",XmlWriteMode.WriteSchema);
    Regards,
    AG.

  • TS3694 I get an error message when trying to start iTunres:  ITunes was not installed correctly.  Please reinstall iTunes.  Error 7 (Windows error 126).  I've tried 3 times with no success. Any ideas?

    I get an error message when trying to start iTunes.  I've tried reinstalling 3 times with no change.
    Message: iTunes was not installed correctly.  Please reinstall iTunes.  Error 7 (Windows error 126)
    Any ideas would be appreciated!

    Have a look Here  https://discussions.apple.com/docs/DOC-6562

  • Im getting and error message (-45075) a required i tunes component is not installed please repaire or reinstall i tunes how to fix this

    i keep getting this message " a required i tunes component is not installed please repair or reinstall i tunes(-45075)" i get this every time i open the program and it prompts me to say ok and when i do it shuts the program down i went to the i tunes web site and re down loaded the program and still nothing i dont want to loose my music library

    Hi mbelanger1,
    If you are still having issues with that error message, you may need to entirely remove iTunes, then reinstall it. You may find the following article helpful:
    Apple SupportL: Removing and reinstalling iTunes and other software components for Windows Vista, Windows 7, or Windows 8
    http://support.apple.com/kb/ht1923
    Note:
    iTunes Store purchases or songs imported from CDs are saved in your My Music folder by default and aren't deleted by removing iTunes. While it's highly unlikely that you'll lose any contents of your iTunes Library when following these steps, it's always a good idea to ensure that your iTunes library is backed up. If you're unsure how to backup, follow these steps.
    Regards,
    - Brenden

  • I did the upgrade to my iTunes yesterday and it did not install correctly. Kept getting same message.  Now cannot download any iTunes without getting windows error 126. Please help.

    Upgraded my itunes yesterday and it failed.  Tried reinstalling and failed again.  Now tried to install several earlier versions and coming up with  windows error 126. Do you have any ideas on how I can fix this?  Please help.

    Click here and follow the instructions. You may need to completely remove and reinstall iTunes and all related components, or run the process multiple times; this won't normally affect its library, but that should be backed up anyway.
    (99732)

  • Error 1935: Microsoft Visual C++ 2008 Redistributable Install

    I was trying to install Visual Studio 2010 and started encountering errors with the C++ distributable package during install, so I decided to install it by itself. Whenever I try and install it, it stops on
    Feature: FT_VC_Redist_openMP_x86 Enter text and I receive the following error message before it rolls the install back:
    Error 1935. An error occurred during the installation of assembly 'policy.9.0.Microsoft.VC90.MFC,version="9.0.30729.1",publicKeyToken="1fc8b3b9a1e18e3b",processorArchitecture="x86",type="win32-policy". Please
    refer to Help and Support for more information. HRESULT: 0x8007371B.
    I am running it in Admin mode and have tried disabling the services and restarting my machine. I am running Windows 7 Ultimate 64-bit. This problem is preventing me from installing numerous software titles that require this to be in place. Any help would
    be greatly appreciated. Thank you!

    Copy the file "C:\Windows\Logs\CBS\CBS.log" to your document folder (otherwise you can't open it) and open it with notepad. Now search for errors. Which errors do you see? If you're unsure about the entries, upload the complete CBS.log to your public
    SkyDrive folder and post a link here.
    "A programmer is just a tool which converts caffeine into code" CLIP- Stellvertreter http://www.winvistaside.de/
    I have the same problem as ndfan1993, so I did as described above.
    I'm unable to run most types of software such as games. When I try to launch the game "Total War: Shogun 2" for example the computer fails to install Microsft visual c++ so the game doesn't start.
    In that log the following message is repeated many times:
    CBS    Failed to get CSI store. [HRESULT = 0x80070246 - ERROR_ILLEGAL_CHARACTER]
    2011-10-13 16:17:36, Error                 CBS    Failed to initialize store parameters with boot drive:  and windows directory:  [HRESULT = 0x80070246
    - ERROR_ILLEGAL_CHARACTER]
    2011-10-13 16:17:36, Info                  CSI   
    000001ce@2011/10/13:14:17:36.416 PopulateComponentFamiliesKey - Begin
    2011-10-13 16:17:37, Error                 CSI   
    000001cf@2011/10/13:14:17:37.804 (F) d:\w7rtm\base\lstring\lblob.cpp(2221): Error STATUS_ILLEGAL_CHARACTER originated in function RtlTranscodeLBlobs expression: __rv.UcsCharacter != (0xffffffff)
    Does anyone know what it means?
    Or does anyone have a suggestion as how to solve the problem?
    Any help is greatly appreciated.

  • Error Message: This copy of iTunes is corrupted or not installed properly. Please reinstall.

    I use Windows 7 on an Acer Aspire 5532. I've had iTunes installed for years, but today when I tried to open iTunes I got the error message above. I tried to reinstall iTunes online and it wouldn't work. Please help!

    (Apologies for barging in Steve.)
    I've had iTunes installed for years, but today when I tried to open iTunes I got the error message above.
    With that one, I'd first try a repair install of iTunes.
    Restart the PC first.
    If you're using Vista or 7, now head into your Uninstall a program control panel, select "iTunes" and then click "Repair".
    If you're using XP, head into your Add or Remove Programs control panel, select "iTunes", and click "Change". Select "Repair" and click "Next" as per the following screenshot:
    Can you launch your iTunes now?

  • Error message, this copy of iTunes is corrupt or not installed correctly.

    If i install iTunes again, will i lose my library?

    Hello there, Naiichbey.
    The following Knowledge Base article speaks to how-to reinstall iTunes:
    Removing and reinstalling iTunes, QuickTime, and other software components for Windows Vista or Windows 7
    http://support.apple.com/kb/HT1923
    Although you may or may not be working in Windows, the part I'd want to point out is the following information found in this document:
    Notes:
    iTunes Store purchases or songs imported from CDs are saved in your My Music folder by default and are not deleted by removing iTunes. While it is highly unlikely that you will lose any contents of your iTunes Library when following these steps, it is always a good idea to ensure that your iTunes library is backed up. If you're unsure how to backup, see iTunes: Back up your iTunes library by copying to an external hard drive.
    These steps may take a significant amount of time to complete, depending on your system.
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro D.

  • Should I upgrade or wait? I purchased, but have not installed.

    I purchased Lion, but have hesitated on installing it because of the problems I have heard about. Does anyone have an opinion?

    To answer this, you should consider these questions...
    How dependent are on your Mac?  If it has problems, does this affect your job and livelihood?  Can you afford to have to put some time into managing little problems?
    If you have 4GBs of RAM or less, please read this thread - https://discussions.apple.com/thread/3238726
    Are there compelling reasons why you should rush to Lion?
    How easy would it be to revert to Snow Leopard if things go wrong?  (Can you easily replace the system disk or restore an internal disk to its prior state?)
    Do you have a good, safe backup procedure in place now in case of nasty happenings?
    These questions will probably allow you to decide.
    In my case, I have two Macs, an iMac used for my key, but not income-earning work, which is still on SL.  I don't want things to go wrong on this system.  And a MBP, which is now on Lion.  If it messes up, I know I can pop the Lion system disk out and put the SL system disk in.

Maybe you are looking for