ProClarity 6.3 PAS install fails on Windows Server 2012

We are trying to install PAS 6.3 on Windows Server 2012 and the install fails with the following error
The following requirements are missing:
Windows Server 2003 SP1
We have successfully installed on Windows Server 2008 R2, so it really isn't a Windows Server 2003 SP1 issue.
Has anyone successfully installed on Windows Server 2012?  Is there a way to force the installer not to check for the OS?
Thanks.
Kevin

I have a PAS server running in Windows 2012, by doing exactly the same pre-requisites  that you do in Windows 2008 r2 (iis, Framework, SQL ADO 2005 / 2008). With the Windows Server 2003 SP1 message you can avoid it by doing a really simple thing that
is right click the setup file --> properties, and head to the "Compatibility Tab" and run it with compatibility mode Windows 7, also run it with Admin permissions. This let you pass by the message and let you install the product.  Remember, after  the
installation, you need to check all the IIS config, folder permissions, that you did in Windows 2008 x64  installation. Also, the App pool needs to work with .NET 2.0 not 4.0. 
Good luck! 
Byron
BNavas

Similar Messages

  • VMM Agent install fails on Windows Server 2012 R2 Hyper-V

    Hi,
    We are unable to install VMM 2012 R2 agent on Windows Server 2012 R2 server either from VMM console or manually on the hyper-v server.
    Error on VMM Console:
    Error (410)
    Agent installation failed on chsicoecdh03.casper.com.
    Fatal error during installation (0x80070643)
    Recommended Action
    Try the operation again. If the problem persists, install the agent locally and then add the managed computer.
    ==================================================================
    Error on Hyper-v server:
    MSI (c) (E8:D0) [16:53:24:726]: Windows Installer installed the product. Product Name: Microsoft System Center Virtual Machine Manager Agent (x64). Product Version: 3.2.7510.0. Product Language: 1033. Manufacturer: Microsoft Corporation. Installation success
    or error status: 1603.
    Also, I suspect may be issue with WMI then checked WMI repository and it is in consistent state. winmgmt /verifyrepository.
    Please help on this issue.
    Any help would be appreciated.
    Thanks
    Kumaresan Lakshmanan

    So, I've managed to research this some more since Thursday and I've come to the conclusion that Hyper-V does a horrible job of supporting Qualcomm NIC cards. That's the only thing I can conclude as far as where the issue is originating. I've read many
    post and walkthroughs but nothing that has helped. The issue wasn't with any settings in the domain controller. The issue was that there really is a slow connection originating at the domain controller that is a VM and has network connectivity through the
    virtual switch from Hyper-V. So, next question is, how do I get the DC to have better connectivity through the NIC that Hyper-V won't give it? If hyper-v would allow passthrough, this would be so much simpler. VM-ware is looking really good at this point.
    Im disappointed in MS right now.

  • Windows Azure Tools for Visual Studio 2013 - v2.2 install fails on Windows Server 2012 R2

    Microsoft Visual Studio Professional 2013
    Version 12.0.21005.1 REL
    Microsoft .NET Framework
    Version 4.5.51641
    The installation completes without any errors on my VM running Windows Server 2012 R2, however its not recognized in VS2013 ? It also breaks the Publish functionality when I try and publish a web site to my hosting provider.

    I tried install, uninstall, reinstall cycle several times without success. Any help would be greatly appreciated.
    here is my About info:
    Microsoft Visual Studio Professional 2013
    Version 12.0.21005.1 REL
    Microsoft .NET Framework
    Version 4.5.51641
    Installed Version: Professional
    LightSwitch for Visual Studio 2013   06177-004-0444002-02824
    Microsoft LightSwitch for Visual Studio 2013
    Microsoft Office Developer Tools for Visual Studio 2013 ENU   06177-004-0444002-02824
    Microsoft Office Developer Tools for Visual Studio 2013 ENU
    Team Explorer for Visual Studio 2013   06177-004-0444002-02824
    Microsoft Team Explorer for Visual Studio 2013
    Visual Basic 2013   06177-004-0444002-02824
    Microsoft Visual Basic 2013
    Visual C# 2013   06177-004-0444002-02824
    Microsoft Visual C# 2013
    Visual C++ 2013   06177-004-0444002-02824
    Microsoft Visual C++ 2013
    Visual F# 2013   06177-004-0444002-02824
    Microsoft Visual F# 2013
    Visual Studio 2013 Code Analysis Spell Checker   06177-004-0444002-02824
    Microsoft® Visual Studio® 2013 Code Analysis Spell Checker
    Portions of International CorrectSpell™ spelling correction system © 1993 by Lernout & Hauspie Speech Products N.V. All rights reserved.
    The American Heritage® Dictionary of the English Language, Third Edition Copyright © 1992 Houghton Mifflin Company. Electronic version licensed from Lernout & Hauspie Speech Products N.V. All rights reserved.
    ASP.NET Web Frameworks and Tools 2012.2   4.1.21001.0
    For additional information, visit http://go.microsoft.com/fwlink/?LinkID=309563
    ASP.NET Web Frameworks and Tools 2013   5.0.11001.0
    For additional information, visit http://www.asp.net/
    BusinessObjectEditor   1.0
    Information about my package
    CodeRush for Visual Studio   13.2
    Common Azure Tools   1.0
    Provides common services for use by Azure Mobile Services and Windows Azure Tools.
    CreateLayoutWizardPkg   1.0
    Create layout wizard.
    DevExpress.ExpressApp.Design.DesignDynamicPackage   1.0
    DevExpress VSIX Package
    DevExpress.ExpressApp.DesignPackage   1.0
    DevExpress VSIX Package
    DevExtreme.Design   13.2.6
    DevExtreme Visual Studio integration package
    DXCore for Visual Studio   13.2
    DXCore for Visual Studio
    PreEmptive Analytics Visualizer   1.2
    Microsoft Visual Studio extension to visualize aggregated summaries from the PreEmptive Analytics product.
    SQL Server Data Tools   12.0.30919.1
    Microsoft SQL Server Data Tools
    Windows Azure Mobile Services Tools   1.0
    Windows Azure Mobile Services Tools
    Workflow Manager Tools 1.0   1.0
    This package contains the necessary Visual Studio integration components for Workflow Manager.
    XtraReports package   1.0
    XtraReports package

  • CryptDecrypt function failing on Windows Server 2012

    Hi,
    I have a sample program which does encryption / decryption.
    This program works on Win7 and Win8.1 but fails on Windows Server 2012.
    Please can somebody help me on resolving this issue?
    const char KEY_FILE[255] = "C:\\key.txt";
    In Constructor:
    dwResult= 0;
    hProv = 0;
    hKey = 0;
    hSessionKey = 0;
    cbBlob = 0;
    pbBlob = NULL;
    cbBlob = file_length(KEY_FILE);
    pbBlob = (BYTE*)malloc(cbBlob + 1);
    memset(pbBlob, 0, cbBlob + 1);
    FILE *fp = fopen(KEY_FILE, "rb");
    if (fp) {
    fread(pbBlob, 1, cbBlob, fp);
    fclose(fp);
    } else {
    free(pbBlob);
    pbBlob = NULL;
    if (!CryptAcquireContext(&hProv, NULL, MS_DEF_PROV, PROV_RSA_FULL, 0))
    dwResult = GetLastError();
    if (dwResult == NTE_BAD_KEYSET)
    if (!CryptAcquireContext(&hProv, NULL, MS_DEF_PROV, PROV_RSA_FULL, CRYPT_NEWKEYSET))
    dwResult = GetLastError();
    MessageBox("Error [0x%x]: CryptAcquireContext() failed.", "Information", MB_OK);
    return;
    } else {
    dwResult = GetLastError();
    return;
    if (pbBlob) {
    if (!CryptImportKey(hProv, pbBlob, cbBlob, 0, 0, &hSessionKey))
    dwResult = GetLastError();
    MessageBox("Error [0x%x]: CryptImportKey() failed.", "Information", MB_OK);
    return;
    } else {
    if (!CryptImportKey(hProv, PrivateKeyWithExponentOfOne, sizeof(PrivateKeyWithExponentOfOne), 0, 0, &hKey))
    dwResult = GetLastError();
    MessageBox("Error CryptImportKey() failed.", "Information", MB_OK);
    return;
    if (!CryptGenKey(hProv, CALG_RC4, CRYPT_EXPORTABLE, &hSessionKey))
    dwResult = GetLastError();
    MessageBox("Error CryptGenKey() failed.", "Information", MB_OK);
    return;
    //{{AFX_DATA_INIT(CCryptoEncryptionDlg)
    m_cipher = _T("");
    m_clear = _T("Encrypt me");
    When I click on Encryption Button:
    UpdateData();
    unsigned long length = m_clear.GetLength() +1;
    unsigned char * cipherBlock = (unsigned char*)malloc(length);
    memset(cipherBlock, 0, length);
    memcpy(cipherBlock, m_clear, length -1);
    if (!CryptEncrypt(hSessionKey, 0, TRUE, 0, cipherBlock, &length, length))
    dwResult = GetLastError();
    MessageBox("Error CryptEncrypt() failed.", "Information", MB_OK);
    return;
    m_cipher = cipherBlock;
    m_clear = "";
    free(cipherBlock);
    UpdateData(FALSE);
    When I click on Decrypt button:
    UpdateData();
    unsigned long length = m_cipher.GetLength() +1;
    unsigned char * cipherBlock = (unsigned char*)malloc(length);
    memset(cipherBlock, 0, length);
    memcpy(cipherBlock, m_cipher, length -1);
    int retVal = CryptDecrypt(hSessionKey, 0, TRUE, CRYPT_DECRYPT_RSA_NO_PADDING_CHECK, (BYTE*)cipherBlock, &length);
    if (!retVal)
    dwResult = GetLastError();
    MessageBox("Error CryptDecrypt() failed.", "Information", MB_OK);
    return;
    dwResult = GetLastError();
    m_clear = cipherBlock;
    m_cipher = "";
    free(cipherBlock);
    UpdateData(FALSE);
    The source is from http://www.codeproject.com/Articles/11578/Encryption-using-the-Win-Crypto-API
    I just got the source code from above link and compiled in VS2012. The same code works as-is in Win8.1 but fails in loading itself in Windows Server 2012.
    Thanks in advance.
    Regards,
    Raj

    Windows CE is pretty old but I see that used a bit in 3rd world markets where people are not rich enough to afford more modern gear.
    I use 7-zip for backups, and the SDK is open source which means it can be used in another project such a specialized backup or other tool
    7-zip has the AES in the SDK which is been checked as solid.
    Place your rig specifics into your signature like I have, makes it 100x easier!
    Hardcore Games Legendary is the Only Way to Play!
    Vegan Advocate How can you be an environmentalist and still eat meat?

  • Not able to install IIS on Windows Server 2012

    I am unable to install IIS on Windows Server 2012. I get the error as shown in the below screenshot. Error code is 0x800f0922. I did RestoreHealth but that has not helped. Any help will be appreciated.

    Hi Yogesh,
    Just last week was installing IIS on W12R2 server and got stuck and found easy way of installing this as follow.
    when you start installing IIS and at the last step as i marked on red square confirmation. there you find
    export configuration settings..go to and export it to C drive and open Powershell by right clicking as open as administrator and run this from Powershell and it will install successfully.
    Please let me know if you are facing any issue, since this way it has to work.
    OR if you it already worked let me know or mark as correct.
    Regards
    Raj Navalgund
    ADS/DNS/DHCP/RIS/GROUP POLICY/PowerShell/VMware/Esxi/Storage.

  • SQL Server 2008 R2 & 2008 R2 SP1 installation fails in Windows server 2012

    Hi All,
    I have a strange issue here. I have a Windows server 2012 VM where i want to deploy SQL 2008 R2 Enterprise edition.
    When i Run the setup every thing goes fine and during the installation wizard i get this error " The Folder path Program files contains  invalid characteristics. I get this error 3 - 4 times during the installation wizard and the installation fails.
    Below is the screenshot for the same.
    So i checked few articles regarding the compatibility issue and found the below article and upgraded my setup to SQL 2008 R2 SP1 using the below article.
    http://blogs.msdn.com/b/petersad/archive/2011/07/13/how-to-slipstream-sql-server-2008-r2-and-a-sql-server-2008-r2-service-pack-1-sp1.aspx
    Again i still see the same above errors and with that a new error related to a MOF File.
    Below are the contents of the error logs. Can some one assist on this issue.
    ======================================================
    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):           -2068052692
      Exit facility code:            1212
      Exit error code:               1324
      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:                    2015-01-15 13:53:03
      End time:                      2015-01-15 14:04:29
      Requested action:              Install
      Log with failure:              C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20150115_135043\Detail.txt
      Exception help link:           http%3a%2f%2fgo.microsoft.com%2ffwlink%3fLinkId%3d20476%26ProdName%3dMicrosoft%2bSQL%2bServer%26EvtSrc%3dsetup.rll%26EvtID%3d50000%26ProdVer%3d10.50.2500.0%26EvtType%3d0xA60E3551%400xD3BEBD98%401211%401
    Machine Properties:
      Machine name:                  ALPCLDSCOM01
      Machine processor count:       4
      OS version:                    Future Windows Version
      OS service pack:               
      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
      Installation location:         D:\SQLServer2008R2_SP1\x64\setup\
      Installation edition:          ENTERPRISE
      Slipstream:                    True
      SP Level                       1
    User Input Settings:
      ACTION:                        Install
      ADDCURRENTUSERASSQLADMIN:      False
      AGTSVCACCOUNT:                 E2KLAB\SCOMAC
      AGTSVCPASSWORD:                *****
      AGTSVCSTARTUPTYPE:             Automatic
      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:         Automatic
      CONFIGURATIONFILE:             C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20150115_135043\ConfigurationFile.ini
      CUSOURCE:                      
      ENABLERANU:                    False
      ENU:                           True
      ERRORREPORTING:                False
      FARMACCOUNT:                   <empty>
      FARMADMINPORT:                 0
      FARMPASSWORD:                  *****
      FEATURES:                      SQLENGINE,FULLTEXT,RS,SSMS,ADV_SSMS
      FILESTREAMLEVEL:               0
      FILESTREAMSHARENAME:           <empty>
      FTSVCACCOUNT:                  NT AUTHORITY\LOCAL SERVICE
      FTSVCPASSWORD:                 *****
      HELP:                          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:                     D:\SQLServer2008R2_SP1\SP
      PID:                           *****
      QUIET:                         False
      QUIETSIMPLE:                   False
      ROLE:                          <empty>
      RSINSTALLMODE:                 DefaultNativeMode
      RSSVCACCOUNT:                  E2KLAB\SCOMAC
      RSSVCPASSWORD:                 *****
      RSSVCSTARTUPTYPE:              Automatic
      SAPWD:                         *****
      SECURITYMODE:                  <empty>
      SQLBACKUPDIR:                  <empty>
      SQLCOLLATION:                  SQL_Latin1_General_CP1_CI_AS
      SQLSVCACCOUNT:                 E2KLAB\SCOMAC
      SQLSVCPASSWORD:                *****
      SQLSVCSTARTUPTYPE:             Automatic
      SQLSYSADMINACCOUNTS:           E2KLAB\Gautamr,E2KLAB\SCOMAC,E2KLAB\SCOM Admins
      SQLTEMPDBDIR:                  <empty>
      SQLTEMPDBLOGDIR:               <empty>
      SQLUSERDBDIR:                  <empty>
      SQLUSERDBLOGDIR:               <empty>
      SQMREPORTING:                  False
      TCPENABLED:                    1
      UIMODE:                        Normal
      X86:                           False
      Configuration file:            C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20150115_135043\ConfigurationFile.ini
    Detailed results:
      Feature:                       Database Engine Services
      Status:                        Failed: see logs for details
      MSI status:                    Failed: see details below
      MSI error code:                1324
      MSI log file location:         C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20150115_135043\BestPracticesPolicies_Cpu32_1.log
      MSI error description:         The folder path 'Program Files (x86)' contains an invalid character.
      Configuration status:          Passed
      Feature:                       Full-Text Search
      Status:                        Failed: see logs for details
      MSI status:                    Passed
      Configuration status:          Passed
      Feature:                       Reporting Services
      Status:                        Failed: see logs for details
      MSI status:                    Passed
      Configuration status:          Passed
      Feature:                       Management Tools - Complete
      Status:                        Failed: see logs for details
      MSI status:                    Passed
      Configuration status:          Passed
      Feature:                       Management Tools - Basic
      Status:                        Failed: see logs for details
      MSI status:                    Failed: see details below
      MSI error code:                1324
      MSI log file location:         C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20150115_135043\BestPracticesPolicies_Cpu32_1.log
      MSI error description:         The folder path 'Program Files (x86)' contains an invalid character.
      MSI status:                    Failed: see details below
      MSI error code:                1324
      MSI log file location:         C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20150115_135043\sql_common_core_loc_Cpu64_1033_1.log
      MSI error description:         The folder path 'Program Files' contains an invalid character.
      Configuration status:          Passed
    Rules with failures:
    Global rules:
    Scenario specific rules:
    Rules report file:               C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20150115_135043\SystemConfigurationCheck_Report.htm
    Gautam.75801

    Hi Alberto,
    Still the same issue.
    I installed the SQL 2008 R2 without SP1 and changed the service accounts to system account and  repaired the .NET using the .NET Repair tool
    Also changed the installation directory to D:\ Drive this time. Still same issue.
    log file:
    ===============
    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):           -2068052692
      Exit facility code:            1212
      Exit error code:               1324
      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:                    2015-01-15 22:55:37
      End time:                      2015-01-15 23:07:32
      Requested action:              Install
      Log with failure:              C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20150115_225416\SQLSysClrTypes_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.2500.0
    Machine Properties:
      Machine name:                  ALPCLDSCOM01
      Machine processor count:       4
      OS version:                    Future Windows Version
      OS service pack:               
      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:                       1
      Installation location:         D:\SQL Server 2008 R2 Datacenter edition for only Windows server 2008 R2\x64\setup\
      Installation edition:          ENTERPRISE
    User Input Settings:
      ACTION:                        Install
      ADDCURRENTUSERASSQLADMIN:      False
      AGTSVCACCOUNT:                 NT AUTHORITY\SYSTEM
      AGTSVCPASSWORD:                *****
      AGTSVCSTARTUPTYPE:             Automatic
      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\20150115_225416\ConfigurationFile.ini
      CUSOURCE:                      
      ENABLERANU:                    False
      ENU:                           True
      ERRORREPORTING:                False
      FARMACCOUNT:                   <empty>
      FARMADMINPORT:                 0
      FARMPASSWORD:                  *****
      FEATURES:                      SQLENGINE,FULLTEXT,RS,SSMS,ADV_SSMS
      FILESTREAMLEVEL:               0
      FILESTREAMSHARENAME:           <empty>
      FTSVCACCOUNT:                  NT AUTHORITY\LOCAL SERVICE
      FTSVCPASSWORD:                 *****
      HELP:                          False
      INDICATEPROGRESS:              False
      INSTALLSHAREDDIR:              D:\Program Files\Microsoft SQL Server\
      INSTALLSHAREDWOWDIR:           D:\Program Files (x86)\Microsoft SQL Server\
      INSTALLSQLDATADIR:             <empty>
      INSTANCEDIR:                   D:\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:                 DefaultNativeMode
      RSSVCACCOUNT:                  NT AUTHORITY\SYSTEM
      RSSVCPASSWORD:                 *****
      RSSVCSTARTUPTYPE:              Automatic
      SAPWD:                         *****
      SECURITYMODE:                  <empty>
      SQLBACKUPDIR:                  <empty>
      SQLCOLLATION:                  SQL_Latin1_General_CP1_CI_AS
      SQLSVCACCOUNT:                 NT AUTHORITY\SYSTEM
      SQLSVCPASSWORD:                *****
      SQLSVCSTARTUPTYPE:             Automatic
      SQLSYSADMINACCOUNTS:           E2KLAB\Gautamr
      SQLTEMPDBDIR:                  <empty>
      SQLTEMPDBLOGDIR:               <empty>
      SQLUSERDBDIR:                  <empty>
      SQLUSERDBLOGDIR:               <empty>
      SQMREPORTING:                  False
      TCPENABLED:                    1
      UIMODE:                        Normal
      X86:                           False
      Configuration file:            C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20150115_225416\ConfigurationFile.ini
    Detailed results:
      Feature:                       Database Engine Services
      Status:                        Failed: see logs for details
      MSI status:                    Failed: see details below
      MSI error code:                1324
      MSI log file location:         C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20150115_225416\BestPracticesPolicies_Cpu32_1.log
      MSI error description:         The folder path 'Program Files (x86)' contains an invalid character.
      Configuration status:          Passed
      Feature:                       Full-Text Search
      Status:                        Failed: see logs for details
      MSI status:                    Passed
      Configuration status:          Passed
      Feature:                       Reporting Services
      Status:                        Failed: see logs for details
      MSI status:                    Passed
      Configuration status:          Passed
      Feature:                       Management Tools - Complete
      Status:                        Failed: see logs for details
      MSI status:                    Passed
      Configuration status:          Passed
      Feature:                       Management Tools - Basic
      Status:                        Failed: see logs for details
      MSI status:                    Failed: see details below
      MSI error code:                1324
      MSI log file location:         C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20150115_225416\BestPracticesPolicies_Cpu32_1.log
      MSI error description:         The folder path 'Program Files (x86)' contains an invalid character.
      Configuration status:          Passed
    Rules with failures:
    Global rules:
    Scenario specific rules:
    Rules report file:               C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20150115_225416\SystemConfigurationCheck_Report.htm
    Any other suggestion i can try ?
    Gautam.75801

  • Troubleshoot problems with installing updates on Windows Server 2012 Standart Edition

    When trying to install last update, receiving next errors:
    Installation Failure: Windows failed to install the following update with error 0x80070020: Cumulative Security Update for Internet Explorer 10 for Windows Server 2012 (KB3003057).
    Security Update for Microsoft .NET Framework 4.5, 4.5.1 and 4.5.2 on Windows 8 and Windows Server 2012 x64 (KB2978127).
    Installation Failure: Windows failed to install the following update with error 0x80070020: Security Update for Windows Server 2012 (KB2982998).
    Installation Failure: Windows failed to install the following update with error 0x80070020: Security Update for Windows Server 2012 (KB2993958).
    Installation Failure: Windows failed to install the following update with error 0x80070020: Security Update for Windows Server 2012 (KB3002885).
    Installation Failure: Windows failed to install the following update with error 0x80070020: Security Update for Windows Server 2012 (KB3010788).
    Installation Failure: Windows failed to install the following update with error 0x80070020: Security Update for Microsoft .NET Framework 3.5 on Windows 8 and Windows Server 2012 for x64-based Systems (KB2978121).
    Installation Failure: Windows failed to install the following update with error 0x80070020: Security Update for Windows Server 2012 (KB3006226).
    Installation Failure: Windows failed to install the following update with error 0x80070020: Security Update for Windows Server 2012 (KB3005607).
    Installation Failure: Windows failed to install the following update with error 0x80070020: Update for Windows Server 2012 (KB2975331).
    Installation Failure: Windows failed to install the following update with error 0x80070020: Update for Windows Server 2012 (KB3008627).
    Installation Failure: Windows failed to install the following update with error 0x80070020: Security Update for Windows Server 2012 (KB3011780).
    Installation Failure: Windows failed to install the following update with error 0x80070020: Security Update for Windows Server 2012 (KB3003743).
    This problem reproduced on all my web-servers (Windows Server 2012 Std). How can I fix these problems

    Hi,
    Windows update error 0x80070020 can occur if a program is interfering with the automatic update process.
    Restart your computer or restart your computer in safe mode with network, then try to install the updates. Detailed information you may reference the link below(this applies also to Windows Server 2012 ):
    You receive error 0x80070020 when you use the Windows Update Web site or the Microsoft Update Web site to install updates
    http://support.microsoft.com/kb/883825/en-us
    If the problem still exits, open Run, type %windir% and hit
    Enter, find a text file named WindowsUpdate, uploaded the log file.
    Best Regards,           
    Eve Wang

  • Getting error 'proc_createNewAppSiteDomainIds' when I try to install SharePoint on Windows Server 2012

    I have a Windows Server 2012 setup with SQL 2012 SP1 installed.  I have tried to install Sharepoint Foundation 2013 and also full blown Sharepoint version...but during the wizard setup I always get 'Cannot find the object 'proc_createNewAppSiteDomainIds',
    because it does not exist or you do not have permission.
    The install created my db in sql 'team1p-vm' but that is it.
    What am I missing?
    During the install I have tried both Complete and Stand-alone as the Server Type.
    When it gets to the product configuration wizard I use:
    Create a new server farm
    I enter my database server name: team1p-vm
    Database name: SharePoint_Config
    I enter my db access account
    I enter a farm security settings passphrase
    I use 17012 as my port number, select NTLM
    I see my configuration settings...
    Click Next and I get the error on task 3 of 10.
    here is the dump of the application Log: At least some of it.
    An exception of type System.Data.SqlClient.SqlException was thrown.  Additional exception information: Cannot find the object 'proc_createNewAppSiteDomainIds', because it does not exist or you do not have permission.
    System.Data.SqlClient.SqlException (0x80131904): Cannot find the object 'proc_createNewAppSiteDomainIds', because it does not exist or you do not have permission.

    Can you see if there is anything in the SQL ERRORLOG on the SQL Server that may help at the time you see this error?
    Does your user account (the user you're installing SharePoint with) have the sysadmin fixed role in SQL Server?
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • CF11 install problem on WIndows server 2012 R2

    We have a new install windows server 2012 R2 with a new install CF11 standard installed on C drive. Everything is 64bit. The CF administrator site and login works fine.  cfm files will not serve up in the default directory, but IIS shows htm files fine.  CF administrator runs fine.
    Web Server Config tool will only show "None" in the IIS Web Site box.  The usual CGI, APS, etc have been installed on IIS.  In fact IIS and CF11 have been reinstalled.  wsconfig.exe manual run shows no errors.
    The problem is that any call to a cfm template results in an error (html pages serve fine):
    HTTP Error 500.0 - Internal Server Error
    The page cannot be displayed because an internal server error has occurred.
    Detailed Error Information:
    Module       IsapiModule
    Notification       ExecuteRequestHandler
    Handler       cfmHandler
    Error Code       0x8007007f
    Requested URL       http://localhost:80/default.cfm
    Physical Path       C:\inetpub\wwwroot\default.cfm
    Can anybody give any suggestions for troubleshooting?  No logs seem to show any information that helps.

    Fixed the problem......... it is not a CF problem alone but and mostly an IIS problem ....
    1) remove IIS completely...... including the inetpub directory..... remove .NET Extensibility from server manager under Application Development if inetpub in use error is present... inetpub has to be deleted.
    2) reboot
    3) reinstall IIS and enable all the usual stuff, ie, CGI, ISAPI, .NET, ASP , WebSocket Protocol, etc under Application Development
    4) restart IIS and CF
    5) Set Web Server Config to  "All"
    60 restart IIS and CF
    The trick to completely reinstall IIS and that is only done if you can delete the inetpub folder under root drive.

  • Windows 8.1 SOFTWARE registry hive load failed on Windows Server 2012

    Hello,
    I am participated in custom Windwows Software backup/restore project development that requires load of Windows SOFTWARE/SYSTEM registry hives from target OS system drive connected to Windows system.
    On all Windows version except Windows 8.1 program works correctly but when host system (on that programm run on) is Windows Server 2012 or Windows 8 and target system is Windows 8.1 registry hive load failed with following error: 
    Failed to load f:\Windows\System32\config\software: [1009] The configuration registry database is corrupt.
    After run of 'chkdsk /r' error still remained. All requred security privileges (SE_BACKUP, SE_RESTORE) are applied. All systems are 64-bit.
    Generally even system registry editor (regedit) could not open SOFTWARE hive  from Windows 8.1 with following error:
    Cannot Load f:\Windows\System32\config\software: Error while loading hive.
    But when host system is Windows 7 or Windwos Server 2008 then SOFTWARE hive  loaded without any problem. 
    So is there some Windows 8/8.1 registry hives validation mechanism or additional security checks tha prevents load of registry hives fromother OS instance?

    Sorry for later response. I was busy with other tasks.
    The procMon tool shows RegLoadKey is failed when it tried to load the hive on Windows 8.1 (8.1 based WinPE also). On Windows 7, I didn't see the error (Shows Success instead of REGISTRY CORRUPT). Once the hive is load & unloaded on Windows 7 OS, the
    check sum of the hive is changed, and I can load the updated hive with regedit in Windows 8.1 OS.
    "reg.exe","752","RegCloseKey","HKLM\SOFTWARE\Microsoft\SQMClient\Windows","SUCCESS",""
    "reg.exe","752","RegQueryKey","HKLM","SUCCESS","Query: HandleTags, HandleTags: 0x0"
    "reg.exe","752","RegOpenKey","HKLM\Software\Microsoft\Rpc","SUCCESS","Desired Access: Query Value"
    "reg.exe","752","RegQueryValue","HKLM\SOFTWARE\Microsoft\Rpc\IdleTimerWindow","NAME NOT FOUND","Length: 144"
    "reg.exe","752","RegCloseKey","HKLM\SOFTWARE\Microsoft\Rpc","SUCCESS",""
    "reg.exe","752","QueryNameInformationFile","C:\Dhoni","SUCCESS","Name: \Dhoni"
    "reg.exe","752","RegQueryKeySecurity","HKLM","SUCCESS",""
    "reg.exe","752","RegLoadKey","HKLM\target1","REGISTRY CORRUPT","Hive Path: C:\Dhoni\SYSTEM1"

  • Installing driver on windows server 2012 R2 in VAIO-VPCEH38FN model

    Hi,
    Q1. I'm using Windows server 2012 R2.  How can I install ethernet driver,Wifi Driver, Bluetooth driver etc in my VAIO laptop. can i install or not?
    Q2. can i install one Windows 7 and another Windows server OS in same drive?
    Please reply soon.. Thank you!
    Rajnikant

    Hi Rajnikant,
    >>>Question1
    As Dave have mentioned above, we may need to consult with the manufacturer of the laptop.
    >>>Question2
    If you want to create a multi-boot system, please refer to the link below,
    http://technet.microsoft.com/en-us/library/ee829686(v=WS.10).aspx
    Best Regards.
    Steven Lee
    TechNet Community Support

  • WSUS Role Failing on Windows Server 2012

    Hi Team,
    A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider:
    SQL Network Interfaces, error: 25 - Connection string is not valid)
    When we enablling the role on WIndows server 2012, I got the error like
    Instance Name Properly doest not exist
    Paramater name : ConfigurationStore 
    But SQL server is working fine

    When we enablling the role on WIndows server 2012, I got the error like
    is this question related to WSUS + SUP + CM 2012 ? If so, some help from
    here?
    Anoop C Nair -
    @anoopmannur :: MY Site:
     www.AnoopCNair.com ::
    FaceBook:
     ConfigMgr(SCCM) Page ::
    Linkedin:
     Linkedin<

  • 70-410 installing and configuring windows server 2012

    I know this exam goes as credit toward a windows server 2012 mcsa.  But, after passing it, will you be an mcp windows server 2012?  Or do you get any other designation from passing the test?

    You will have MCP, the next test will not get MCP unique for so you can download or view a page that contains all the tests you have passed (at the site
    microsoft.com/mcp)
    Of course after three tests you get MCSA, if you add two more will also receive MCSE.
    Please Mark This As Answer if it helps to solve the issue
    Tzuri Ben Ezra | My Certifications:
    CompTIA A+ ,Microsoft MCP, MCTS, MCSA, MCITP
    |
    FaceBook: Tzuri FaceBook | vCard:
    Tzuri vCard | 
    Microsoft ID:
    Microsoft Transcript 
     |

  • Install fails on Windows Server 2003

    Windows Server 2003 SP2
    Installation disappears after the copying step is completed and then the "*Publishing Product Information*" step begins
    In the log file, after the following line, the copied files are deleted and the registry entries are removed.
    InstallFinalize. Return value 2.
    Anybody have an idea how to get around this? We tried granting the "Impersonate a Client After Authentication" privilege to the Local user in the Administrators group doing the installation, to no avail.

    After the user logged off and then back on the "Impersonate" privileges took effect and the install completed successfully.

  • How to install itunes on windows server 2012

    I am trying to instal  itune on my server please help me

    Hi,
    Just checking in to see if the suggestions were helpful. Please let us know if you would like further assistance.
    TechNet Subscriber Support
    If you are
    TechNet Subscription
    user and have any feedback on our support quality, please send your feedback
    here.
    Cataleya Li
    TechNet Community Support

Maybe you are looking for

  • 9 days and counting with no solution...thanks verizon

    8/24, all three of my tvs start experiencing pixelation where the screens constantly cut in and out along with the sound.  I try the support center provided through the menu section.  I try all trouble shooting methods and none fix the problem.  The

  • My camera is no longer able to take macro pics

    Title says it all. After 4.4 my camera can no longer take Macro photos. Everything at very close range comes out blurry, regardless of lighting. This is absolutely terrible, as taking macro photos is pretty much my favorite use of the Z1 camera. Has

  • Does the RFFOEDI1 program has any implication on the ACH direct deposit?

    Hi all, Can any one please explain the use of RFFOEDI1 program. Is this program used just to generate I-Doc? Scenario: For Check payment method(C) Once F110 run is successful, then we have to run RFFOUS_C program to generate checks. Once this program

  • Songs wont go on my ipod

    My sister and I each got an ipod shuffle. mine works, on my computer, and the songs transfer wonderfully. my sister's song transferred the first time loaded, and we went to put some new different songs on, and they wouldn't go on. the song list would

  • What is a DomParser/SaxParser?

    Hi all, I need to parse a couple of html files to make some changes to the tags. I was just going to use a simple bufferedReader/BufferedWriter with a sub string replacement method....but somebody suggested the use of a parser. Specifically a SaxPars