Monday, February 28, 2011

Fix Windows XP SP3 Installation Hangs Error

Problem:

whenever i try to install windows xp sp3 it gets to the point where it creates a restore point and hangs. i have tried it under a normal login, a safemode as admin login and a safemode as me login and every time it hangs at the same spot and every time. i have had to restart the computer via the reset button every time. and a few times on reboot my computer cant find my harddrive. is the hang a natural occurence or is there actually a problem? also where do i find the install logs?

Solution :


While SP3 still hanging

1- Start TaskManager

2- Select Process

3- Select Regsvr32.exe

4- End Process

5- Close TaskManager

You should notice an extensive hard disk activity.let it go until the end of installation and restart.

Tuesday, February 22, 2011

Fix Reboot Loop After Installing Windows XP SP3

To solve this problem you have to grab a pen, a piece of paper and the Windows XP Disc. Make a nice drinks or coffee or tea to make you feel relax...

1. Start the computer and keep tapping F8 button when the system starting until you see the "Windows Advanced Options Menu" Please select an option:
select the "Disable automatic restart on system failure" then press enter.

2. Now we're on the Blue Screen Of Death (BSOD) showing the symptom that causes the illness. Write down the name of the file....

3.Put the Windows XP Disc into CD/DVD Drive and press the reset button to restart the computer, then press any key when the system starting for the Windows XP Disc. Now you see a "Window Setup" with blue screen background and please wait until it settle down.

4. Press R for Recovery Console... We are on the "Microsoft Windows XP (TM)Recovery Console" press 1 to log on...then press enter.

5. Administrator Password is the main password when you install the Windows XP. If no main password then press enter.

6. As you can see the "C:\WINDOWS> " This is where we type the DOS COMMAND PARAMETERS ....

7. Now we have to make a backup of the file you wrote in the system folder. Type this command parameters;

CD C:\WINDOWS\SYSTEM32\

press enter

RENAME NTDLL.dll NTDLL.orig (change NTDLL.dll to the name of file you wrote)

press enter

8. Then copy the NTDLL.dll from C:\WINDOWS\SERVICEPACKFILES\I386\ to the system folder with the right command parameters:

CD C:\WINDOWS\SERVICEPACKFILES\I386\

press enter

COPY NTDLL.dll C:\WINDOWS\SYSTEM32\

press enter

To restart the computer type EXIT then press enter....

Monday, February 21, 2011

STOP: 0x0000007B, Blue Screen Error on Windows XP Start UP

Problem :

Windows XP will not open in any safe mode. It just restarts over and over until I stop it. I try "Disable Automatic Restart on System Failure" and the blue screen had these codes; I guess this is the BSOD, although I don't know what BSOD is right now. The codes were--STOP:0x0000007B (0xF78AA524, 0x0000034, 0x00000000, 0x00000000). I conclude this tells a knowledgeable person what is wrong but I don't know what it is or how to fix it. I consider myself an intermediate level person; I am comfortable with some things and others I am not. I am reluctant to make settings that I don't know what the results will be. I don't experiment.

Until this, my Toshiba L300 laptop (about a year old) worked okay; I think it has a virus as a "news 11 window" kept popping up in IE. I ran the Windows scan and it didn't find anything. I was trying to run a Norton software check which is supposed to run in the safe mode and that is when this happened.


Solution :

STOP 0x7B means INACCESSIBLE_BOOT_DEVICE.

1. First you can restart the PC and press F8 to enter the Windows XP Advanced Options Menu. Once the menu appears select "Last Known Good Configuration". See if Windows XP starts correctly. If it does restart the PC again and make sure it goes in normally.

2. The second thing you want to do is enter recovery console and run a check disk. Here is how to enter the recovery console with your Windows XP CD:

Once in recovery console you want to type

chkdsk c: /r

Then press enter. Allow ChkDsk to run and fix any errors. Restart the PC once done and see if it is now working.

3. If it still doesn't work restart the PC again and enter Recovery Console. Once in Recovery Console type the following pressing enter after each line:

Fixboot

Fixmbr

Once done exit recovery console and restart the PC.



Tuesday, February 15, 2011

Fix Windows XP Service Pack 3 installation Failed with Error Code 0x80070005

Windows XP SP3 installation may fail with the error code 0×80070005 and/or one of the following errors

Service Pack 3 setup error. Access is denied.

Service Pack 3 setup error. Service Pack installation did not complete

This is very likely a restricted registry permission in the Windows Registry. This could be caused an application like Antivius software which changs the System Access Control lists (SACL) causing this issue.

To quickly identify if it really is a registry permission issue check the

C:\Windows\Svcpack.log (or %windir%\Svcpack.log) for something similar to the following lines

DoInstallation:DoRegistryUpdates failed.
Access is denied.
Message displayed to the user: Access is denied

To fix or workaround the problem in installing SP3 would be to do one of the following:

Solution 1. Download the Service Pack 3 file directly from Microsoft Download Center and start the install to see if that helps.

Solution 2. Disable all your programs that doesn’t need be running at startup temporarily (especially your antivirus, antispyware products) and try again

Solution 3. Reset the permissions on the Registry and file by using the Subinacl.exe
Download and install the utility from here

Once installed, try the following:

1. Open notepad and paste the following text into it and save it as a cmd file (say resetperm.cmd:
cd /d “%ProgramFiles%\Windows Resource Kits\Tools”
subinacl /subkeyreg HKEY_LOCAL_MACHINE /grant=administrators=f /grant=system=f
subinacl /subkeyreg HKEY_CURRENT_USER /grant=administrators=f /grant=system=f
subinacl /subkeyreg HKEY_CLASSES_ROOT /grant=administrators=f /grant=system=f
subinacl /subdirectories %SystemDrive% /grant=administrators=f /grant=system=f
subinacl /subdirectories %windir%\*.* /grant=administrators=f /grant=system=f
secedit /configure /cfg %windir%\repair\secsetup.inf /db secsetup.sdb /verbose
or download the file Reset Permissions script
2. Run the file resetperm.cmd as an administrator. This should reset the permissions. Now, try to install Windows XP SP3 and all should work OK.