Question about classes15.jar vs ttjdbc5.jar and support for Java 1.6

The docs note the use of ttjdbc5.jar vs ttjdbc14.jar depending on Java version. In the tt70_32 distribution (lib dir) I also see jars named classes14.jar, classes15.jar, and classes16.jar. They look to have the same content as ttjdbc5.jar. Can someone clarify when to use these jars?
Also, are there any known issues on Java 6?
Thanks

The classes+nn+.jar files are just the old names we used to use and we still ship the files under these names for backwards compatiility. The new names are ttjdbc14.jar (JDK 1.4), ttjdbc5.jar (JDK 1.5 or Java 5) and ttjdbc6.jar (JDK 1.6 or Java 6). However, due to a packaging error in some of the earlier 7.0 release we omitted to ship ttjdbc6.jar. But you can just copy/rename classes16.jar to ttjdbc6.jar.
I'd recommend using the ttjdbc files as this is the 'new' naming convention. I am not aware of any issues with Java 6. I have used it extensivley with TimesTen and not seen any problems.. It is faster than Java 5 in many instances.
Chris

Similar Messages

  • TS2446 I forgot the security question about what was my first car and what is my favorite car! What is the solution to change that? please help me, thank you in advance Leo

    I forgot the security question about what was my first car and what is my favorite car! What is the solution to change that? please help me, thank you in advance Leo

    If you have a rescue email address set up on your account then you can try going to https://appleid.apple.com/ and click 'Manage your Apple ID' on the right-hand side of that page and log into your account. Then click on 'Password and Security' on the left-hand side of that page and on the right-hand side you might see an option to send security question reset info to your rescue email address.
    If you don't have a rescue email address set up then go to Express Lane  and select 'iTunes' from the list of 'products' in the middle of the screen.
    Then select 'iTunes Store', and on the next screen select 'Account Management'
    Next choose 'iTunes Store Account Questions' or 'iTunes Store account security' (it appears to vary by country) and fill in that you'd like your security questions/answers reset.
    You should get an email reply within about 24 hours (and check your Spam folder as well as your Inbox)

  • Opengl and directx for java or c++ or Java3D

    I am new to the 3D programming and I have many queries and I hope those expect can answer me. Thank you very much.
    I have some experience in writing directx 7.0 in C++. I find that the IDirect3DDevice7 in directx7.0 does not support 256 colors but direct3ddevice in directx5.0 does.
    However, the direct3ddevice in directx5.0 in 16 or 32 bit color performs very strange. Distortion is found in displaying a 3D image.
    1.     Do you have this experience? Does direct3ddevice in directx5.0 not work in 16 or 32 bit colors?
    2.     If I want to write a 3D directx program in C++ that can be work in every resolution, what can I do?
    3.     Can opengl work in every resolution 256 colors, 16, 32 bits?
    4.     Does opengl work in every platform?
    5.     Can I write an opengl program in window platform and run it in Linux without any modification or compilation ?
    6.     Does the opengl runtime different from platform to platform ?
    7.     If I deploy an opengl progam, do I need to deploy the runtime for a particular platform with it.
    8.     Opengl is claimed to be open source. What does it mean ? Can I modify the code of the opengl sdk or runtime and re-complie it and make it my own version of opengl ?
    9.     I find many version of opengl sdk in the web. Some is special to a particular hardware eg. NVIDIA. Some is not bounded to any hardware. What is the different between them ? How can I choose from them ?
    10.     I know that there is directx for java and opengl for java. Is it the so called java 3D ?
    11.     Does opengl or directx together with Java2 become Java 3D ?
    12.     However I cannot find any directx code or directive for importing the directx package in the Java 3D sample code.
    13.     Does the Javax provide the utility for 3D programming by hiding the 3D device or texture surface creation ?
    14.     I find some code segment from MSDN which shows the way to create a directdraw object in an applet. I wonder what is the proper way to use directx or opengl in java since my main goal is to create a directx application that can be worked in the web.
    15.     Lastly, from my understanding, directx is a com api which can be used in every programming languages. Does it imply that with a directx sdk, I can write a directx application in C++, java, or vb ?
    16.     But, I find that the code to do the same task in the three programming languages is very different. The object creation methods, the data structure for directx in the three programming languages is different. Is the same sdk realy used in different programming languages ? The object name for e.g. direct3ddevice is different from vb (Direct3DDevice7) and c++ (IDirect3DDevice7).

    I'm no expert in 3D graphics programming, but I have some experience. I'll try to answer some of your questions.
    2.     If I want to write a 3D directx program in C++ that
    can be work in every resolution, what can I do?I think both DirectX and OpenGL supports any resolution and color depth. It's more a matter of which resolutions your graphics driver supports.
    3.     Can opengl work in every resolution 256 colors, 16,
    32 bits?Yes.
    4.     Does opengl work in every platform?OpenGL is available on many platforms. Look at GL4Java if you want to use OpenGL in Java, it's available on many platforms. Look at: http://www.jausoft.com/gl4java.html
    5.     Can I write an opengl program in window platform
    and run it in Linux without any modification or
    compilation ?Yes, if you write it in Java. In C++ you will need to recompile the app.
    6.     Does the opengl runtime different from platform to
    platform ?No, it's a standard. There are some extensions that are driver dependant, but if you stick to the standard it will run unmodified on all platforms.
    7.     If I deploy an opengl progam, do I need to deploy
    the runtime for a particular platform with it.I don't think OpenGL is available by default on all platforms.
    8.     Opengl is claimed to be open source. What does it
    mean ? Can I modify the code of the opengl sdk or
    runtime and re-complie it and make it my own version
    of opengl ?OpenGL is not open source. OpenGL is a standard, it can't be open source since there is no source code.
    9.     I find many version of opengl sdk in the web. Some
    is special to a particular hardware eg. NVIDIA. Some
    is not bounded to any hardware. What is the different
    between them ? How can I choose from them ?If you have modern graphics card the driver includes support for OpenGL on MS Windows. For Linux you use Mesa I think. See GL4Java homepage for more info.
    10.     I know that there is directx for java and opengl
    for java. Is it the so called java 3D ?GL4Java implements the OpenGL functions in Java. Java3D is a high level API that runs on either OpenGL or DirectX.
    11.     Does opengl or directx together with Java2 become
    Java 3D ?No. The Java3D package is available for download at java.sun.com.
    12.     However I cannot find any directx code or
    directive for importing the directx package in the
    Java 3D sample code.You can't call DirectX directly in Java3D. It hides the underlying layers.
    13.     Does the Javax provide the utility for 3D
    programming by hiding the 3D device or texture surface
    creation ?Java3D is platform independent and hides things like the hardware, drivers etc.
    14.     I find some code segment from MSDN which shows the
    way to create a directdraw object in an applet. I
    wonder what is the proper way to use directx or opengl
    in java since my main goal is to create a directx
    application that can be worked in the web.I dont know if DirectX is available for Java. I recommend that you use OpenGL instead, or Java3D if you want an easy, high level API.
    15.     Lastly, from my understanding, directx is a com
    api which can be used in every programming languages.
    Does it imply that with a directx sdk, I can write a
    directx application in C++, java, or vb ?In C++ and VB, yes. Dont know if there are any Java DirectX bindings available.
    16.     But, I find that the code to do the same task in
    the three programming languages is very different. The
    object creation methods, the data structure for
    directx in the three programming languages is
    different. Is the same sdk realy used in different
    programming languages ? The object name for e.g.
    direct3ddevice is different from vb (Direct3DDevice7)
    and c++ (IDirect3DDevice7).Don't mix programming languages in the same app. Decide if Java or C++ is the right language for you, then use the tools available for the language you choose.
    My recommendation is to go for Java and Java3D if you are inexperienced with 3D graphics programming. Use Java + OpenGL if you know about vertices, textures, transforms etc.

  • ITunes Installation error: "Microsoft VC80.CRT.TYPE="win 32".version=8.0.50727.6195".publicKeyToken='1fc8b3b9a1e18e3b".processorArchitec ture "x86"".Please refer to help and support for more information. HRESULT:0X800700C1

    Hi!
    I am trying to install iTunes on my laptop that runs Windows 8.1
    I have tried several solutions discussed in similar questions but none worked
    -uninstalled and reinstalled
    -cleaned C drive for all Apple products
    -tried to install security update’ Microsoft Visual C++ 2005 Service Pack 1 Redistributable Package ATL Security Update’ but the same error appeared
    -Windows module installer is enabled
    I always get this error
    an error occured during the installation fo assembly "Microsoft.VC80.CRT.type="win32", version="8.0.50727.6195, public key token=,1fc8b3b9a1e18e3b", processor architecture="x86", please refer to help and support for more information. HRESULT: 0x80070422
    If i ignore and proceed another error appears
    Service 'Apple Mobile device' failed to start. Verify that you have sufficient privileges to start system services
    If i ignore one more time, itunes is installed but when i try to run it
    Apple application support was not found. Apple Application Support is required to run iTunes Helper- please uninstall iTunes and then install itunes again-error 2
    Can someone help me please? Thank you!

    Hi M2i7guel,
    Welcome to Apple Support Communities.
    It sounds like there is an issue installing iTunes and other Windows updates on your PC. The article linked below provides troubleshooting suggestions that will resolve most issues like the one that you've described.
    Issues installing iTunes or QuickTime for Windows
    http://support.apple.com/kb/HT1926
    I hope this helps.
    -Jason

  • Problems between Xcelsius and WebDynpro for Java

    How should I do to show Xcelsius in WebDynpro for Java?
    How should I transport data between Xcelsius and WebDynpro?
    How should I control WebDynpro with Xcelsius?For example,firing plugs in Xcelsius like in WebDynpro to change one view to another.
    How should I do to execute a Java method in Xcelsius?For example,scheduling a job on clicking a button in Xcelsius.
    Besides these,I also want to know the same problems between other BOE contents and WebDynpro for Java.
    Regards,
    Abe

    Hi Pradeep:
    Well that purely depends on the business application (project) your client is proposing. Following are very few factors which will drive for creating web-based applications:
    VC: it's a UI modeling tool (non-programming) for creating rapid creation of web-based applications.
    WD: its a powered by Java and ABAP with which you can create robust business applications.
    If your client is very choosy about rapid application development, reporting, rich user interface, to reduce TCO then VC is the choice. Or if the project contains typical integration with SAP and non-SAP systems, complex business logic development, integration with WCM systems...etc then WDJ is the option.
    If you’ve some sort of custom development with facilitating the Development Infrastructure (NWDI) then WDJ is the only option I could say.
    We hope with NW CE 7.1.1(referred by Priyanka Singh) tighter integration between these TWO tools may over come the ambiguity of using them.
    Tnx,
    MS

  • An Error occurred during the instillation of assembly.VC80.CRT,type="win32",version="8.0.50727.6195",publicKeyToken="1fc8b3b 9a1e18e3b",processorArchitecture="x86"". please refer to Help and Support for more information. HRESULT: 0x800736FD

    while trying to install the new versoin of itunes i get this error message
    An Error occurred during the instillation of assembly.VC80.CRT,type="win32",version="8.0.50727.6195",publicKeyToken="1fc8b3b 9a1e18e3b",processorArchitecture="x86"". please refer to Help and Support for more information. HRESULT: 0x800736FD
    i unistalled the older version i had and that did not help
    i downloaded something about a microsoft framework.4 what ever that means
    im not particularly gifted when it comes to computers so your help would be very gratefully received!!!
    thank you
    Dermot

    Could you solve this problem? I have similr problem. I can't upgrade Itune it generat the error below. I already unistall de all version but the error still appear. Could you help?

  • An error ocurred during the installation of assembly 'Microsoft. VC80.crt,type="win32", version="8.0.50727.4053".publickKeyToken="1fc8b3b9a1e18e3b".processorArchitectu re="amd64".Please refer to help and support for more information. HRESULT: 0x80071A30

    An error ocurred during the installation of assembly 'Microsoft. VC80.crt,type="win32", version="8.0.50727.4053".publickKeyToken="1fc8b3b9a1e18e3b".processorArchitectu re="amd64".Please refer to help and support for more information. HRESULT: 0x80071A30
    Instale iTunes perfectamente, conecte mi iPone y me dijo que necesitaba otra version que borrase la actual y instalase la nueva, borre la que tenia, y al instalar la nueva me salia esto y no tengo forma de instalarla. Ya hice los tutoriales de la pagina, y nada.

    OK.  If both of you are Windows 7.  Make sure you go to Windows update (START button, type in Windows Update). Check for updates and update whatever that are available. (especially Microsoft .NET Framework 4 )
    After that see if you still get this error message.
    The last resort would be to unistall and reinstall the whole thing.
    Follow the steps below:
    1. Go to Microsoft website to fix install and Unistall problems. Click "Run now" from Fix it to remove all iTunes & related installer files:
    http://support.microsoft.com/mats/Program_Install_and_Uninstall
    Be aware that Windows Installer CleanUp Utility will not remove the actual program from your computer. However, it will remove the installation files so that you can start the installation, upgrade, or uninstall over.
    2. You should remove all instances of iTunes and the rest of the components listed below:
    it may be necessary to remove all traces of iTunes, QuickTime, and related software components from your computer before reinstalling iTunes.
    Use the Control Panel to uninstall iTunes and related software components in the following order:
    iTunes
    QuickTime
    Apple Software Update
    Apple Mobile Device Support
    Bonjour
    Apple Application Support (iTunes 9 or later)
    Follow the instructions from Apple article listed here: http://support.apple.com/kb/HT1923 to remove all components
    3. Reboot your computer. Next, download iTunes from here:http://www.apple.com/itunes/download/ and install from scratch

  • An error occurred during the installation of assembly 'policy e0.Microsoft.VC80.CRT.type="win32-policy" version "8.0.50727.4053", publicKeyToken="1fc8b3b9a1e18e3b" ,processorArchitecture="amd64"'.  Please refer to Help and Support for more information.  H

    An error occurred during the installation of assembly 'policy 80.Microsoft.VC80.CRT.type="win32-policy" version+"8.0.50727.4053", publicKeyToken="1fc8b3b9a1e18e3b" ,processorArchitecture="amd64"'.  Please refer to Help and Support for more information.  HRESULT: x...
    Encountered during reinstall of iTunes.  Any ideas?

    It is a big issue for many users.  There is no clear fix yet, but some users have had success with some of the solution on this thread.
    https://discussions.apple.com/message/16751339#16751339

  • Help "An error occured during the installation of assembly 'Microsoft.VC.80.CRT,version="8.0.50727.4053",type="win32".publicKeyToken="1fc8 b3b9a1e3b".process orArchitecture="x86"".Please refer to Help and Support for more information. HRESULT: 0x800736FD.

    Help - I keep getting this message when trying to install iTunes on my computer - I have tried it on 2 different computers - one with Windows 7 and one with Vista - getting same message for both.
    "An error occured during the installation of assembly 'Microsoft.VC.80.CRT,version="8.0.50727.4053",type="win32".publicKeyToken="1fc8 b3b9a1e3b".process orArchitecture="x86"".Please refer to Help and Support for more information. HRESULT: 0x800736FD.
    Thanks

    HRESULT: 0x800736FD
    Are you running Vista or Windows 7, josh?

  • An error occurred during the installation of assembly 'Microsoft.VC80.ATL,version="8.0.50727.1833",publicKeyToken="1fc8b3b9a1e18e3b",processorArchitecture="amd64",type="win32"'. Please refer to Help and Support for more information. HRESULT: 0x80070003.

    I received the above error reinstalling SQL Server 2008.  I have tried all suggestions.  This error also appears when I install any version of SQL Server.
    I have also installed;
    Microsoft® .NET Framework Version 2.0.50727.4927
    Microsoft® .NET Framework Version 4.0.31106.0
    Microsoft® .NET Framework Version 3.0.6920.50
    Microsoft Visual C++ 2005 Redistributable (x64) 8.0.59192
    Microsoft Visual C++ 2008 ATL Update kb973924 - x86 9.0.30729.4148
    Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.4148
    Microsoft Visual C++ 2010 x64 Redistributable 10.0.40219
    Microsoft Visual C++ 2010 x86 Redistributable 10.0.40219
    Microsoft Visual C++ 2012 Redistributable (x64) - 11.0.60610
    Microsoft Visual C++ 2012 Redistributable (x86) - 11.0.61030
    Overall summary:
      Final result:                  SQL Server installation failed. To continue, investigate the reason for the failure, correct the problem, uninstall SQL Server, and then
    rerun SQL Server Setup.
      Exit code (Decimal):           -2068052081
      Exit facility code:            1212
      Exit error code:               1935
      Exit message:                  SQL Server installation failed. To continue, investigate the reason for the failure, correct the problem, uninstall SQL Server, and then
    rerun SQL Server Setup.
      Start time:                    2014-02-23 19:17:20
      End time:                      2014-02-23 19:21:35
      Requested action:              Install
      Log with failure:              C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140223_191513\SqlSupport_KatmaiRTM_Cpu64_1.log
      Exception help link:           http://go.microsoft.com/fwlink?LinkId=20476&ProdName=Microsoft+SQL+Server&EvtSrc=setup.rll&EvtID=50000&ProdVer=10.50.1600.1
    Machine Properties:
      Machine name:                  OHPC
      Machine processor count:       2
      OS version:                    Windows 7
      OS service pack:               Service Pack 1
      OS region:                     United States
      OS language:                   English (United States)
      OS architecture:               x64
      Process architecture:          64 Bit
      OS clustered:                  No
    Product features discovered:
      Product              Instance             Instance ID                   
    Feature                                  Language            
    Edition              Version         Clustered
    Package properties:
      Description:                   SQL Server Database Services 2008 R2
      ProductName:                   SQL Server 2008 R2
      Type:                          RTM
      Version:                       10
      SPLevel:                       0
      Installation location:         H:\SQLServer2008R2_SP1\x64\setup\
      Installation edition:          DEVELOPER
    User Input Settings:
      ACTION:                        Install
      ADDCURRENTUSERASSQLADMIN:      False
      AGTSVCACCOUNT:                 NT AUTHORITY\SYSTEM
      AGTSVCPASSWORD:                *****
      AGTSVCSTARTUPTYPE:             Manual
      ASBACKUPDIR:                   Backup
      ASCOLLATION:                   Latin1_General_CI_AS
      ASCONFIGDIR:                   Config
      ASDATADIR:                     Data
      ASDOMAINGROUP:                 <empty>
      ASLOGDIR:                      Log
      ASPROVIDERMSOLAP:              1
      ASSVCACCOUNT:                  <empty>
      ASSVCPASSWORD:                 *****
      ASSVCSTARTUPTYPE:              Automatic
      ASSYSADMINACCOUNTS:            <empty>
      ASTEMPDIR:                     Temp
      BROWSERSVCSTARTUPTYPE:         Disabled
      CONFIGURATIONFILE:             C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140223_191513\ConfigurationFile.ini
      CUSOURCE:                      
      ENABLERANU:                    False
      ENU:                           True
      ERRORREPORTING:                False
      FARMACCOUNT:                   <empty>
      FARMADMINPORT:                 0
      FARMPASSWORD:                  *****
      FEATURES:                      SQLENGINE
      FILESTREAMLEVEL:               0
      FILESTREAMSHARENAME:           <empty>
      FTSVCACCOUNT:                  <empty>
      FTSVCPASSWORD:                 *****
      HELP:                          False
      IACCEPTSQLSERVERLICENSETERMS:  False
      INDICATEPROGRESS:              False
      INSTALLSHAREDDIR:              C:\Program Files\Microsoft SQL Server\
      INSTALLSHAREDWOWDIR:           C:\Program Files (x86)\Microsoft SQL Server\
      INSTALLSQLDATADIR:             <empty>
      INSTANCEDIR:                   C:\Program Files\Microsoft SQL Server\
      INSTANCEID:                    MSSQLSERVER
      INSTANCENAME:                  MSSQLSERVER
      ISSVCACCOUNT:                  NT AUTHORITY\NetworkService
      ISSVCPASSWORD:                 *****
      ISSVCSTARTUPTYPE:              Automatic
      NPENABLED:                     0
      PASSPHRASE:                    *****
      PCUSOURCE:                     
      PID:                           *****
      QUIET:                         False
      QUIETSIMPLE:                   False
      ROLE:                          <empty>
      RSINSTALLMODE:                 FilesOnlyMode
      RSSVCACCOUNT:                  <empty>
      RSSVCPASSWORD:                 *****
      RSSVCSTARTUPTYPE:              Automatic
      SAPWD:                         *****
      SECURITYMODE:                  <empty>
      SQLBACKUPDIR:                  <empty>
      SQLCOLLATION:                  SQL_Latin1_General_CP1_CI_AS
      SQLSVCACCOUNT:                 NT AUTHORITY\SYSTEM
      SQLSVCPASSWORD:                *****
      SQLSVCSTARTUPTYPE:             Automatic
      SQLSYSADMINACCOUNTS:           OHPC\Robert
      SQLTEMPDBDIR:                  <empty>
      SQLTEMPDBLOGDIR:               <empty>
      SQLUSERDBDIR:                  <empty>
      SQLUSERDBLOGDIR:               <empty>
      SQMREPORTING:                  True
      TCPENABLED:                    0
      UIMODE:                        Normal
      X86:                           False
      Configuration file:            C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140223_191513\ConfigurationFile.ini
    Detailed results:
      Feature:                       Database Engine Services
      Status:                        Failed: see logs for details
      MSI status:                    Passed
      Configuration status:          Passed
    Rules with failures:
    Global rules:
    Scenario specific rules:
    Rules report file:               C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20140223_191513\SystemConfigurationCheck_Report.htm
    SFC/ Scannow
    2014-02-23 19:08:22, Info                  CSI    0000016f [SR] Verifying 100 (0x0000000000000064) components
    2014-02-23 19:08:22, Info                  CSI    00000170 [SR] Beginning Verify and Repair transaction
    2014-02-23 19:08:23, Info                  CSI    00000172 [SR] Cannot repair member file [l:20{10}]"wscsvc.dll" of Microsoft-Windows-SecurityCenter-Core,
    Version = 6.1.7601.17514, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, hash mismatch
    2014-02-23 19:08:23, Info                  CSI    00000174 [SR] Cannot repair member file [l:30{15}]"amd64_installed" of Microsoft-Windows-ServicingStack,
    Version = 6.1.7601.17592, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, hash mismatch
    2014-02-23 19:08:26, Info                  CSI    00000176 [SR] Cannot repair member file [l:20{10}]"wscsvc.dll" of Microsoft-Windows-SecurityCenter-Core,
    Version = 6.1.7601.17514, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, hash mismatch
    2014-02-23 19:08:26, Info                  CSI    00000177 [SR] This component was referenced by [l:242{121}]"Microsoft-Windows-Client-Features-Package~31bf3856ad364e35~amd64~~6.1.7601.17514.Microsoft-Windows-Client-Features-Update"
    2014-02-23 19:08:26, Info                  CSI    00000179 [SR] Could not reproject corrupted file [ml:520{260},l:46{23}]"\??\C:\Windows\System32"\[l:20{10}]"wscsvc.dll";
    source file in store is also corrupted
    2014-02-23 19:08:27, Info                  CSI    0000017c [SR] Cannot repair member file [l:30{15}]"amd64_installed" of Microsoft-Windows-ServicingStack,
    Version = 6.1.7601.17592, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, hash mismatch
    2014-02-23 19:08:27, Info                  CSI    0000017d [SR] This component was referenced by [l:154{77}]"Package_2_for_KB2533552~31bf3856ad364e35~amd64~~6.1.1.1.2533552-4_neutral_GDR"
    2014-02-23 19:08:27, Info                  CSI    00000180 [SR] Could not reproject corrupted file [ml:520{260},l:94{47}]"\??\C:\Windows\Servicing\Version\6.1.7601.17592"\[l:30{15}]"amd64_installed";
    source file in store is also corrupted
    2014-02-23 19:08:27, Info                  CSI    00000182 [SR] Verify complete
    2014-02-23 19:12:33, Info                  CSI    00000326 [SR] Verifying 100 (0x0000000000000064) components
    2014-02-23 19:12:33, Info                  CSI    00000327 [SR] Beginning Verify and Repair transaction
    2014-02-23 19:12:33, Info                  CSI    00000329 [SR] Cannot repair member file [l:26{13}]"x86_installed" of Microsoft-Windows-ServicingStack,
    Version = 6.1.7601.17592, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, hash mismatch
    2014-02-23 19:12:35, Info                  CSI    0000032b [SR] Cannot repair member file [l:26{13}]"x86_installed" of Microsoft-Windows-ServicingStack,
    Version = 6.1.7601.17592, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, hash mismatch
    2014-02-23 19:12:35, Info                  CSI    0000032c [SR] This component was referenced by [l:154{77}]"Package_2_for_KB2533552~31bf3856ad364e35~amd64~~6.1.1.1.2533552-3_neutral_GDR"
    2014-02-23 19:12:35, Info                  CSI    0000032f [SR] Could not reproject corrupted file [ml:520{260},l:94{47}]"\??\C:\Windows\Servicing\Version\6.1.7601.17592"\[l:26{13}]"x86_installed";
    source file in store is also corrupted
    2014-02-23 19:12:36, Info                  CSI    00000331 [SR] Verify complete
    2014-02-23 19:13:14, Info                  CSI    0000035d [SR] Repairing 3 components
    2014-02-23 19:13:14, Info                  CSI    0000035e [SR] Beginning Verify and Repair transaction
    2014-02-23 19:13:14, Info                  CSI    00000360 [SR] Cannot repair member file [l:20{10}]"wscsvc.dll" of Microsoft-Windows-SecurityCenter-Core,
    Version = 6.1.7601.17514, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, hash mismatch
    2014-02-23 19:13:14, Info                  CSI    00000362 [SR] Cannot repair member file [l:30{15}]"amd64_installed" of Microsoft-Windows-ServicingStack,
    Version = 6.1.7601.17592, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, hash mismatch
    2014-02-23 19:13:14, Info                  CSI    00000364 [SR] Cannot repair member file [l:26{13}]"x86_installed" of Microsoft-Windows-ServicingStack,
    Version = 6.1.7601.17592, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, hash mismatch
    2014-02-23 19:13:14, Info                  CSI    00000366 [SR] Cannot repair member file [l:26{13}]"x86_installed" of Microsoft-Windows-ServicingStack,
    Version = 6.1.7601.17592, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, hash mismatch
    2014-02-23 19:13:14, Info                  CSI    00000367 [SR] This component was referenced by [l:154{77}]"Package_2_for_KB2533552~31bf3856ad364e35~amd64~~6.1.1.1.2533552-3_neutral_GDR"
    2014-02-23 19:13:15, Info                  CSI    0000036a [SR] Could not reproject corrupted file [ml:520{260},l:94{47}]"\??\C:\Windows\Servicing\Version\6.1.7601.17592"\[l:26{13}]"x86_installed";
    source file in store is also corrupted
    2014-02-23 19:13:15, Info                  CSI    0000036c [SR] Cannot repair member file [l:20{10}]"wscsvc.dll" of Microsoft-Windows-SecurityCenter-Core,
    Version = 6.1.7601.17514, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, hash mismatch
    2014-02-23 19:13:15, Info                  CSI    0000036d [SR] This component was referenced by [l:242{121}]"Microsoft-Windows-Client-Features-Package~31bf3856ad364e35~amd64~~6.1.7601.17514.Microsoft-Windows-Client-Features-Update"
    2014-02-23 19:13:15, Info                  CSI    0000036f [SR] Could not reproject corrupted file [ml:520{260},l:46{23}]"\??\C:\Windows\System32"\[l:20{10}]"wscsvc.dll";
    source file in store is also corrupted
    2014-02-23 19:13:15, Info                  CSI    00000371 [SR] Cannot repair member file [l:30{15}]"amd64_installed" of Microsoft-Windows-ServicingStack,
    Version = 6.1.7601.17592, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, hash mismatch
    2014-02-23 19:13:15, Info                  CSI    00000372 [SR] This component was referenced by [l:154{77}]"Package_2_for_KB2533552~31bf3856ad364e35~amd64~~6.1.1.1.2533552-4_neutral_GDR"
    2014-02-23 19:13:15, Info                  CSI    00000375 [SR] Could not reproject corrupted file [ml:520{260},l:94{47}]"\??\C:\Windows\Servicing\Version\6.1.7601.17592"\[l:30{15}]"amd64_installed";
    source file in store is also corrupted
    2014-02-23 19:13:15, Info                  CSI    00000377 [SR] Repair complete
    2014-02-23 19:13:15, Info                  CSI    00000378 [SR] Committing transaction
    2014-02-23 19:13:15, Info                  CSI    0000037c [SR] Verify and Repair Transaction completed. All files and registry keys listed in this transaction 
    have been successfully repaired

    Summary:
    Attempted proposed solution.  Error still appears.
    This is installed:
    Microsoft Visual C++ 2005 ATL Update kb973923 - x86 8.0.50727.4053
    Microsoft Visual C++ 2005 Redistributable               8.0.56336
    Microsoft Visual C++ 2005 Redistributable (x64)         8.0.59192
    Microsoft Visual C++ 2008 ATL Update kb973924 - x86 9.0.30729.4148
    Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.4148
    Microsoft Visual C++ 2010 x64 Redistributable - 10.0.40219
    Microsoft Visual C++ 2010 x86 Redistributable - 10.0.40219
    Microsoft Visual C++ 2012 Redistributable (x64) - 11.0.60610
    Microsoft Visual C++ 2012 Redistributable (x86) - 11.0.61030
    I reinstalled:
    vcredist_x64 Microsoft Visual C++ 2005 SP1 Redistributable Package (x64) .exe
    vcredist_x86 Microsoft Visual C++ 2005 SP1 Redistributable Package (x86).exe
    Results:
    Windows Installer reconfigured the product. Product Name: Microsoft Visual C++ 2005 Redistributable (x64). Product Version: 8.0.56336. Product Language: 0. Manufacturer: Microsoft
    Corporation. Reconfiguration success or error status: 0.
    Windows Installer reconfigured the product. Product Name: Microsoft Visual C++ 2005 Redistributable. Product Version: 8.0.56336. Product Language: 0. Manufacturer: Microsoft Corporation.
    Reconfiguration success or error status: 0.
    I installed SQLServer2008R2_SP1
    Same error message came up;
    SqlSupport_KatmaiRTM_Cpu64_1.log
    MSI (s) (64:94) [23:03:43:910]: Source for file 'pfbafgaq.dll' is uncompressed, at 'H:\SQLServer2008R2_SP1\1033_ENU_LP\x64\setup\sql2008support\PFiles\SqlServr\100\Setup\Release\x64\'.
    MSI (s) (64:94) [23:03:43:926]: Executing op: SetTargetFolder(Folder=C:\Windows\winsxs\amd64_microsoft.vc80.atl_1fc8b3b9a1e18e3b_8.0.50727.1833_none_8a17faaf2edd3e00\)
    MSI (s) (64:94) [23:03:43:926]: Executing op: SetSourceFolder(Folder=1\Windows\winsxs\nvdlei3o.taa\)
    MSI (s) (64:94) [23:03:43:926]: Executing op: RegisterSharedComponentProvider(,,File=ul_ATL80.dll.837BF1EB_D770_94EB_FF1F_C8B3B9A1E18E,Component={837BF1EB-D770-94EB-A01F-
    C8B3B9A1E18E},ComponentVersion=8.0.50727.1833,ProductCode={B40EE88B-400A-4266-A17B-
    E3DE64E94431},ProductVersion=10.1.2731,PatchSize=0,PatchAttributes=0,PatchSequence=0,SharedComponent=0,IsFullFile=0)
    MSI (s) (64:94) [23:03:43:941]: Executing op: CacheRTMFile(SourceFilePath=C:\Windows\WinSxS
    \amd64_microsoft.vc80.atl_1fc8b3b9a1e18e3b_8.0.50727.762_none_ca3f79d486b08636\ATL80.dll,FileKey=ul_ATL80.dll.837BF1EB_D770_94EB_FF1F_C8B3B9A1E18E,,ProductCode={071c9b48-7c32-4621-a0ac-
    3f809523288f},ProductVersion=8.0.56336,Attributes=0,,,,CopierFlags=0,,,,,,)
    MSI (s) (64:94) [23:03:43:957]: Executing op: RegisterSharedComponentProvider(,,File=ul_ATL80.dll.837BF1EB_D770_94EB_FF1F_C8B3B9A1E18E,Component={837BF1EB-D770-94EB-A01F-
    C8B3B9A1E18E},ComponentVersion=8.0.50727.762,ProductCode={071c9b48-7c32-4621-a0ac-
    3f809523288f},ProductVersion=8.0.56336,PatchSize=0,PatchAttributes=0,PatchSequence=0,SharedComponent=0,IsFullFile=0)
    MSI (s) (64:94) [23:03:43:957]: Executing op: CacheRTMFile(SourceFilePath=C:\Windows\WinSxS
    \amd64_microsoft.vc80.atl_1fc8b3b9a1e18e3b_8.0.50727.762_none_ca3f79d486b08636\amd64_Microsoft.VC80.ATL_1fc8b3b9a1e18e3b_8.0.50727.1833_x-
    ww_f19a562a.cat,FileKey=ul_catalog.837BF1EB_D770_94EB_FF1F_C8B3B9A1E18E,,ProductCode={071c9b48-7c32-4621-a0ac-3f809523288f},ProductVersion=8.0.56336,Attributes=0,,,,CopierFlags=0,,,,,,)
    MSI (s) (64:94) [23:03:43:957]: Executing op: CacheRTMFile(SourceFilePath=C:\Windows\WinSxS
    \amd64_microsoft.vc80.atl_1fc8b3b9a1e18e3b_8.0.50727.762_none_ca3f79d486b08636\amd64_Microsoft.VC80.ATL_1fc8b3b9a1e18e3b_8.0.50727.1833_x-
    ww_f19a562a.manifest,FileKey=ul_manifest.837BF1EB_D770_94EB_FF1F_C8B3B9A1E18E,,ProductCode={071c9b48-7c32-4621-a0ac-
    3f809523288f},ProductVersion=8.0.56336,Attributes=0,,,,CopierFlags=0,,,,,,)
    MSI (s) (64:94) [23:03:43:957]: Executing op: CacheRTMFile(SourceFilePath=C:\Windows\WinSxS
    \amd64_microsoft.vc80.atl_1fc8b3b9a1e18e3b_8.0.50727.762_none_ca3f79d486b08636\ATL80.dll,FileKey=ul_ATL80.dll.837BF1EB_D770_94EB_FF1F_C8B3B9A1E18E,,ProductCode={D40172D6-CE2D-4B72-BF5F-
    26A04A900B7B},ProductVersion=11.0.0,Attributes=0,,,,CopierFlags=0,,,,,,)
    MSI (s) (64:94) [23:03:43:957]: Executing op: RegisterSharedComponentProvider(,,File=ul_ATL80.dll.837BF1EB_D770_94EB_FF1F_C8B3B9A1E18E,Component={837BF1EB-D770-94EB-A01F-
    C8B3B9A1E18E},ComponentVersion=8.0.50727.762,ProductCode={D40172D6-CE2D-4B72-BF5F-
    26A04A900B7B},ProductVersion=11.0.0,PatchSize=0,PatchAttributes=0,PatchSequence=0,SharedComponent=0,IsFullFile=0)
    MSI (s) (64:94) [23:03:43:972]: Executing op: CacheRTMFile(SourceFilePath=C:\Windows\WinSxS
    \amd64_microsoft.vc80.atl_1fc8b3b9a1e18e3b_8.0.50727.762_none_ca3f79d486b08636\amd64_Microsoft.VC80.ATL_1fc8b3b9a1e18e3b_8.0.50727.1833_x-
    ww_f19a562a.cat,FileKey=ul_catalog.837BF1EB_D770_94EB_FF1F_C8B3B9A1E18E,,ProductCode={D40172D6-CE2D-4B72-BF5F-26A04A900B7B},ProductVersion=11.0.0,Attributes=0,,,,CopierFlags=0,,,,,,)
    MSI (s) (64:94) [23:03:43:972]: Executing op: CacheRTMFile(SourceFilePath=C:\Windows\WinSxS
    \amd64_microsoft.vc80.atl_1fc8b3b9a1e18e3b_8.0.50727.762_none_ca3f79d486b08636\amd64_Microsoft.VC80.ATL_1fc8b3b9a1e18e3b_8.0.50727.1833_x-
    ww_f19a562a.manifest,FileKey=ul_manifest.837BF1EB_D770_94EB_FF1F_C8B3B9A1E18E,,ProductCode={D40172D6-CE2D-4B72-BF5F-
    26A04A900B7B},ProductVersion=11.0.0,Attributes=0,,,,CopierFlags=0,,,,,,)
    MSI (s) (64:94) [23:03:43:972]: Executing op: AssemblyCopy(SourceName=uvdlei3o.taa|
    ATL80.dll,SourceCabKey=ul_ATL80.dll.837BF1EB_D770_94EB_FF1F_C8B3B9A1E18E,DestName=ATL80.dll,Attributes=0,FileSize=113152,PerTick=65536,,VerifyMedia=1,ElevateFlags=4,,,,ComponentId=
    {837BF1EB-D770-94EB-A01F-C8B3B9A1E18E},,,,AssemblyMode=0,)
    MSI (s) (64:94) [23:03:43:972]: Assembly Error:The system cannot find the path specified.
    MSI (s) (64:94) [23:03:43:972]: Note: 1: 1935 2: {837BF1EB-D770-94EB-A01F-C8B3B9A1E18E} 3: 0x80070003 4: IAssemblyCache 5: CreateAssemblyCacheItem 6:
    Microsoft.VC80.ATL,version="8.0.50727.1833",publicKeyToken="1fc8b3b9a1e18e3b",processorArchitecture="amd64",type="win32"
    MSI (s) (64:94) [23:03:43:972]: Assembly Error (sxs): Please look into Component Based Servicing Log located at -169675656ndir\logs\cbs\cbs.log to get more diagnostic information.
    MSI (s) (64:94) [23:03:49:882]: Product: Microsoft SQL Server 2008 Setup Support Files  -- Error 1935. An error occurred during the installation of assembly
    'Microsoft.VC80.ATL,version="8.0.50727.1833",publicKeyToken="1fc8b3b9a1e18e3b",processorArchitecture="amd64",type="win32"'. Please refer to Help and Support for more information.
    HRESULT: 0x80070003. assembly interface: IAssemblyCache, function: CreateAssemblyCacheItem, component: {837BF1EB-D770-94EB-A01F-C8B3B9A1E18E}
    Error 1935. An error occurred during the installation of assembly
    'Microsoft.VC80.ATL,version="8.0.50727.1833",publicKeyToken="1fc8b3b9a1e18e3b",processorArchitecture="amd64",type="win32"'. Please refer to Help and Support for more information.
    HRESULT: 0x80070003. assembly interface: IAssemblyCache, function: CreateAssemblyCacheItem, component: {837BF1EB-D770-94EB-A01F-C8B3B9A1E18E}
    MSI (s) (64:94) [23:03:49:882]: User policy value 'DisableRollback' is 0
    Thanks, Ted U

  • An error occured during the installation of assembly "Microsoft.VC80.CRT,type+"win32",version="8.0.50727.6195"publicKeyToken="1fc8b3 b9a1e18e3b",processorArchitecture="x86". Please refer to Help and Support for more information. HRESULT:0x80070BC9.

    At first i got a problem with my Apple Mobile Device Support, but then after i've done some research browsing the net on how to fix that problem, i've finally found the solution to that problem... However, after I've finish installing and trying to run ITunes, there's a pop up says Error 2 , Apple Application Support is needed to run ITunes.... So i've followed the instruction and suggestions given out which is to extract my iTunes64Setup and install Apple Application Support standalone manually, but during the installation, an error pops out that really really really could give me cancer.... the error goes like this-
    ""An error occured during the instilation of assembly "Microsoft.VC80.CRT,type+"win32",version="8.0.50727.6195"publicKeyToken="1fc8b3 b9a1e18e3b",processorArchitecture="x86". Please refer to Help and Support for more information. HRESULT:0x80070BC9.""
    God knows how many times i've reinstalled Itunes, and how many pages i've been thruu just to look for a solution to this problem..... PLEASE HELP ME IM BEGGING YOU TO WHOEVER HAVE ANY IDEA ON HOW TO FIX THIS T^T
    Im running on Window 7 ultimate 64-bit btw...

    OK.  If both of you are Windows 7.  Make sure you go to Windows update (START button, type in Windows Update). Check for updates and update whatever that are available. (especially Microsoft .NET Framework 4 )
    After that see if you still get this error message.
    The last resort would be to unistall and reinstall the whole thing.
    Follow the steps below:
    1. Go to Microsoft website to fix install and Unistall problems. Click "Run now" from Fix it to remove all iTunes & related installer files:
    http://support.microsoft.com/mats/Program_Install_and_Uninstall
    Be aware that Windows Installer CleanUp Utility will not remove the actual program from your computer. However, it will remove the installation files so that you can start the installation, upgrade, or uninstall over.
    2. You should remove all instances of iTunes and the rest of the components listed below:
    it may be necessary to remove all traces of iTunes, QuickTime, and related software components from your computer before reinstalling iTunes.
    Use the Control Panel to uninstall iTunes and related software components in the following order:
    iTunes
    QuickTime
    Apple Software Update
    Apple Mobile Device Support
    Bonjour
    Apple Application Support (iTunes 9 or later)
    Follow the instructions from Apple article listed here: http://support.apple.com/kb/HT1923 to remove all components
    3. Reboot your computer. Next, download iTunes from here:http://www.apple.com/itunes/download/ and install from scratch

  • Windows Installer error message: An error occurred during the installation of assembly 'Microsoft.VC80.ATL,version="8.0.50727.4053",publicKeyToken="1fc8b3b9a1e18e3b",processorArchitecture="x86",type="win32"'. Please refer to Help and Support for more info

    I have been receiving this error trying to install SQL Server 2012. Initially I already had SQL Server 2012 on my machine and attempted to install BIDS 2008. My IT guy stated that there was a conflict in the installation and suggested that I uninstall SQL
    Server 2012 and then attempt to install 2008 BIDs again. Fail. I got a similar error as I pasted below. Giving up on having 2008 BIDS I've been trying to reinstall 2012 SQL Server but am getting this message below.
    The links provided by this message are no help at all (For help, click: http://go.microsoft.com/fwlink?LinkID=20476&ProdName=Microsoft%20SQL%20Server&EvtSrc=setup.rll&EvtID=50000&ProdVer=11.0.2100.60&EvtType=0xDF039760%25401201%25401)
    I've attempted to repair my .NET framework, didn't help.
    I've followed the steps in these threads (http://support.microsoft.com/kb/2688946), (https://support.microsoft.com/kb/957310?wa=wsignin1.0) and (https://social.msdn.microsoft.com/Forums/en-US/beeceb19-69cc-4044-94f0-591feec04626/an-error-occurred-during-the-installation-of-assembly-microsoftvc80crt-public-key),
    neither one fixed the error.
    Any help? Anyone else run into this error? What should I do?
    TITLE: Microsoft SQL Server 2012  Setup
    The following error has occurred:
    An error occurred during the installation of assembly 'Microsoft.VC80.ATL<gs class="GINGER_SOFTWARE_mark" ginger_software_uiphraseguid="2d0ab9fa-7943-473c-b5ee-0a6d6b7194b8" id="e03584ff-5e55-4073-ac2e-d3e07379c0ae">,</gs>version="8.0.50727.4053"<gs
    class="GINGER_SOFTWARE_mark" ginger_software_uiphraseguid="2d0ab9fa-7943-473c-b5ee-0a6d6b7194b8" id="20b968d8-03a3-4284-bffc-0cc1a90d2aac">,</gs>publicKeyToken="1fc8b3b9a1e18e3b"<gs class="GINGER_SOFTWARE_mark"
    ginger_software_uiphraseguid="2d0ab9fa-7943-473c-b5ee-0a6d6b7194b8" id="9b86ea8f-9852-4110-a616-a1e085d740c6">,</gs>processorArchitecture="x86"<gs class="GINGER_SOFTWARE_mark" ginger_software_uiphraseguid="2d0ab9fa-7943-473c-b5ee-0a6d6b7194b8"
    id="f52b7568-d5e6-4099-a8ee-ebc11fbf4acc">,</gs>type="win32"'. Please refer to Help and Support for more information. HRESULT: 0x80073712. 
    For help, click: http://go.microsoft.com/fwlink?LinkID=20476&ProdName=Microsoft%20SQL%20Server&EvtSrc=setup.rll&EvtID=50000&ProdVer=11.0.2100.60&EvtType=0xDF039760%25401201%25401
    BUTTONS:
    OK
    TITLE: Microsoft SQL Server 2012  Setup
    The following error has occurred:
    SQL Server Setup has encountered an error when running a Windows Installer file.
    Windows Installer error message: An error occurred during the installation of assembly 'Microsoft.VC80.ATL<gs class="GINGER_SOFTWARE_mark" ginger_software_uiphraseguid="6682fddf-3b37-48f0-83c9-ec13036b3ec3" id="297b0922-8852-404d-9dc1-a9b38415a2e5">,</gs>version="8.0.50727.4053"<gs
    class="GINGER_SOFTWARE_mark" ginger_software_uiphraseguid="6682fddf-3b37-48f0-83c9-ec13036b3ec3" id="785a0f51-5ed5-41ee-97a8-8fc31122e2ae">,</gs>publicKeyToken="1fc8b3b9a1e18e3b"<gs class="GINGER_SOFTWARE_mark"
    ginger_software_uiphraseguid="6682fddf-3b37-48f0-83c9-ec13036b3ec3" id="8aa968bd-ff25-4e9d-9109-a219a98ee5e8">,</gs>processorArchitecture="x86"<gs class="GINGER_SOFTWARE_mark" ginger_software_uiphraseguid="6682fddf-3b37-48f0-83c9-ec13036b3ec3"
    id="aa9e7ba2-4f5a-4d89-bf64-dcff0714afaa">,</gs>type="win32"'. Please refer to Help and Support for more information. HRESULT: 0x80073712. 
    Windows Installer file: c:\2f4e5903553a88acc6726f538e140c4d\1033_ENU_LP\x64\setup\sqlsupport_msi\SqlSupport.msi
    Windows Installer log file: C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\Log\20150213_150637\SqlSupport_Cpu64_1_ComponentUpdate.log
    Click 'Retry' to retry the failed action, or click 'Cancel' to cancel this action and continue setup.
    For help, click: http://go.microsoft.com/fwlink?LinkID=20476&ProdName=Microsoft%20SQL%20Server&EvtSrc=setup.rll&EvtID=50000&ProdVer=11.0.2100.60&EvtType=0xDC80C325
    BUTTONS:
    &Retry
    Cancel

    Hi Gurmo,
    HRESULT: 0x80073712 means ERROR_SXS_COMPONENT_STORE_CORRUPT, and it is one of the error codes listed at this
    KB article.
    I suggest you run the System Update Readiness tool and check if the error still persists.
    There is a similar thread for your reference.
    https://social.technet.microsoft.com/Forums/en-US/0b3d0479-b9c0-4551-a623-1519ce7584af/error-when-installing-sql-server-2008-r2-rtm-on-windows-server-2008-r2-foundation?forum=winservergen
    Thanks,
    Lydia Zhang
    If you have any feedback on our support, please click
    here.
    Lydia Zhang
    TechNet Community Support

  • An error occurred during the intallation of assembly Microsoft.VC80.CRT.type='win32".version="8.0.050727.6195",publicKeyToken="1fc8b .3b9a1e18e3b".processorArchitectyre="x86"/please refer to help and support for more information. HRESULT:8x800736FD

    Hello,
    Pls help me while I am intalling itunes for win7 I getting follwoing errro:
    an error occurred during the intallation of assembly Microsoft.VC80.CRT.type='win32".version="8.0.050727.6195",publicKeyToken="1fc8b .3b9a1e18e3b".processorArchitectyre="x86"/please refer to help and support for more information. HRESULT:8x800736FD.

    Hello there BJiphone,
    Thank you for using Apple Support Communities!
    It sounds like you are having issues installing the latest iTunes on your computer.
    I would try the troublehsooting outlined in the article named:
    Trouble installing iTunes or QuickTime for Windows
    http://support.apple.com/kb/HT1926
    Cheers,
    Sterling

  • New in Kodo 3.3.3: Improved support for Java 5 enums and generics?

    Hello,
    Can anybody tell me if Kodo 3.3.3 can be deployed on WebLogic 8.1 sp4, jdk
    1.4.1? The reason I ask this is because one of the features mentioned for
    v3.3.3 is the support for Java 5 generics, which is available on WebLogic
    9 -- but not in WebLogic 8.1 sp4. The documentation for Kodo 3.3.3 seems
    to indicate that it can be deployed on WebLogic 8.1 -- can anyone tell me
    if this is accurate?
    Thanks for your help!

    Correction:
    I think that my question may have been misunderstood. What I want to know
    is if Kodo 3.3.3 can be deployed on WebLogic 8.1sp4 which is running JDK
    1.4 or do I have to deploy on a newer version of WebLogic that is running
    Java 5?
    Thanks!
    Rita wrote:
    I think that my question may have been misunderstood. What I want to know
    is if Kodo 3.3.3 can be deployed on WebLogic 8.1sp4 which is running JDK
    1.4 or do I have to deploy on a newer version of WebLogic that is running
    Java 4?
    Thanks!
    Stephen Kim wrote:
    Rita,
    While Kodo 3.3.x can work with JDK 5, it cannot make WL work with JDK 5.
    However, Kodo 3.4 RC 3 / 4.0 EA 2 both can work with WL 9 (which works
    with JDK 5).
    Rita wrote:
    Hello,
    Can anybody tell me if Kodo 3.3.3 can be deployed on WebLogic 8.1 sp4,
    jdk
    1.4.1? The reason I ask this is because one of the features mentionedfor
    v3.3.3 is the support for Java 5 generics, which is available on WebLogic
    9 -- but not in WebLogic 8.1 sp4. The documentation for Kodo 3.3.3 seems
    to indicate that it can be deployed on WebLogic 8.1 -- can anyone tell me
    if this is accurate?
    Thanks for your help!
    Steve Kim
    [email protected]
    SolarMetric Inc.
    http://www.solarmetric.com

  • Error message during the installation of assembly, refer to help and support for more information: HRESULT :0x80070BC9

    I am trying to download iTunes for my ipod touch. Everytime I start the installation proccess I get this error message
    An error occurred during the installation of assembly 'Microsoft.VC80.CRT,type="win32".version="8.0.50727.4053",publicKeyToken="1fc8b 3b 9a1e 8b 3b", processorArchitecture="amd64"'. Please refer to Help and Support for more information. HRESULT: 0x80070BC9
    after this error pops up and I click ok the installer back tracks then installs.. my ipod cannot connect with the iTunes that is installed it says I need to uninstall and install iTunes with 64 bit..
    I've tried this 3 times and get the same result.. please help ! thanks

    These ones are typically caused by underlying problems on the PC that also often cause Windows Updates to fail to install. If we can fix the Windows Update trouble, we can usually get the iTunes trouble cleaned up en passant.
    Go into your Windows update and try to check for new updates. If updates install, stock up on the ones you're behind on, restarting the PC if requested to do so. After the restart, try installing iTunes again. Does it go through this time for you?
    If windows updates fail to install, go into your Update History and doubleclick the failures. What alphanumeric codes appear for you? Are they also 80070BC9, or some other number? (If they're another number, what number are you getting?)

Maybe you are looking for

  • How to call oracle Function which has If else condition in Data Template

    Hi, currently I am working on creating Data Template which uses a Oracle Function which I need to make use in my data template. But I have some confusions on using the same. Could anybody please help me in this regard. I have a function like this, fu

  • Server 2012 Group Policy Templates installed on Server 2008 R2

    Setup: 2 x Domain Controllers running Server 2K8 R2 SP1 We are currently running our environment with IE9 and want to upgrade to IE11. However 2K8 R2 group policy doesnt support IE11 unless you upgrade your DC's to this version of IE. We are not goin

  • How to hide row column on condition in report

    Hello everyone, Can its is possible to hide a Column of a row in report. For one customer i am having Opening Balance n Closing Balance data.....i m breaking my report on customer wise (First Column). So I can see Customer only one time not 5..... no

  • Using Solution Manager 4.0 to control SLD

    Hello everyone: I've installed SolMan 4.0 on an Instance, and in another instance, a whole NetWeaver stack 2004s. Now I'm configuring XI and as a pre-req I need SLD configured. My question is, do I need to configure it on SolMan, or just in the Java

  • "quicktime error -50 or -1"

    I have one project that will not allow me to export it. I have been exporting many other projects while this one still gives me an error. The video files were shot with my iPhone which boggles my mind even more. Why would they cause problems for Fina