Windows 10: regkeyexw return 2 code 0

Discus and support regkeyexw return 2 code 0 in Windows 10 Software and Apps to solve the problem; hoi microsoft ik wil een game genaamd party animals opstarten krijg de fout melding rekeyexw en return 2 code 0 hoe kan ik dit oplossen ??... Discussion in 'Windows 10 Software and Apps' started by bart deboer, Nov 2, 2023.

  1. regkeyexw return 2 code 0


    hoi microsoft ik wil een game genaamd party animals opstarten krijg de fout melding rekeyexw en return 2 code 0 hoe kan ik dit oplossen ??

    :)
     
    bart deboer, Nov 2, 2023
    #1
  2. malware Win User

    Intel Updates Core 2 Quad Q9550 to E-0 Stepping

    We continue our Monday news list with another Intel story that brings to our attention information concerning the company and more specificly its 2.83GHz Core 2 Quad Q9550 chips that will move from the current C-1 to the newer E-0 stepping. The updated chips will start selling on August 22nd, featuring the following changes:
    • New SSpec and MM numbers for the converting products
    • CPUID will change from 0x10677 to 0x1067A
    • Package change to Halide free package
    Apart from that, the new stepping CPUs will not include any other changes. Of course, like most new stepping parts a BIOS update will be needed.


    Product Change Notification 108663 - 00

    Source: TechConnect Magazine
     
    malware, Nov 2, 2023
    #2
  3. malware Win User
    Intel Core 2 Duo E8400/E8500 and Xeon E3110 Moving to E-0 Stepping Next Month

    After moving all 45nm Xeon DP quad core processors from the C-O to the E-0 stepping, Intel announced today that three more 45nm processors will also be upgraded to E-0. The two desktop Core 2 Duo E8400 and E8500 plus the server Xeon E3110 CPUs will all be updated to the E-0 stepping next month. Changes that will come with the E-0 stepping include:

    • - CPUID will change from 0x10676 to 0x1067A
      - Power Status Indicator (PSI) is supported
      - PECI implementation change
      - New instructions added - XSAVE/XRSTOR
      - New ISA extension for save/restoring context of x87, SSE, and future processor state
      - New feature added - ACNT2
      - Improved mechanism for determining processor utilization. To be used for more efficient P-state determination.
      - Package change to Halide free package
    The E-0 processors will not require any BIOS updates. They'll be easily recognisable by the new sSpec numbers: SLB9J for E8400, SLB9K for E8500 and SLB9C for E3110.

    Source: TechConnect Magazine, HARDSPELL
     
    malware, Nov 2, 2023
    #3
  4. kmarx Win User

    regkeyexw return 2 code 0

    Why is WinInet's FindNextUrlCacheEntry() returning ERROR_FILE_NOT_FOUND=2 instead of ERROR_NO_MORE_ITEMS=295

    Description

    As per the title, WinInet's FindNextUrlCacheEntry() results in an undocumented error code of 2 (ERROR_FILE_NOT_FOUND) instead of ERROR_NO_MORE_ITEMS=295. Can someone explain why or suggest other ways to investigate?

    Environment

    • Windows 10
    • IE 11
    • VisualStudio 2006 (but can rebuild on VS2010)

    Synopsis

    Details further below, but the crux of the issue is that inside a loop, this code fragment:

    results in this trace output:

    If we hack our code to treat this condition similarly to ERROR_NO_MORE_ITEMS, things work as expected. If we ignore this and continue to try and get more entries, we get an infinite loop.

    Overview

    Note: for this post, I'm treating an error code of 2 as synonymous with ERROR_FILE_NOT_FOUND, but since it's an undocumented code for the API call in question the 2 may actually be from something else.

    We have a C++ ActiveX control circa VisualStudio 2006 that runs in IE. It's purpose is to do a partial IE cache cleanup for files that match the hostname of our application server. (This action is controlled by comparing version numbers between a request cookie value from the server against the one last stored on the client. The deletion only occurs when a version mismatch is detected.)

    The ActiveX control has done it's job fine for many years. But recently started failing as mentioned above. We don't know if it's due to a KB windows update or recent security initiatives, or something else. Our code properly handles the ERROR_NO_MORE_ITEMS case and terminates its work. But it treats the 2 as an error and the app doesn't continue.

    The documentation for FindNextUrlCacheEntry() is here:
    FindNextUrlCacheEntryA function (wininet.h) - Win32 apps
    The call returns true/false and sets the error code to either ERROR_NO_MORE_ITEMS or ERROR_INSUFFICIENT_BUFFER.

    Our logic:

    I can provide details but hesitate to post proprietary code. Briefly, the logic follows recommended steps for this. An example is here Caching (Windows Internet) - Win32 apptent= except that we don't deal with "cache groups". You can scroll do the the code that starts after the comment

    // Start to delete URLs that do not belong to any group.

    Our logic anyway is as follows:

    1. Get a handle to the cache via FindFirstUrlCacheEntry(), reallocating memory as needed for the entry buffer, and checking GetNextError() for success
    2. Loop over this and subsequent entries via FindNextUrlCacheEntry(), reallocating memory as needed for the entry buffer, checking for true/false return value
    3. If true: Call DeleteUrlCacheEntry() if the hostnames match and the entry isn't of type: COOKIE_CACHE_ENTRY or HISTORY_CACHE_ENTRY. Otherwise skip the entry
    4. If false: we check the value of GetNextError() and do the following:
    5. ERROR_NO_MORE_ITEMS(=259): terminate the loop and exit the ActiveX
      entry point successfully
    6. Set the return code of the ActiveX control entry point to the error code (2 in our case). The JavaScript caller tests for 0 and stops alert()'s the user of the error with instructions to call Support

    Work-around:

    The one work-around to allow the application to function is to have the user delete the entire IE cache. At this point the FindFirstUrlCacheEntry() finds nothing and the deletion loop is never entered. (Actually, this is speculation since we can't test this case explicitly. See debugging notes below.) In any case, the error doesn't occur

    Debugging efforts:

    We can force the cookie version mismatch by setting a breakpoint in the JavaScript code and manually modifying the version string before the comparison is done. This "fools" the code into calling the ActiveX control delete entry point.

    We're extremely limited here. We have only occasional access to a single PC where the problem reproduces. Efforts to remotely attach a VisualStudio debugger via msvsmon.exe allow us to see ATLTRACE (aka printf) output, but we can't get breakpoints to fire. We're instead reduced to ATLTRACE() and Sysinternals' DebugView.

    What we see is that the ERROR_FILE_NOT_FOUND acts like ERROR_NO_MORE_FILES. THat is, if we hack the C++ code to terminate the find-next/delete loop on eithe condition, it always deletes some expected files and completes without error. It's difficult to know, however, if there are really no more files or not: Manually interrogating the IE cache is tricky at best, and security measures on our PCs make it even more so. E.g. sub-folders of C:\Users\<usr>\AppData\Local\Microsoft\Windows\INetCache\Low\IE\... don't show up in a cmd or power-shell dir or ls command. Still, it does seem that the more pages of our app that we hit in the client, the more files are cleared by the ActiveX control before it finishes. A working case of this looks like this in DebugView:

    We also tried a hack that assumes that ERROR_FILE_NOT_FOUND simply means there's a cache entry there but somehow we're blocked from seeing it. That is, instead of breaking out of the loop, we instead continue in hopes of encountering other "findable" entries to possibly delete. But in this case, the loop never terminates. Here "never" means several minutes and over 2 million cases of:

    Speculation:

    Here are some admittedly weak speculations on what might be going on

    • Some security software or Windows KB patch is intervening in the C++ execution and causing SetLastError(2) to be called, smashing the documented values being set by FindNextUrlCacheEntry()
    • Our code is linking to older versions of the VisualStudio SDK and we're hitting some code skew
    • We thought about stack or register corruption but the behavior seems too reproducible for this. Still...?
    • There really is something there for FindNextUrlCacheEntry(), but security is preventing it from being visible somehow and it's "cursor" in the cache never advances
     
    kmarx, Nov 2, 2023
    #4
Thema:

regkeyexw return 2 code 0

Loading...
  1. regkeyexw return 2 code 0 - Similar Threads - regkeyexw return code

  2. regkeyexw return 2 code 0

    in Windows 10 Gaming
    regkeyexw return 2 code 0: hoi microsoft ik wil een game genaamd party animals opstarten krijg de fout melding rekeyexw en return 2 code 0 hoe kan ik dit oplossen ?? https://answers.microsoft.com/en-us/windows/forum/all/regkeyexw-return-2-code-0/13a5189d-4eb3-4d74-982b-871a1a10008f
  3. MDT : the application returned an unexpected code 2

    in Windows 10 Gaming
    MDT : the application returned an unexpected code 2: I use my MDT to deploy image to one PC and When deploy the Dell Command Update software, I got the error code:2.But the software I found has been deployed successfully on this PC....
  4. MDT : the application returned an unexpected code 2

    in Windows 10 Software and Apps
    MDT : the application returned an unexpected code 2: I use my MDT to deploy image to one PC and When deploy the Dell Command Update software, I got the error code:2.But the software I found has been deployed successfully on this PC....
  5. MDT : the application returned an unexpected code 2

    in Windows 10 Installation and Upgrade
    MDT : the application returned an unexpected code 2: I use my MDT to deploy image to one PC and When deploy the Dell Command Update software, I got the error code:2.But the software I found has been deployed successfully on this PC....
  6. Not getting Code returned

    in Windows 10 Network and Sharing
    Not getting Code returned: When trying to enter Activity when already signed in I selected text to receive a code to verify Identity but no code is being sent??? Phone # is on account and entered correctly....
  7. Transaction Failed Error 0-0-2--8

    in Microsoft Windows 10 Store
    Transaction Failed Error 0-0-2--8: [ATTACH] So today Asphalt 9 just updated the latest car hunt event and I purchased the same car hunt pack 12 for Apollo N three times, my email received the receipt from Microsoft Store and my bank balance was deducted with the same number I paid for the transactions,...
  8. Transaction Failed error 0-0-2-0--6008

    in Microsoft Windows 10 Store
    Transaction Failed error 0-0-2-0--6008: Hi, While trying to buy from Windows store I got an "Transaction Failed error 0-0-2-0--6008" message. Any idea how to resolve this? Vijay. [ATTACH]...
  9. Average that wont return #DIV/0!

    in Windows 10 Software and Apps
    Average that wont return #DIV/0!: Want =SUM(E2:D8)/D8 to ignore blank cells and not have #DIV/0! I TRIED IF(AND(ISNUMBER(E2), ISNUMBER(E8)),E2:E8/D8,"") BUT THIS DIDN'T WORK ANY SUGGESTIONS? THANKS...
  10. UWP Property BrightnessLevel returns 0

    in Windows 10 Customization
    UWP Property BrightnessLevel returns 0: Hello, Before trying to change programmatically the brighness level of a tablet, I try to get the current value by means of this VB code: Dim bo As BrightnessOverride bo = BrightnessOverride.GetForCurrentView() Debug.WriteLine(bo.BrightnessLevel.ToString) I get a value...