Wednesday, March 2, 2011

Fix Windows XP on BootCamp Problems

Problem :

I was installing Windows XP on Boot Camp, so I did everything normally and I felt like I didn't add enough space for Windows, but it continued installing Windows. After a while it restarted the computer and I noticed that it looks like its loading the same thing over and over again. I've tried quitting it and it says it will reboot, but every time it reboots it brings me back to the opening screen. Help?!


Solution :
Hold down the 'Control' key while booting, and it'll let you select Mac OS X to boot up, that'll at least get you working again.

I can't say for sure what the issue is with the installation... if you gave it at least 10GB of space, that is enough to install Windows. Resizing is a huge pain, and it is really difficult for the Windows OS to read things from the Mac partition, so I'd recommend making the FAT32 partition (windows) much larger, and then putting all of your data onto it, since it will be accessible from both OSes.

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.

Monday, April 12, 2010

protecting Windows 7 with Anti-Virus Program

fix-problems
An anti-virus program or software is a critical part of any Microsoft operating system that interacts with other systems, especially if it is connected to the Internet and works with browser, email, or instant messenger traffic. It looks like everyone has his or her favorite anti-virus solution and it is different from everyone else’s. For personal desktop systems, however, there are some rules of thumb that seem to be fairly universal among security experts:

Don’t run two anti-virus programs- Running two anti-virus applications at the same time is just asking for trouble. Whether it is because their real-time scanners fight over access and between the two of them can slow your PC to a crawl, or because one might misidentify virus signature files maintained by the other as actual virus infections, many problems can crop up that make using two desktop anti-virus programs effectively incompatible with each other.
Scan the entire Windows 7 PC- A real-time scanner is not enough. You should also make sure you perform full-system scans frequently, and automate the process with a scheduled nightly scan if possible. Real-time scanners only finds an incoming virus before it infects your PC if it happens to pass through a point of access that the scanner can effectively protect, and even then sometimes something might get through before there is a virus signature available for your Anti-Virus program.
Get Anti-Virus with a real-time scanner- You require an on-access, real-time scanner to ensure that some of the most common infection vectors for viruses and worms are checked live, to prevent an infection from spreading when your system first encounters the virus or worm. Real-time scanning can be a real burden on system performance, and there may be times when you would want to disable it to increase your performance, but you need to be very careful about that. Surfing the Web and checking email are not the times to turn off your anti-virus real-time scanner for extra performance.

Install your Anti-Virus program before connecting to the Internet- Any Microsoft Windows system should have anti-virus program installed before connecting to the Internet. We have seen malware insinuate itself onto a computer in less time than it took to download anti-virus software to use on the system. If you have not seen that, and you use that as evidence you do not need to worry about anti-virus until after you have opened a browser and visited to a Website where you can download Anti-virus software.

Don't trust default Anti-Virus program- Norton and McAfee, once among the most trusted anti-virus programs for Windows users. Now a days, most home desktop security experts recommend that any system that comes with any default anti-virus program get something else installed instead, as quickly as possible.
Other factors can play a vital role in protecting against virus infection, of course. A good firewall good user practices when browsing the Web, checking email, or downloading files and even Microsoft Windows 7 User Account Control can help sometimes.

Friday, April 9, 2010

Top Windows Registry Repair Program

Repairing a corrupt registry is one of the most challenging and tough tasks performed in a Windows operating system.
Before working on registry repair program you must take back up of your registry. Once you’re done with backup you can take other steps such as scan for problems, clean up invalid entries and repair damaged files. Some applications even offer you the choice to defragment and scan for viruses.
Common Registry Problems
File corruption is perhaps one of the most common registry issue experienced in a Windows operating system. Apart from file corruption, the Windows registry can have other types of issues. These issues can result in various symptoms. For instance, your system will start to perform slowly. Start-ups and shut downs also become very slow. Your computer may also suffer from errors, crashes and applications lockups. These are the symptoms that the registry has been full by too many unwanted entries.

Generally, you will see an error message when there is invalid file or entry in the registry. The error message might appear when the system is performing a task or trying to access software. You may also receive error message saying that you cannot proceed further because a system file is damaged or deleted.

The worst case scenario is when your Windows operating system doesn’t boot at startup. File corruption can be due to a virus that has damaged the Windows registry entries. It can also be due to an incompatible or faulty hardware. Other possible causes could be wrong program installation or inappropriate software.

Repair a corrupt registry


Before you try to repair the registry, you must perform a hardware scan first. If the scan detect hardware problem, all you need is just to replace the faulty hardware piece.

The problem becomes more complex in the situation that Windows denies to boot, you will have to boot from your Installation or recovery disk and try to fix the issue. You can refer to the computer manual; it may offer you the procedure for this. If the system recovery is not possible, you will have no option except to reinstall the entire Windows.

Top Windows Registry Repair Program


Most of you are not aware but there are some awesome Windows registry repair tools available on web. These tools allow you repair complex registry issues including file corruption and prevent the loss of system. These registry repair program can scan the entire registry and fix the problems.
Note: For further assistance including damaged registry issues, performing registry backup, repairing registry and fixing any registry error call iYogi technical support.