Windows 10: logonui.exe memory error, winre doesnt load

Discus and support logonui.exe memory error, winre doesnt load in Windows 10 Ask Insider to solve the problem; I see the recent general tone about tech support posts on this subreddit and I understand it. However I’m in a desperate situation for help and have... Discussion in 'Windows 10 Ask Insider' started by /u/whatthepiccolo, Feb 27, 2021.

  1. logonui.exe memory error, winre doesnt load


    I see the recent general tone about tech support posts on this subreddit and I understand it. However I’m in a desperate situation for help and have exhausted all else options.

    I have an Asus FX505D, bought 3 months ago (new), running the latest update of windows 10. I have a 256GB SSD for storage and a single, 16GB RAM stick.

    My problem was, that out of nowhere, OneNote threw up a memory error message, asking me to restart. When I did, I was faced with the win10 login screen loaded (corner buttons, date, time, login background) and an error message from logonui.exe [tl;dr: I/O error -> data wasn’t placed into memory -> command couldn’t be executed]

    Along with this, a BIOS screen (American Megatrends) pops up every boot saying: M.2 PCIE SSD SMART status Bad, Backup and Replace F1 to continue (boots to os on f1)

    After this I tried booting up into safe mode (Shift + Restart): the screen froze till I pressed ‘Ok’ on the error message, but nothing else happened.

    Tried entering winRE by force restarting (pressing power button when windows was booting up), didn’t go once into that mode (10-12 tries, 3-5 times consecutively)

    Tried checking things in BIOS (laptop restarted on its own once, booted into bios with no boot options recognized)

    Went to Asus recovery mode to no avail (surprise)

    Unscrewed the back of the laptop, removed SSD and put it back in, same with RAM

    So basically I think my SSD is done for, which wouldn’t be great. But is an SSD failure really this common 3 months in? Also if the SSD is fucked, why does it even boot into windows and display the logonui.exe error? Maybe thats the only broken thing? Then why did the SSD just completely disconnect at one point?

    What do you guys think?

    EDIT: As automod comment #2 said ‘latest update’ is a nonhelpful description but I can’t check exact version number for the reasons above

    submitted by /u/whatthepiccolo
    [link] [comments]

    :)
     
    /u/whatthepiccolo, Feb 27, 2021
    #1
  2. Juzar_Ali Win User

    Win10 Regsvr32.exe memory cannot be read message

    Hi,

    I suggest you to run Memory Diagnostic tool and check if it helps.

    Memory Diagnostic tool is used to detect the possible memory problems.

    Follow the below steps:


    • Type Memory Diagnostic in the search area in the task bar and select
      Windows Memory Diagnostic.

    • Select Restart now and check for problem.
    The error message that you received indicates there may be some memory issues with the system (mapping the memory).

    Meanwhile, I suggest you to run System Maintenance troubleshooter to diagnose the exact issue ( slow internet etc.).


    • Press Windows key + W.

    • Type Troubleshooter in the Search box and hit enter.

    • Select System and Security.

    • Select System Maintenance under System options.

    • Follow the on-screen instructions to run the troubleshooter.
    Hope this helps. Please get back to us if you need any further assistance.

    Thank you.
     
    Juzar_Ali, Feb 27, 2021
    #2
  3. REGSVR32.exe error message saying can't use memory location 0x00------014

    Hi,

    As per the description, I understand that the Internet Explorer closes immediately after opening and you receive
    rvgsvr32.exe error. We will assist you to resolve the issue.

    As an initial troubleshooting step, I suggest you to run Internet Explorer performance troubleshooter and check if it helps to resolve the issue.

    1. Type troubleshooting in the search bar.

    2. Select Troubleshooting.

    3. Select View all on the top left corner.

    4. Click Internet Explorer
    performance
    .

    5. Follow the on-screen instructions to run the troubleshooter.

    6. Check if issue persists.

    Also, I suggest you to check if the computer is using its full memory.

    • Press Windows key + R and type msconfig.
    • Go to Advance options and check if you have chosen use Maximum memory.
    • If not, I suggest you to place a check mark, restart the computer and check if that helps.
    Hope the information helps. Let us know if you need further assistance. We will be happy to help.

    Thank you.
     
    Krishna Prasobh V, Feb 27, 2021
    #3
  4. logonui.exe memory error, winre doesnt load

    Loading an External EXE into Memory and Calling/Running the EXE from Memory as Many Times as I want

    A very good day to you All,

    I hope you are doing Very Well,

    Please kindly see the attached code for a C# Program

    This C# Program will Load an External EXE Program into Memory

    This C# Program will then do a Function Call to Run that EXE Program that sits in Memory

    The External EXE Program is an Executable that sending Keypress to the Desktop

    It does nothing except sending out keypresses to the Desktop

    The Calling Function to Run the EXE From Memory is listed below

    //Execute the assembly

    exeAssembly.EntryPoint.Invoke(null, null); //no parameters

    Is there any way for me to call the above function as many times as I want so that I can keep on running the EXE from memory as many times as I want ?

    The below code works for the 1st call to run the EXE

    On the second call to run the EXE - The code returns an error message and is not able to proceed any further

    What I would like to be able to do is to

    1) Load the EXE into Memory

    2) Set it up in such a way where I can Call the Invoke Function as many times as I wish in order to Run the External Keypress Program as many times as I wish

    Is there any way to do this ?

    Secondly I would like for the external EXE program to be able to interact with all the surrounding applications that are running on the Windows Desktop

    This is because the external EXE program is actually a program that sends out keypresses

    I am calling and running this external EXE program multiple times in order to deliver multiple keypresses many many times over

    The keypresses are to interact with any Running APP that I have opened in the Windows desktop

    And thus I would like for this keypresses app to be able to affect and interact with all the apps on the Windows desktop

    How can I modify the code so that I can allow for this external EXE to be able to interact with all running desktop apps?

    Here is the code
    ======================================
    using System;
    using System.Collections.Generic;
    using System.Windows.Forms;
    //Needed
    using System.Reflection;
    using System.IO;

    namespace MemoryLauncher
    {
    static class Program
    {
    /// <summary>
    /// The main entry point for the application.
    /// </summary>
    [STAThread]
    static void Main()
    {
    RunInternalExe("x.exe");
    }

    private static void RunInternalExe(string exeName)
    {
    //Get the current assembly
    Assembly assembly = Assembly.GetExecutingAssembly();

    //Get the assembly's root name
    string rootName = assembly.GetName().Name;

    //Get the resource stream
    Stream resourceStream = assembly.GetManifestResourceStream(rootName + "." + exeName);

    //Verify the internal exe exists
    if (resourceStream == null)
    return;

    //Read the raw bytes of the resource
    byte[] resourcesBuffer = new byte[resourceStream.Length];

    resourceStream.Read(resourcesBuffer, 0, resourcesBuffer.Length);
    resourceStream.Close();

    //Load the bytes as an assembly
    Assembly exeAssembly = Assembly.Load(resourcesBuffer);

    //Execute the assembly
    exeAssembly.EntryPoint.Invoke(null, null); //no parameters
    }
    }

    }

    ======================================
     
    One_Above_All, Feb 27, 2021
    #4
Thema:

logonui.exe memory error, winre doesnt load

Loading...
  1. logonui.exe memory error, winre doesnt load - Similar Threads - logonui exe memory

  2. Regedit Error in WinRE

    in Windows 10 Gaming
    Regedit Error in WinRE: I am trying to turn off the built in admin by going through WinRE since the normal way lusrmgr, cmd, powershell, etc. doesn't work and I don't have admin privileges. It keeps on giving me an error where it says that the process is in use by another process. I am trying to...
  3. Regedit Error in WinRE

    in Windows 10 Software and Apps
    Regedit Error in WinRE: I am trying to turn off the built in admin by going through WinRE since the normal way lusrmgr, cmd, powershell, etc. doesn't work and I don't have admin privileges. It keeps on giving me an error where it says that the process is in use by another process. I am trying to...
  4. LogonUI crashes after connecting wifi

    in Windows Hello & Lockscreen
    LogonUI crashes after connecting wifi: The bug appears if we do like this:1. Let Windows forget the wifi;2. Lock screen;3. Connect the wifi, and input the correct username and a wrong password;4. A dialog would prompt to let you input the correct password, and click 'Cancel'5. Switch users by clicking ‘Other...
  5. LogonUI crashes after connecting wifi

    in Windows 10 Gaming
    LogonUI crashes after connecting wifi: The bug appears if we do like this:1. Let Windows forget the wifi;2. Lock screen;3. Connect the wifi, and input the correct username and a wrong password;4. A dialog would prompt to let you input the correct password, and click 'Cancel'5. Switch users by clicking ‘Other...
  6. LogonUI crashes after connecting wifi

    in Windows 10 Software and Apps
    LogonUI crashes after connecting wifi: The bug appears if we do like this:1. Let Windows forget the wifi;2. Lock screen;3. Connect the wifi, and input the correct username and a wrong password;4. A dialog would prompt to let you input the correct password, and click 'Cancel'5. Switch users by clicking ‘Other...
  7. exe error

    in Windows 10 Installation and Upgrade
    exe error: my pc is win 10 pro all files not open because exe file missing please help https://answers.microsoft.com/en-us/windows/forum/all/exe-error/3243e85f-bea1-4f99-9099-3c98a9b9e1e4
  8. Loading an External EXE into Memory and Calling/Running the EXE from Memory as Many Times...

    in Windows 10 Customization
    Loading an External EXE into Memory and Calling/Running the EXE from Memory as Many Times...: A very good day to you All, I hope you are doing Very Well, Please kindly see the attached code for a C# Program This C# Program will Load an External EXE Program into Memory This C# Program will then do a Function Call to Run that EXE Program that sits in Memory The...
  9. Exe error

    in Windows 10 BSOD Crashes and Debugging
    Exe error: what does this mean and how i can fix this? (the instruction at 0x00000000759059A0 referenced memory at 0x00000000759059A0. the required data was not placed into memory because of an I/O error status of 0xc000009c....
  10. Error exe

    in Windows 10 BSOD Crashes and Debugging
    Error exe: I keep getting this error on my dell laptop and as a result, I am unable to download any programs from the Internet. How can I fix this? (the institution at 0x00000000774359A0 referenced memory at 0x00000000774359A0. the required data was not placed into memory because of...