Win xp
Results 1 to 6 of 6

Thread: Win xp

  1. #1
    Registered User xpuser357's Avatar
    Join Date
    Apr 2004
    Location
    Poplar Bluff, Mo.
    Posts
    1,328

    Win xp

    I cannot remember what you put in Run to access startup programs.
    Last thing I remember, running for the door,
    I had to find the passage back to the place
    I was before.

  2. #2
    Registered User MobilePCPhysician's Avatar
    Join Date
    Jan 2002
    Location
    Cleveland, Oh
    Posts
    2,384
    msconfig.exe
    Sergeant WOTPP

  3. #3
    Registered User xpuser357's Avatar
    Join Date
    Apr 2004
    Location
    Poplar Bluff, Mo.
    Posts
    1,328
    Thank you. one more thing when he accesses task manager it shows svchost at 98%. is that pointing out a hardware issue. ?
    Last thing I remember, running for the door,
    I had to find the passage back to the place
    I was before.

  4. #4
    Registered User MobilePCPhysician's Avatar
    Join Date
    Jan 2002
    Location
    Cleveland, Oh
    Posts
    2,384
    What is accessing the 98%? If it's system idle then you have no issues.
    Sergeant WOTPP

  5. #5
    Registered User emr's Avatar
    Join Date
    Sep 2001
    Location
    Amsterdam
    Posts
    1,312
    Quote Originally Posted by xpuser357 View Post
    Thank you. one more thing when he accesses task manager it shows svchost at 98%. is that pointing out a hardware issue. ?
    It's a known issue with XP and WU. Been around for years, gets fixed, comes back, fixed, back again, etc. https://www.google.com/?gws_rd=cr&ei...dows+update+xp

    Try this in a batch script which may or may not fix it, I've had varying success.

    @ECHO OFF


    PUSHD %~dp0


    REM Stop BITS & Windows Update services
    net stop bits
    net stop wuauserv


    REM Delete Windows Update folder content
    del /f /s /q %windir%\SoftwareDistribution\*.*


    REM Start BITS & Windows Update services
    net start bits
    net start wuauserv


    REM Run Windows Update check
    wuauclt.exe /detectnow


    exit

  6. #6
    Registered User xpuser357's Avatar
    Join Date
    Apr 2004
    Location
    Poplar Bluff, Mo.
    Posts
    1,328
    Quote Originally Posted by emr View Post
    It's a known issue with XP and WU. Been around for years, gets fixed, comes back, fixed, back again, etc. https://www.google.com/?gws_rd=cr&ei...dows+update+xp

    Try this in a batch script which may or may not fix it, I've had varying success.

    @ECHO OFF


    PUSHD %~dp0


    REM Stop BITS & Windows Update services
    net stop bits
    net stop wuauserv


    REM Delete Windows Update folder content
    del /f /s /q %windir%\SoftwareDistribution\*.*


    REM Start BITS & Windows Update services
    net start bits
    net start wuauserv


    REM Run Windows Update check
    wuauclt.exe /detectnow


    exit
    Thank you sir I appreciate your responce.
    Last thing I remember, running for the door,
    I had to find the passage back to the place
    I was before.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •