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"

Similar Messages

  • Performance counter registry hive consistency failed

    Hi everybody,
    i just bough a tablet from China running Window 8.1 32 bit os sytem. 
    i tried to install sql server 2008 rs but i got this error, performance counter registry hive consistency failed
    i tried to google the result but i got stuck.
    i open the registry and under Peflib i have following folders
    _V2Provider
    009
    0804
    currentlanguage
    under the 009 and currrenlanguage i can see counter and help
    but under _V2Provider and 0804 it was emthy, i was trying to find the way to copy it from other folders but i dont know how.
    please help me to solve this problem so i can go on installing the sql 2008r2
    thanks

    Hello,
    Please try the solutions and workarounds contained on the following resources:
    http://www.thewindowsclub.com/performance-counter-registry-hive-consistency-check
    http://cc.bingj.com/cache.aspx?q=http%3a%2f%2fwww.thewindowsclub.com%2fperformance-counter-registry-hive-consistency-check+&d=4716481039762124&mkt=en-US&setlang=en-US&w=DuZLAhe5tCpgzrvY7gDTglyZBBlX52os
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • RSL Load Failed on SSL Server

    Have problems with the Security in Flash i think.
    have a App witch runs perfect from inside the Firewall
    due to Company rules i have to pass from outside via a SSL
    Server.
    Now my CF Flash Form App didn't load properly. Says after 40%
    "RSL Load Failed!"
    try to fix it with code found in Flash article "Security
    Changes in MM Flash Player 7"
    <CFFORM name="form" format="flash" width="100%"
    height="168" skin="haloblue" onLoad="initForm()"
    wmode="transparent" style="margin:0; padding:0; backgroundAlpha:
    0;">
    <cfformitem type="script">
    function initForm()
    alert("security loading");
    System.security.loadPolicyFile("
    http://server.from.int/licportal/crossdomain.xml");
    </cfformitem>
    <CFOUTPUT query="get_news">
    <CFFORMITEM type="html">
    <A href="#get_News.link#" target="_blank">
    <FONT face="Verdana, Arial, Helvetica, sans-serif"
    size="10"><B>#get_news.title#</B><BR
    /></FONT>
    <FONT face="Verdana, Arial, Helvetica, sans-serif"
    size="10">#get_news.description#</FONT>
    </A>
    <P><IMG src="images/dotline-250-006699.gif"
    name="image" width="100%"/></P>
    </CFFORMITEM>
    </CFOUTPUT>
    </CFFORM>
    crossdomain.xml File Content:
    <cross-domain-policy>
    <allow-access-from domain="server.from.int"
    secure="false" />
    <allow-access-from domain="*" secure="false" />
    </cross-domain-policy>
    found out, that alert does not appear there for my
    ActionScript was not yet Executed.
    Please Help me out.

    Aprophis,
    I am experiencing the same problem. My company too uses an
    SSL server to allow access to our intranet externally. I believe
    the product is part of Sun One, the guys in charge of it call it
    the rewriter. To me it is a black box which I cannot obtain any
    debugging from.
    Here's what I've found so far:
    1. The SSl "rewriter" reformats all
    urls from http:intranet.mycompany.com to
    https://rewriter.mycompany.com/
    http://intranet.mycompany.com.
    I've found it didn't rewrite <param name='src'
    value='/1695237829.mxml.cfswf'/> and the flash control didn't
    load at all. So I copied the code it generated from view source and
    pasted it below. Now I get the blank space where the flash should
    be and then a copy of it which generates the error,
    RSL Load Failed! 40%.
    2. According to
    a
    discussion on WebmasterKB, the mx code generated has a relative
    path to the CFIDE directory. By CFDUMPing the form
    (var="#formname#") I was able to obtain the mx code. I pasted it
    above the object code that was generated by cfform described in #1
    and wrapped it in CFSAVECONTENT variable="formname". I found the
    code that said, rsl="/CFIDE/scripts/cfform.swc" and modified it to
    be https://rewriter.mycompany.com/
    http://intranet.mycompany.com/CFIDE/scripts/cfform.swc.
    Unfortunately this did not fix the problem.
    3. I also found formScope.send was
    pointing to a relative URL and edited that too, but still no
    luck.
    Have you resolved your problem yet? If, so please share your
    solution. Anybody else out there have ideas on how to solve
    this?

  • SSIS modules created with VS2013 fail on SQL Server 2012

    HI all,
    i've just installed SQL Server 2012, VS 2013 (Premium) and SQL Server Data Tools (SSDTBI_VS2012_x86_ENU) on my local workstation (running Win7 x64).
    Creating and debugging of new SSIS modules works well, while execution of the module using DTEXEC fails with:
       Description: Package migration from version 8 to version 6 failed with error 0xC001700A "The version number in the package is not valid. The version number cannot be greater than current version number.".
    How to create SSIS modules with VS2013, which are executable on SQL Server 2012?
    Any help is appreciated!
    Thank you in advance!
    Details:
    D:\tmp>dtexec /f Package_by_vs2013.dtsx
    Microsoft (R) SQL Server Execute Package Utility
    Version 11.0.2100.60 for 64-bit
    Copyright (C) Microsoft Corporation. All rights reserved.
    Started:  12:48:51
    Error: 2014-04-09 12:48:52.69
       Code: 0xC001F02A
       Source: Package
       Description: Cannot create a task from XML for task "Execute SQL Task", type "Microsoft.ExecuteSQLTask" due to error 0x80070057 "Falscher Parameter.".
    End Error
    Error: 2014-04-09 12:48:52.69
       Code: 0xC0010018
       Source: Execute SQL Task
       Description: Failed to load task "Execute SQL Task", type "". The contact information for this task is "Execute SQL Task; Microsoft Corporation; SQL Server 2
    014; ? 2014 Microsoft Corporation; All Rights Reserved;http://www.microsoft.com/sql/support/default.asp;1".
    End Error
    Error: 2014-04-09 12:48:52.72
       Code: 0xC0010026
       Source: Execute SQL Task
       Description: The task has failed to load. The contact information for this task is "Execute SQL Task; Microsoft Corporation; SQL Server 2014; ? 2014 Microsof
    t Corporation; All Rights Reserved;http://www.microsoft.com/sql/support/default.asp;1".
    End Error
    Error: 2014-04-09 12:48:52.72
       Code: 0xC0024107
       Source: Execute SQL Task
       Description: There were errors during task validation.
    End Error
    Error: 2014-04-09 12:48:52.72
       Code: 0xC0010025
       Source: Package
       Description: The package cannot execute because it contains tasks that failed to load.
    End Error
    DTExec: The package execution returned DTSER_FAILURE (1).
    Started:  12:48:51
    Finished: 12:48:52
    Elapsed:  1.123 seconds

    Hi,
    I have moved this thread to
    SQL Server Integration Services forum for better support.
    Best regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Which role do I need DFS or File server on fail over cluster server 2012 R2?

    what I want to achieve is that I want to share all my user data files in a central location and to be highly available all the time whether it's a general share or folder redirection data. BUT I'm a bit confused;  I have fail over cluster  set-up
    on server 2012, now I would like to add DFS as a role but than we have another role called File server and virtually it does the same thing as DFS? Means it creates a namespace share that can be access even one of the nodes goes down. Now I am thinking is
    that DFS does the replication between two physical location but fail over cluster works slightly differently  and with file server it pretty much does the same thing except for replicating data from one drive to another. Now what do you suggest I do or
    did I get the concept wrong like a noob?

    DFS and Failover Clustering for file shares provides a similar end result for file access, but they are significantly different implementations.
    Clustering provides high availability to files by presenting shared access to set a files served from a cluster.  With 2012 R2 Microsoft added the ability to create a Scale-out File Server that even allows all nodes of the cluster to server access to
    the files for a higher level of performance and other great things.  Bottom line with Failover Clusters for files is that there is a single copy of the file presented from the cluster.
    DFS on the other hand provides high availability to files by presenting multiple copies of the file by making a copy in two or more locations and presenting a naming space that allows access to the file through any of the network paths.  DFS works very
    well for files that are primarily read-only.  When you get into a situation where there is a lot of updating of the shared files, DFS is not a very good solution.  There are ways to implement DFS for read/write files, but it generally requires a
    good knowledge of how the files are used and how you want to manage them.
    The key to answering your question comes in your first sentence "I want to share all my user data files in a central location and to be highly available all the time".  My initial reaction to this is that central location means Failover Cluster
    - there is only a single copy of the file.  However, "all the time" can be compromised by network failures to the central site.  Remote sites would not have access if they can't access the central site.  DFS provides the ability to
    have copies remotely, but then if you allow updating at multiple sites, you have to manage the merging of the changes, among other things.
    . : | : . : | : . tim

  • Create Assembly fails in SQL Server 2012 SP1 if an assembly is built with Platform Target as AnyCPU

    Environment:
    Windows 2008 R2.
    SQL Server 2012 SP1 64 bit.
    I have a .NET assembly built using .NET Framework 4.0 with Platform Target set to AnyCPU and Unsafe options. The assembly has dependency on few other assemblies and has unmanaged code also. When I run CREATE ASSEMBLY for this assembly I get the following
    error message.
    Assembly '<assembly name>' could
    not be installed because existing policy would keep it
    from being used.
    However if I change the compile option to x64 instead of AnyCPU, I can successfully create the assembly. So my question : Does SQL Server 2012 64 bit requires assemblies that have Unmanaged code or makes calls to native libraries need to be built using x64
    bit option? AnyCPU should not be used?
    Thanks in Advance

    Hello,
    The default setting of a Visual Studio project is "Any CPU".SO on a 64 bit system this means the program will automatically run as a 64 bit application and on a 32 bit system it will automatically run as a 32 bit application. But if you have a dependency
    assembly which is either x86 or x64, technically your project is therefore not "Any CPU" compatible. 
    According to BOL: If the the assembly is 100% type safe which there is no dependencies on native code or COM objects and that there is no 'unsafe' code, it is possible to take the .NET executable
    that you run on your 32-bit machine and move it to the 64-bit system and have it run successfully.
    In your case, the issue may caused by the unsafe code and you should spcify the platform target to X64 to make is run on the 64 bit system.
    Reference:http://www.hanselman.com/blog/BackToBasics32bitAnd64bitConfusionAroundX86AndX64AndTheNETFrameworkAndCLR.aspx
    Regards,
    Fanny Liu
    If you have any feedback on our support, please click here. 
    Fanny Liu
    TechNet Community Support

  • Cannot uninstall sql server 2012 on Windows 7

    This is the error a co-worker gets when trying to uninstall SQL Server 2012. She is running Windows 7 Professional
    Service Pack 1, 64 bit OS. She had SQL 2008 installed and then installed 2012 Enterprise as well, because she needed it for a project. The problem is we don't have a license for local instances of Enterprise, so we need to install it. However,
    2012 Setup is telling us we don't have the minimum requirements to *install* 2012. Which leads to some interesting questions:
    1) Why does the 2012 installer allow you to install but not uninstall when you don't meet system requirements?
    2) How does that make any sense?
    3) Does she really need to install more software to be able to uninstall? Since SP1 is already installed, what would that be?
    Thanks!
    Joe

    Hello,
    In theory, if Windows 7 has SP1 then it is compatible with SQL Server 2012.
    Please try to use the procedure explained on the following article:
    http://msdn.microsoft.com/en-us/library/ms143412.aspx
    If that article does not help, please perform the following steps to manually uninstall SQL Server 2012:
    1. Uninstall all SQL Server 2012 components you can using Control Panel -> Programs and Features
    2. Backup the registry.
    3. Delete the following keys in regedit:
    --HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server
    --HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MSSQLServer
    4. Go to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall and delete all the sub-keys referencing SQL Server.
    5. Go to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services and delete all the keys referencing SQL Server.
    6. Rename all the SQL Server folders in the computer like
    C:\Program Files\Microsoft SQL Server and subfolders.
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • Manage Server 2012 Backups from Windows 8.1

    Hello,
    I am trying to find out if it is possible to manage server 2012 backups from a windows 8.1 workstation via GUI or is the CLI the only option?
    I found a few articles online that mention to use a computer management console > storage > backup (but from what I know it only works if you're connecting from a 2012 server itself)
    Thank you in advance!

    Hi,
    We cannot manage server 2012 backups from a windows 8.1 workstation. Ye may need to use Remote Desktop Connection to access server 2012 from windows 8.1 workstation. In additional, we could manage server 2012 essential backups using dashboard on Windows
    8.1 workstation.
    For more detailed information, please refer to the article below:
    Get Connected in Windows Server Essentials
    http://technet.microsoft.com/en-us/library/jj713510.aspx
    Best Regards,
    Mandy
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Failed to load DLL: HSAPI during Software Installation of Palm TX for Windows XP

    I have been attempting to load Palm TX software for Windows XP and receive error number: 0x80040702 Failed to load DLL: HSAPI.  I am able to download the zipped software from the Palm site.  After unpacking and beginning installation, I receive the error mentioned above.  Any ideas?
    Thanks!
    Post relates to: Palm TX

    I have been trying to REinstall PalmOne (on to Windows XP) and getting precisely the
    same message  ie  'error no 0x80040702 - failed to load dll:HSAPI'   ...  nobody seems to be able to help.
    Any suggestions please ???

  • How to resolve "Performance counter registry hive consistency check" failed?

    I want to install SQL Server 2008 November CTP Developer Enu. When "System Configuration Check" it shows:
    Rule "Performance counter registry hive consistency check" failed.
    The performance counter registry hive is corrupted.
    And cannot continue installing. How to solve this problem?

    I've actually solved the problem for my Vista and Win 7 (traditional chinese version).
    After revising %systemroot%\system32\WmiApRpl.ini:
    "[info]
    drivername=WmiApRpl
    symbolfile=WmiApRpl.h 
    [languages]
    004=Chinese (Traditional)
    009=English
    [objects]
    WMI_Objects_004_NAME=WMI Objects
    WMI_Objects_009_NAME=WMI Objects
    MSiSCSI_ConnectionStatistics_00000_004_NAME=iSCSI Connections
    MSiSCSI_ConnectionStatistics_00000_009_NAME=MSiSCSI_ConnectionStatistics
    MSiSCSI_InitiatorInstanceStatistics_00001_004_NAME=iSCSI Initiator Instance
    MSiSCSI_InitiatorInstanceStatistics_00001_009_NAME=MSiSCSI_InitiatorInstanceStatistics
    MSiSCSI_InitiatorLoginStatistics_00002_004_NAME=iSCSI Initiator Login statistics
    MSiSCSI_InitiatorLoginStatistics_00002_009_NAME=MSiSCSI_InitiatorLoginStatistics
    MSiSCSI_MMIPSECStats_00003_004_NAME=iSCSI HBA Main Mode IPSEC Statistics
    MSiSCSI_MMIPSECStats_00003_009_NAME=MSiSCSI_MMIPSECStats
    MSiSCSI_NICPerformance_00004_004_NAME=MSiSCSI_NICPerformance
    MSiSCSI_NICPerformance_00004_009_NAME=MSiSCSI_NICPerformance
    MSiSCSI_QMIPSECStats_00005_004_NAME=iSCSI HBA Quick Mode IPSEC Statistics
    MSiSCSI_QMIPSECStats_00005_009_NAME=MSiSCSI_QMIPSECStats
    MSiSCSI_RequestTimeStatistics_00006_004_NAME=iSCSI Request Processing Time
    MSiSCSI_RequestTimeStatistics_00006_009_NAME=MSiSCSI_RequestTimeStatistics
    MSiSCSI_SessionStatistics_00007_004_NAME=iSCSI Sessions
    MSiSCSI_SessionStatistics_00007_009_NAME=MSiSCSI_SessionStatistics
    ProcessorPerformance_00008_004_NAME=處理器效能
    ProcessorPerformance_00008_009_NAME=ProcessorPerformance
    Video_Scheduler_Statistics_00009_004_NAME=Video Scheduler
    Video_Scheduler_Statistics_00009_009_NAME=Video_Scheduler_Statistics"
    I have realized that the code 009 is for english language and 004 for chinese traditional and in my "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows
    NT\CurrentVersion\Perflib" did only exist 009 and 0404 key.
    Hence, i've created a new 004 key and copied 009 counter and help contents to this newly created key.
    Without restarting the OS, I was able to install smoothly MS SQL server express RC2.
    I'm so happy to have overcome this problem.
    But just out of curiosity does anyone know the syntax for the language codes? (009 for English, 004 for Chinese and 0404?

  • Error on install: Performance counter registry hive consistency check - Status:Failed

    Hi, I'm tryng to install sql server 2008 in win vista and in the System Configuration Check, item: Performance counter registry hive consistency check has the status FAILED  all the others items has PASSED and the setup stops here theonly option is CANCEL. Thus anyone knows the possible problem and resolution to this?
    best regards

    There is another post discussing the same issue as yours.  The subject of post is:
    How to resolve "Performance counter registry hive consistency check" failed?
    Please refer that post and see if it resolves the issue.   The bottom line is that you need to rebuild the perfmon counter, correct the bad registry key hive, and then you can install SQL Server 2008.
    If the reference of post doesn’t resolve the problem, please use “regedit.exe” to export the following registry key hive to a file, and then post the file here.
    “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Perflib”
    Once I get the file, I will try to rebuild the perfmon counter for you. 
    The tool “regedit.exe” usually exports registry keys to files with extension “.reg”.   If you post the file, please rename it to the extension “.txt” so that it can reach to the forum.
    Thanks.
    Yuhong
     

  • Unable to load the specified offline registry hive when rejoining the domain

    I have a Windows Server 2008 R2 Ent member server that we needed to clone. So we removed it from the domain, cloned it, and when we went back to join it to the domain it we get a error:  
    The Following error occurred attempting to join the domain:   Unable to load the specified offline registry hive. Please ensure you have access to the specified path location and permissions to modify its contents. Running as an elevated administrator
    may be required.
    There is nothing in event viewer and no other error message then this. I can look at my domain controller and i do see a computer object is created but its like the member server either never gets the message that its done or it can't write to the registry.
    I've disabled the firewall. I've tried to verify permission in regedit, to the best i know, and i still get this error.
    We have also tried multiple local user accounts, multiple domain admin accounts, renamed the server, changed the workgroup its in. even ran a few registry cleaners.
    Nothing works.  I need help since this server has to be online 6am Monday morning.

    Hi,
    To add the local administrators in the User Rights assignments
    1) Start>Run>gpedit.msc
    2) Computer Configuration>Windows Settings>Security Settings>Local Policies>User Rights Assignments
    3) Double click  on Back up files and directories and add the Administrators.
    4) Double click  on Restore files and directories and add the Administrators.
    5) Close  the window and reboot the machine.
    6) Try to add the machine to the domain.
    If  the issue persist, Reset the security database.
    1) Open MMC
    2) Add Security Configuration and Analysis tool
    3) Right click Security Configuration and Analysis in the left pane
    4) Select open database
    5) In the new database, type in secnew.sdb, click ok.
    6) Select setup defltbase.inf as the template to import from C:\Windows\inf, click ok.
    7) Rightclick Security Configuration and Analysis in the left pane again
    8) Select configure computer
    9) Reboot the machine.
    10) Try adding the machine to the domain.
    Hope this helps!
    Best Regards
    Elytis Cheng
    Elytis Cheng
    TechNet Community Support
    By the way folks, this is the FIX that worked for me.  No need to go re-installing the OS
    Paul E Coz

  • Offreg.lib support for Windows 8 offline registry hives?

    Hi to all!
    I'm writing a small Desktop App in C++ using QT 5.3.
    I'm able to parse offline registry hives up to Windows 7. Like described in offreg.lib documentation.
    If i try to open a Windows 8 hive OROpenHive fails telling me that it is not a registry hive.
    Is there another procedure/lib to open Windows 8 offline reg hives?
    Any help / hint would be appreciated!
    Thnx Alex

    Hi Lau,
    When there is a dot (.) in the URL, IE will prompt for credentials. Add http://intranet.domainname.com to the Intranet Zone in IE. The Intranet Zone, by default, automatically passes credentials.
    For more information, please read this article:
    Prompted for Username and Password when Opening an Office file from a Web Server
    http://blogs.technet.com/b/office_integration__sharepoint/archive/2014/02/24/users-are-prompted-for-username-and-password-when-opening-an-office-file-from-a-web-server.aspx
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • I Mini with an i7 processor. I would like to use Boot Camp to install windows based CAD software on my MAC. Would it be better to use a plugin external hard drive to load my software on and if so what hard drive would you recommend?

    I Mini with an i7 processor. I would like to use Boot Camp to install windows based CAD software on my MAC. Would it be better to use a plugin external hard drive to load my software on and if so what hard drive would you recommend?

    Thank you for your quick response. I can then use a ZIP drive for data storage. I want to keep as much of my hard drive free of data as possible.

  • Trying to install a setup on a 64 bit machine with Windows server 2012 R2 which writes to registry FAILES

    My msi is a 32 bit setup.
    When I install it on a 32 bit machine with Windows XP it works fine .
    I tried to install it on a 64 bit machine with windows server 2008 and it succeeds
    While running my setup on a 64 bit machine with Windows server 2012 R2 it failes and I get the folloawing message:
    "Registry object reference not set to an instance of an object"
    Then the setup exits and leaves the app partially installed
    I tried searching for known problems over the net, but found nothing
    I will be happy to get some advice
    Thanks
    Liora

    Sounds like you are trying to update a registry object that is not there.
    Is this your own msi, or is it from a third party application?  If third party, check with them to see if they support it on 2012 or if they have a known workaround.
    If it is your own msi, sounds like it is time to debug it.
    .:|:.:|:. tim

Maybe you are looking for

  • Why are my movies clips freezing?

    I am editing some video clips in iMovie 11 & when I hit the space bar it will play some then stop & start again. The audio is still playing & the bar skips to catch up with it. I have never had this issue before. Software is current.

  • Assign Chief Position to custom OM Object Business Unit

    Hello Is it recommended or doable to assign chief position via 012 relationship to the top most custom object Business  Unit. Currently the  chief position relationships is for Org Units. We would like to keep Chief Position to OU, also if possible t

  • No configured Airport Base Stations Have Been found-but we are connected?

    Okay, Here is an odd one...actiontec DSL Modem/Router with Airport Extreme. I applied the update, and was having problems with my external hard drive being recognized, so I reset everything-modem and airport. Now that I have, when I launch the Airpor

  • Is it possible to set a default media player for the iPhone?

    I have a music subscription with another company, therefore all my music is played through their app. When I plug my phone into my car to play music, it always opens iTunes and alerts me there is no music there so I have to open the app and select th

  • Fp service in SICF

    Hey All, I have a doubt regarding Adobe forms used for PCR.If i goto tc <b>SFP->ISR_FORM_SPPM (form name)-> Layout->XML SOURCE-> i get the following details against the line <base> : <servername><port>/sap/bc/fp/form/layout/</base></b>But in SICF, i