Error number - DETAIL - profile of Windows XP performing an operation of paging

Whenever I start my computer, I get the following at the start up error message:

Windows cannot load the user's profile, but you have logged on with the default profile for the system.
DETAILS - error running of a paging operation.

How can I solve this problem?

Try one of the following solutions to fix a user profile:

"How to recover a damaged Windows XP user profile"
  <>http://support.Microsoft.com/kb/555473 >

"Windows XP problems if your profile is corrupted"
  <>http://support.Microsoft.com/kb/326688 >

"How to copy data from a corrupted to a new profile in Windows XP user profile"
  <>http://support.Microsoft.com/kb/811151 >

Corrupt profiles are usually accompanied, if not caused by, a corruption of the file system.  A full audit of the disc with the ' / F ' or ' / R ' option is recommended after recovering or as part of the recovery.

"How to perform the disk error checking in Windows XP"
  <>http://support.Microsoft.com/kb/315265 >

HTH,
JW

Tags: Windows

Similar Questions

  • I get the error number: 0 x 80070424 Windows Update

    I get the error number: 0 x 80070424 Windows update.

    I tried everything for 2 days. When, as was suggested, I try: % SYSTEMROOT%\SYSTEM32\REGSVR32. EXE, % SYSTEMROOT%\SYSTEM32\WUAUENG. DLL, I get the 0 return Code 8007005 x that it's as if I can't register any dll s Please help.

    I can't turn on Microsoft essntials either, well, I can scan but not to activate the protection in real time.

    Installation of Kaspersky Anti-Virus 2012 program returns right error at the end.

    Tried safe mode and normal mode.

    I tried Kaspersky Anti-virus tool as they suggested did not find a virus

    Its similar permisions corrupted.

    I also tried re image that locked up.

    Fix MS tool could not fix the windows update

    Please help 2 days of pain...

    Original title: error number: 0 x 80070424

    http://support.Microsoft.com/kb/968002

    Error code 0 x 80070424 you describe also means "ERROR_SERVICE_DOES_NOT_EXIST".  Windows Update depends on the following two services:

    (1) Windows Update
    (2) background Intelligent Transfer (BIT)

    If it turns out that these services are disabled or missing, you will encounter this error code.  Therefore, you will need to ensure that the necessary services are available and running.  Here's how:

    1. click on Start, type services.msc in the Search text box, and then click services.msc in the list programs. If you are prompted for an administrator password or a confirmation, type the password, or click continue.

    2. double-click on Background Intelligent Transfer Service.

    3. If the starting state lists Stopped, click Start , and then click OK.

    4. double-click on Windows Update.

    5. If the starting state lists Stopped, click Start , and then click OK.

    6. double-click on my computer.

    7. If the starting state lists Stopped, click Start , and then click OK.

    8. close the Services window and try to install the updates again.

    If the Background Intelligent Transfer Service does not appear in the list of Services, click the following link to view the article on the Microsoft web site and download the update: http://support.microsoft.com/kb/939159/en-us.

    Let me know how things are going...

  • SQLError: ' #3115 error: SQL Error.', details:' no table of this type: "contact", operation: 'running', detail "

    Hello
    Simply create database SQLite Database Browser 2.0 B1 after creating the database, when I tried to connect in flash cs4 - with air 1.1 his error show me

    SQLError: ' error #3115: SQL Error.', details:' no table of this type: "contact", operation: 'run', detailID: "2013" I tried to find anywhere but does not have the solution to this "

    my code is here

    import flash.filesystem.File;
    flash.data import. *;
    import flash.data.SQLConnection;
    import flash.data.SQLStatement;
    import flash.data.SQLConnection;

    var dbFile:File is File.applicationStorageDirectory.resol vePath ("mydb.db");.
    var sqlConn:SQLConnection = new SqlConnection ();
    var sqlState:SQLStatement = new SQLStatement();
    sqlConn.open (dbFile);
    sqlState.sqlConnection = sqlConn;
    trace (status sqlConn.connected + "current"); his show 'true' here
    sqlState.text = "SELECT name FROM contact."
    sqlState.execute ();
    var resultArray:Array = sqlState.getResult () .data;

    Thanks in advance

    Hello

    I create my Adobe Air App using Flash Professional CS5 and faced with exactly the same error.

    SQLError: ' #3115 error: SQL Error. ", details:' no table of this type:"categories", operation: 'run', detailID:"2013"

    My SQLite Db was created using Firefox SQLite Manager - extension. The db file is placed in the same folder as the .fla and .swf files. The db has three tables namely: duration and activity categories. I don't understand why I get this error. I even tried to copy paste any other source code of the AS 3.0 but same error reference guide each time.

    The code below is a modified version of the code example in the documentation for reference AS 3.0. Can you suggest how the error above can be fixed?

    / You can also respond to me directly at [email protected]

    /regards

    import flash.data.SQLConnection;

    import flash.data.SQLResult;

    import flash.data.SQLStatement;

    import flash.display.Sprite;

    import flash.events.SQLErrorEvent;

    import flash.events.SQLEvent;

    import flash.filesystem.File;

    var conn: SQLConnection;

    var insertCategory:SQLStatement;

    var dbFile:File;

    //*************************************

    databaseConnect();

    //*************************************

    function databaseConnect (): void

    {

    define where the database file is located

    var appStorage:File = File.applicationStorageDirectory;

    dbFile = appStorage.resolvePath ("MyBudgetCalc.db");

    Open the database connection

    Conn = new SqlConnection ();

    conn.addEventListener (SQLErrorEvent.ERROR, errorHandler);

    conn.addEventListener (SQLEvent.OPEN, openHandler);

    trace ("dbFile.exists:" + dbFile.exists);

    conn.openAsync (dbFile);

    }

    Called when the database is connected

    function openHandler(event:SQLEvent):void

    {

    conn.removeEventListener (SQLEvent.OPEN, openHandler);

    starts a transaction

    Object (this).inputfield.text = "openHandler called..";

    conn.addEventListener (beginHandler, SQLEvent.BEGIN);

    Conn.Begin ();

    trace ("openHandler sweetness...");

    }

    Called when the transaction begins

    function beginHandler(event:SQLEvent):void

    {

    conn.removeEventListener (beginHandler, SQLEvent.BEGIN);

    trace ("beginHandler - SQLEvent message:" + SQLEvent.message);

    Object (this).inputfield.text = "called beginHandler..";

    insertCategory = new SQLStatement();

    insertCategory.sqlConnection = conn;

    insertCategory.text = "INSERT INTO categories (id, name) VALUES (', Auto')";

    insertCategory.execute ();

    insertCategory.addEventListener (SQLEvent.RESULT, insertCategoryHandler);

    insertCategory.addEventListener (SQLErrorEvent.ERROR, errorHandler);

    trace ("sweetness beginHandler..");

    }

    Called after the record of phone number is inserted

    function insertCategoryHandler(event:SQLEvent):void

    {

    insertCategory.removeEventListener (SQLEvent.RESULT, insertCategoryHandler);

    insertCategory.removeEventListener (SQLErrorEvent.ERROR, errorHandler);

    No errors so far, so commit the transaction

    conn.addEventListener (SQLEvent.COMMIT, commitHandler);

    Conn.Commit ();

    trace ("outgoing insertCategoryHandler after conn.commit ()...");

    }

    Called after the transaction validation

    function commitHandler(event:SQLEvent):void

    {

    conn.removeEventListener (SQLEvent.COMMIT, commitHandler);

    trace ("commitHandler() output: all Transaction...");

    }

    Called whenever an error occurs

    function errorHandler(event:SQLErrorEvent):void

    {

    trace ("seizure of errorHandler ()..");

    If a transaction goes, roll back

    If (conn.inTransaction)

    {

    conn.addEventListener (SQLEvent.ROLLBACK, rollbackHandler);

    Conn.Rollback ();

    }

    trace (Event.Error.message);

    trace (Event.Error.Details);

    trace ("sweetness errorHandler()..");

    }

    Called when the transaction is rolled back

    function rollbackHandler(event:SQLEvent):void

    {

    conn.removeEventListener (SQLEvent.ROLLBACK, rollbackHandler);

    }

  • Error number: 0 x 80070424 Windows Update installation

    original title: error number: 0 x 80070424, thoughts?

    When you try to update I get this error "[error number: 0 x 80070424] the website has encountered a problem and cannot display the page you are trying to show."  Is there a way to fix this?  I am running XP, if that helps.  Thanks in advance.

    Refer to the previous topic in this forum to get advice on solving your problem

    http://answers.Microsoft.com/en-us/Windows/Forum/windows_xp-windows_update/error-number-0x80070424-when-trying-to-use-Windows/960b004e-D470-E011-8dfc-68b599b31bf5

    Good luck.

  • Error number: 0x80072EFF - cannot install Windows updates

    [original title: error number: 0x80072EFF] it is said: the site has encountered a problem and cannot display the page you are trying to view. The options provided below may help you solve the problem.

    Need help I think my computer is infected, and its not let me update the latest version of windows which gives the error message

    [Error number: 0x80072EFF]
    The website has encountered a problem and cannot display the page you are trying to view. The options provided below may help you solve the problem.

    For self-help options:

    To support options:

    Hi msmzh,

    You did it of any material changes or software on the computer before this problem?

    You can follow this link & check if the problem persists:

    You may encounter temporary connection related errors when you use Windows Update or Microsoft Update to install updates

    Hope the helps of information.

  • I can't send emails on express look I get error number 0x800ccc79 I have windows xp__

    I can't send emails from outlook express, I get an 0x800ccc79 error number I have windows xp family

    For Outlook Express, post your question in the forum below:

    http://social.answers.Microsoft.com/forums/en-us/xpnetwork/threads

    Sachin Shetty

  • Error number: 0x800CCC92 trying in Windows Mail

    Windows Mail - not able to connect

    The display in the name of the customer.

    Security Windows appears

    Error: Account: 'Andrea.thirstyturfirrigation.com', server: 'pop.thirstyturfirrigation.com', Protocol: POP3, server response: '-ERR failed the connection. ', Port: 110, secure (SSL): no, Server error: 0x800CCC90, error number: 0x800CCC92

    ERROR CODE ERROR TYPE DESCRIPTION
    ------------------- ------------------------ ------------------------------------
    0x800CCC90 POP3_RESPONSE_ERROR Client invalid response.
    0x800CCC92 POP3_INVALID_PASSWORD password not valid for account.

    Please contact your email server administrator to resolve this problem.

  • Error number: 8DDD0020 from the Windows Update Catalog WEB SITE

    Error number: 8DDD0020 the Windows Update Catalog WEB site.

    This clean install Windows 7 Ultimate SP1.

    I would like to stress that this is not a malfunction of Windows Update. This works well for me.

    It's Web Site (http://catalog.update.microsoft.com/v7/site/Home.aspx), which, at the entrance, he correctly opens and gives error 8DDD0020.

    I tried various fixes but again, they were for Windows Update, which continues to work well and is not the problem.

    Also be redirected to SmartShopping.com with offers for fix.

    MS Security essentials and MS analysis tool fails to find the problems. Never installed Norton.

    Have reset IE - 11 and re-record all the DLLs of Windows Update twice.

    Please advice, thank you.

    Rolando Creagh, MD

    I understand the solution, but my problem has been resolved differently with a repair reinstall, because of another problem.

    Thanks for your interest.

    See you soon.

  • [Error number: 0x8024400A] update of Windows

    Just got this computer yesterday and is supposed to have a new installation of windows xp media center edition. Ive tried to update to SP3. Im stuck and don't know what to do so that any help out there?

    See also: http://support.microsoft.com/kb/2497281
    You may be unable to access the site Web Windows Update in Windows XP, Windows 2000 or Windows Server 2003

  • protection of the resource Windows cannot perform the operation requested in safe mode

    I had a litany of problems, from my application windows works do not, windows update does not and I wanted to make a sfc / scannow and run in safe mode but when even could not analyze I desperately need help now. I don't know if it's something that has to do with my advance care system 8

    Hello

    You can run the command SFC/scannow in normal mode without going into safe mode. And if it does not work for you, then check out third DISM command mentioned here and see if that helps:

    http://www.kapilarya.com/fix-do-Inbox-Corruption-repair-using-DISM-in-Windows-8

    Hope this helps, good luck :)

  • Windows Mail error number: 0x800CCC0F - beneficiary account an e-mail

    I have Vista, Windows Mail, and he worked for always without problems.  I use Windows Mail to retrieve electronic mail of three e-mail accounts.  The first two accounts always work - send and receive.  It hiccups on the recovery of emails on behalf of others (Comcast.net) and are not sent.  The error that says:

    Your server suddenly put an end to the connection. The possible causes for this include server problems, network problems, or a long period of inactivity. Account: "mail.comcast.net', server: 'mail.comcast.net', Protocol: POP3, Port: 110, secure (SSL): Yes, error number: 0x800CCC0F

    The Windows Security window sometimes appears first, by asking 'Please verify that the user name and the password are correct for your mail server' with username and passwork promtps.  Then I'm stuck in a vicious circle of this.

    I deleted my comcast account and recreated without result.  I have not changed the security settings.  Comcast said that I've put it in place correctly.  And it has worked for years in this way.  Any suggestions?

    A Comcast tech said to use SSL? Figures. Comcast has the worst support you can find. Follow the instructions here to the letter.

    How can I set up/configure Outlook Express, Windows Mail & Windows Live Mail to E-mail from Comcast?
    http://www.Comcast.com/customers/FAQ/FaqDetails.ashx?ID=2288

    Bruce Hagen
    MS - MVP October 1, 2004 ~ September 30, 2010
    Imperial Beach, CA

  • Same mail keeps returning in my inbox every time I open windows mail again and again. Then windows mail stops with the 0x800420CD error number see the body for more details

    These are the error messages I receive after the same mail returned again and again

    Message number 2 could not be found. Account: 'mail.three.com.au (1)', server: 'mail.three.com.au', Protocol: POP3, server response: ', Port: 110, secure (SSL): no, Server error: 0x800CCC90, error number: 0x800420CD

    3 message number could not be found. Account: 'mail.three.com.au (1)', server: 'mail.three.com.au', Protocol: POP3, server response: ' I have two more questions.  First of all, I should go online myself and apply =', Port: 110, secure (SSL): no, Server error: 0x800CCC90, error number: 0x800420CD

    I hope someone can help

    cdhill

    Connect to your e-mail server Webmail site and remove offensive messages there. Bruce Hagen ~ MS - MVP [Mail]

  • Error number: 0 x 80244019 in Windows XP Home SP2

    I just clean installed Win XP Home Edition Version 2002 SP2 on a Dell Dimension 2400.

    I am trying to install windows updates, but I get the error number: 0 x 80244019.
    I am able to browse the web via internet explorer on that computer. Connection is good.
    Please suggest how can I access the windows updates? I would like to install Service Pack 3.

    Hello

    Install SP3 by downloading and running from...

    http://www.Microsoft.com/download/en/details.aspx?displaylang=en&ID=24

    You can ignore the text which says that it is for network installations and also ignore the text informing Windows/Microsoft Update If a single update of a PC.

    If it will solve the 0 x 80244019 error is not certain. I know that this will solve other errors, but I have no specific knowledge to know if this will solve this error so please would you be kind enough to report to us on this subject?

    Tricky

    EDIT: A lot of people is now reports that SP3 fact resolve the Windows Update error 0 x 80244019

  • Error number: 0x8024D001 when you run windows update

    Here's my situation, I wiped recently my installation of Win XP Pro x 86 original seven ' 07, now running in the title error when you run windows update after reinstalling.

    A little of what I've done already;

    • http://support.Microsoft.com/kb/2497281/en-us
    • I went through the steps to download and win xp sp3 app, have always error WU (will abreviate Windows Update this for now).
    • To run Microsoft fix it found 50777 persists.
    • Has been through the steps in the method 1: save the Windows Update files. Problem persists
    • Spent by method 2: replace the folder C:\Windows\SoftwareDistribution Windows Update. Problem persists.

    Next

    Other

    • Set the firewall disabled (I know it is not recommended, but until it's resolved I leave it)
    • Internet Security in IE8 is set to medium
    • IE v8.0.6
    • IE 8 privacy set to low temperature

    Help please? :(

    First, download the .NET Framework here repair tool:
    http://www.Microsoft.com/en-GB/download/details.aspx?ID=30135

    If this doesn't fix the problem. try to run .NET Fixit recording:
    http://support.Microsoft.com/kb/976982/en-GB

    Or the other of these two should solve the problem for you, but in the case where it is not, then here are some alternatives:

  • Windows Update fails with error [error number: 0x800A0007]-which is not listed

    Windows update fails with error [error number: 0x800A0007]-which is not listed, so unable to update the system

    The other post:

    Thank you for your reply - but the problem persists - this is mopre complete info.
    The system starts well and runs - BUT I cannot now be updated because when I access "Windows Update" it always returns this error message.
    Also, none of the messages in your "appliesto" step 2 recommended link will be applied effectively.
    As far as I know - we have a standard system and I just ran again ONCE a full system virus etc check - all clean.
    Also your "Mr Fixit" was performed several times, but nothing changes.
    Because it enters the update process, and then always closes with this specific message (which as I said is NOT in your list of error messages), which SHOULD tell your software writers where is the problem.
    This is what is happening in the process of updating before it fails:
    Keep your computer up-to-date
    Check to see if you need updates for Windows, your programs, your hardware or your devices.

    Get updates of high priority (recommended)  

    Select among the priority and optional updates for Windows and other programs

    ... and it does not matter if I say "express" or "custom" - headed then:

    Checking for updates for your computer...

    but fails after a few seconds with the same message as follows:
    [Error number: 0x800A0007]
    The website has encountered a problem and cannot display the page you are trying to view. The options provided below may help you solve the problem.

    -However, it is the State of the system for more complete information for you:
     
    Name of the operating system Microsoft Windows XP Home Edition
    Version 5.1.2600 Service Pack 3 Build 2600
    Manufacturer of operating system Microsoft Corporation
    MISCHU06BLUE system name
    System manufacturer Compaq Presario 061
    ED865AA - ABA SR1610NX NA540 system model
    System Type X 86-based PC
    Processor x 86 family 15 model 47 Stepping 2 AuthenticAMD ~ 1790 Mhz
    Version/Date BIOS Phoenix Technologies, LTD 3.33, 17/08/2005
    SMBIOS Version 2.4
    Windows C:\WINDOWS directory
    System directory C:\WINDOWS\system32
    Boot Device \Device\HarddiskVolume2
    The local United States
    Hardware Abstraction Layer Version = "5.1.2600.5512 (xpsp.080413 - 2111).
    MISCHU06BLUE\Compaq_Owner user name
    Time zone Pacific Daylight Time
    Total physical memory 1 024,00 MB
    Available physical memory 468,50 MB
    Total virtual memory 2.00 GB
    Available virtual memory 1.96 GB
    Page file space 1.51 GB
    Paging file C:\pagefile.sys

    Please get us some help to solve this problem.
    What else can I provide?

    I didn't ask if it was a new issue or a new problem, I asked if she was the same computer?

    [This applies to your recent 'me, too' answer to another thread.]

Maybe you are looking for