Archive for 2009

How to solve “Error 2738” or “Internal Error 2738”

Symptoms
The following error messages are displayed:

  • Error 2738
  • Internal Error 2738
  • Error 2738. Could not access VBScript run time for custom action.
  • The module vbscript.dll was loaded but the call to Dll register Server railed with error code 0×80004005.

Cause

Error 2738 and error 2739 are usually generated when you attempt to install Certificate Lifecycle Manager (CLM) client on your computer. You may also encounter this error message while installing certain third-party applications on Windows Vista.

This error message indicates that the VBScript engine is not currently registered on the machine where the install/uninstall is taking place.

Resolution
The easiest way to fix “Error 2738”:
Click here to download Perfect Optimizer; install this repair tool, and click the “Repair All” button. Then you are done!

To fix this problem manually, try the following steps:

1. Click “Start” button, then click “Run”;
2. Type “regsvr32 vbscript.dll” (Please exclude quotation marks) in the text-box, then click “OK” button;
3. Reinstall your programs.
4. We strongly recommend that you download this tool and have a free diagnostic scan for your PC: Click here to free download.

Fix “Windows Update not working” issue step by step

There are many reason why Windows Update fails. Here is the best solution to solve the “Windows Update not working” error. Please follow these detailed steps below, and then your windows update will work again.

Firstly, double click the time at the end of your taskbar. Make sure your computer’s date and time is set correctly. Wrong date and time often brings the “windows update not working” issue.

Secondly, have a look at your firewall software. If your firewall blocked Microsoft.com, you can’t update your windows correctly.

Thirdly, are you using a Proxy server? Open your Internet Explorer, then click “Tools” menu, click “Internet Options”, click “Connections”, click “LAN Settings”. If you are using a proxy server, uncheck “Use a proxy server” and have a try. Please NOTE: If it doesn’t work, please restore the proxy server settings.

Fourthly, download this tool(click here to download), and have a free scan. It has a One-Click Maintenance to repair computer errors. After that, your PC will work at a perfect health.

-------------------------------------------------------------------------
Windows Update Hexadecimal Error Number and Descriptions(for advanced users): 
0x800C0002, 0x800401E4 and 0x80072EE5  The address of this site is not valid. Check the address and try again. 
0x800C0003 Cannot start an Internet session. 
0x800C0004 and 0x80072EFD  Cannot connect to the Internet server. 
0x800C0005 Cannot locate the Internet server or proxy server. 
0x800C0006 and 0x80072EFC  The site reports that the item you requested could not be found. (HTTP/1.0 404) 
0x800C0007 The Internet site reports that a connection was established but the data is not available. 
0x800C0008 Cannot download the information you requested. (This is an incorrect date on your PC or a server certificate revocation!)
0x800C0009 The item you requested requires proper authentication. (HTTP/1.0 401) 
0x800C000A The Internet site cannot return the object you requested. (HTTP/1.0 403) 
0x800C000B and 0x80072EE2  The connection to this Internet site took longer than the allotted time. 
0x800C000C The site reports that the request is not valid. 
0x800C000D and 0x80072EE8  The required Internet protocol is not installed on your computer, or the Internet address you requested may not be valid. 
0x800C000E A security problem has occurred. 
0x800C000F and 0x800401EA  Cannot open the specified file. 
0x800C0010 Cannot start the program needed to open this file. 
0x800401E6 and 0x80040154  No program is registered to open this file. 
0x80004004 The hyperlink cannot be followed to the destination. 
0x801901F8 The transfer request timed out while waiting for a gateway. Resume the job at a later time. (HTTP Error 504)
0x801901F7 The service is temporarily overloaded and cannot process the request. Resume the job at a later time. (HTTP Error 503)
0x80190190 Proxy Error: Host name not recognized or host not found (HTTP Error 400) Download this patch, install, reboot and try again. Q823718 
Reference:http://support.microsoft.com/kb/555989

The easiest way to fix “Registry Editing Has Been Disabled By Your Administrator” issue

Symptom:
You receive the following message: “Registry Editing Has Been Disabled By Your Administrator”. If you get this message, please don’t worry. You can perform the easy steps below to repair your registry.

Cause:
The error is often the result of malware. They modified your registry and disabled the registry editor. They not allowing you to edit the registry, so you can’t restore the modified registry.
These malware could make your computer infected and unstable. So you should repair the issue ASAP.

Note: If you are not the administrator of your computer, please contact the administrator if you want to edit the registry.

Resolution:
The easiest way to fix this issue is to use professional registry repair tools. Perfect Optimizer is a good choice. With this tool’s help, you can fix the “Registry Editing Has Been Disabled By Your Administrator” issue by three easy steps:

  1. Download and install this registry repiar tool(Click here to download).
  2. Click the “Perfect Optimizer” icon to run the program, then wait for the scan process to end.
  3. Click the “Repair All” button, then the “Registry Editing Has Been Disabled By Your Administrator” issue has been fixed.
Other Resolutions (For Advanced Users):
Method 1:
Click “Start” button, then click “Run”. Type:”REG add HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System /v DisableRegistryTools /t REG_DWORD /d 0 /f”(without quotes) and click “OK”.
Method 2:
1. Click “Start” button, then click “Run”
2. Type “GPEDIT.MSC”(without quotes) and Press Enter
3. Go to the following location:
User Configuration -> Administrative Templates -> System
4. In the “Settings” Window, find the option for "Prevent Access to Registry Editing Tools" and double-click on it to change.
5. Select “Disabled or Not Configured” and click “OK”
6. Close the “Group Policy Editor” and restart. Then you are done!
Method 3:
Getting into the registry editor by making a vbs script in notepad: 

Open Notepad and copy this script into it. And save it as regtool.vbs on your desktop. VBS SCRIPT(select everything and copy into notepad and save as regtool.vbs): Option Explicit ‘Declare variables Dim WSHShell, rr, rr2, MyBox, val, val2, ttl, toggle Dim jobfunc, itemtype On Error Resume Next Set WSHShell = WScript.CreateObject(”WScript.Shell”) val = “HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System\DisableRegistryTools” val2 = “HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\System\DisableRegistryTools” itemtype = “REG_DWORD” jobfunc = “Registry Editing Tools are now ” ttl = “Result” ‘reads the registry key value. rr = WSHShell.RegRead (val) rr2 = WSHShell.RegRead (val2) toggle=1 If (rr=1 or rr2=1) Then toggle=0 If toggle = 1 Then WSHShell.RegWrite val, 1, itemtype WSHShell.RegWrite val2, 1, itemtype Mybox = MsgBox(jobfunc & “disabled.”, 4096, ttl) Else WSHShell.RegDelete val WSHShell.RegDelete val2 Mybox = MsgBox(jobfunc & “enabled.”, 4096, ttl) End If Open regtool.vbs And there you go!

3 Easy Steps to Make Sim 3 Run Faster

sim 3 freezes

Q: I brought the Sim 3 game today. I have a PC with Core 2 2.0Ghz and 1Gb RAM. Sometimes while playing Sim 3 it will freeze. I close everything before I start playing. How can I solve this problem?

A: You should to optimize your pc for peak performance, after that you will run Sim 3 smoothly. Just following these easy steps:

  1. Download and install “Perfect Optimizer”. It’s a good tool which can optimize your CPU, RAM and boost your Sim 3 game performance up to 300%. Click here to free download.
  2.  Install and run the program. It’s very easy to use, just click the “Optimize” button on the menu is ok.  Then the Sim 3 will run much faster.
  3.  After that, upgrade your video card driver could also increase computer performance. Here’s a list of video card manufacturers along with the link to their driver update page. Make sure that you select the correct driver approprirate for your video card’s model.
    • ATI Technologies Inc. http://www.atitech.com/support/driver.html
    • Intel http://downloadfinder.intel.com/scripts-df/support_intel.asp
    • Nvidia http://www.nvidia.com/content/drivers/drivers.asp
    • S3 Graphics http://www.s3graphics.com/drivers.jsp
    • SiS http://download.sis.com/

Hope this helps.

How to Fix the “msvcp71.dll not found” Error

The msvcp71.dll errors could  show up on your computer in many different ways. Here are some common ways that you might see msvcp71.dll errors:

  • “Msvcp71.dll Not Found”
  • “This application failed to start because msvcp71.dll was not found. Re-installing the application may fix this problem.”
  • “Cannot find [PATH]\msvcp71.dll”
  • “The file msvcp71.dll is missing.”
  • “Cannot start [APPLICATION]. A required component is missing: msvcp71.dll. Please install [APPLICATION] again.”

Registry errors cause 90% of “msvcp71.dll not found” error. We strongly recommend that you download Perfect Optimizer, and have a free scan.

Sometimes, there is an easy way to fix the “msvcp71.dll errors”. You can have a try:

  1. Click “Start” button.
  2. Click “Run”
  3. Type “regsrv32 C:\WINDOWS\system32\msvcp71.dll” (without the quotes), then click “OK” button.

This method could re-registering msvcp71.dll. It is worth a try. If it doesn’t work, please download this tool to fix the error. The tool is very easy to use, just download, click the “Scan” button, then click “Repair”. After that, your PC will be in perfect health.

Fix Blue Screen of Death As Easy As 1-2-3

Ever get “Blue Screen of Death” and don’t know what to do with it?

“Blue Screen of Death”(BSOD), a.k.a. “Windows Stop Error”. They are very common for millions of computer users.

There are several reasons it could have shown itself, the most common is the installation of a driver or other program onto the computer. So if you have occurred Blue Screen of Death after you installed some programs or drivers, then either uninstall them, or do a system restore.

Here is a simple way which could fix 96% of Blue Screen of Death issues.
1. Download Perfect Optimizer (Click here to Free Download).
With this tool, you can quickly and effectively fix the “Blue Screen of Death” issues by 1-click.
2. Install and run “Perfect Optimizer”, and wait for the scan to finish.
3. Click on the “Repair All” button.
Then you will get away with the BSOD Errors.

The BSOD Codes (For Advance Users):
• Stop 0×00000003 UNSYNCHRONIZED_ACCESS
• Stop 0×0000000A IRQL_NOT_LESS_OR_EQUAL
• Stop 0×0000001E KMODE_EXCEPTION_NOT_HANDLED
• Stop 0×00000023 FAT_FILE_SYSTEM
• Stop 0×00000024 NTFS_FILE_SYSTEM
• Stop 0×0000002E DATA_BUS_ERROR
• Stop 0×0000003F NO_MORE_SYSTEM_PTES
• Stop 0×00000044 MULTIPLE_IRP_COMPLETE_REQUESTS
• Stop 0×00000050 PAGE_FAULT_IN_NONPAGED_AREA
• Stop 0×0000006B PROCESS1_INITIALIZATION_FAILED
• Stop 0×00000073 CONFIG_LIST_FAILED
• Stop 0×00000074 BAD_SYSTEM_CONFIG_INFO
• Stop 0×00000076 PROCESS_HAS_LOCKED_PAGES
• Stop 0×00000077 KERNEL_STACK_INPAGE_ERROR
• Stop 0×00000079 MISMATCHED_HAL
• Stop 0×0000007A KERNEL_DATA_INPAGE_ERROR
• Stop 0×0000007B INACCESSIBLE_BOOT_DEVICE
• Stop 0×0000007E SYSTEM_THREAD_EXCEPTION_NOT_HANDLED
• Stop 0×0000007F UNEXPECTED_KERNEL_MODE_TRAP
• Stop 0×0000008E KERNEL_MODE_EXCEPTION_NOT_HANDLED
• Stop 0×0000009C MACHINE_CHECK_EXCEPTION
• Stop 0×0000009F DRIVER_POWER_STATE_FAILURE
• Stop 0×000000BE ATTEMPTED_WRITE_TO_READONLY_MEMORY
• Stop 0×000000C2 BAD_POOL_CALLER
• Stop 0×000000C4 DRIVER_VERIFIER_DETECTED_VIOLATION
• Stop 0×000000CA PNP_DETECTED_FATAL_ERROR
• Stop 0×000000CB DRIVER_LEFT_LOCKED_PAGES_IN_PROCESS
• Stop 0×000000CE DRIVER_UNLOADED_WITHOUT_CANCELLING_PENDING_OPERATIONS
• Stop 0×000000D1 DRIVER_IRQL_NOT_LESS_OR_EQUAL
• Stop 0×000000D5 DRIVER_PAGE_FAULT_IN_FREED_SPECIAL_POOL
• Stop 0×000000D8 DRIVER_USED_EXCESSIVE_PTES
• Stop 0×000000DA SYSTEM_PTE_MISUSE
• Stop 0×000000EA THREAD_STUCK_IN_DEVICE_DRIVER
• Stop 0×000000ED UNMOUNTABLE_BOOT_VOLUME
• Stop 0×000000F2 HARDWARE_INTERRUPT_STORM
• Stop 0×000000FC ATTEMPTED_EXECUTE_OF_NOEXECUTE_MEMORY
• Stop 0×000000FE BUGCODE_USB_DRIVER
• Stop 0xC0000218 UNKNOWN_HARD_ERROR
• Stop 0xC000021A STATUS_SYSTEM_PROCESS_TERMINATED
• Stop 0xC0000221 STATUS_IMAGE_CHECKSUM_MISMATCH
• Stop 0xC0000244 STATUS_AUDIT_FAILED

2 Steps to Fix the “Street Fighter 4 Freezes” Problem

street fighter 4 freezes

Following these steps to solve the “Street Fighter 4 freezes” problem:

1, Make sure your PC meets the system requirements of Street Fighter 4. If not, please upgrade your hardware. Here are the system requirements of Street Fighter 4:

  • Processor: Pentium 4 @ 2Ghz
  • Memory: 1Gb
  • Video Card: nVidia GeForce 6600/ATI Radeon X1600
  • Video Memory: 256Mb

2, Use “Perfect Optimizer” optimize your computer for peak performance. This tool could optimize your CPU, memory and hard disk to give your computer maximum performance. Click here to download. It’s very easy to use. You can still use it even you know nothing about PC. Just click  ”Scan”  button then click “Repair All” is OK. After that, the Street Fighter 4 will run smoothly.

Awards  |  Help  |  Affiliates  |  Register  |  Privacy Policy  |  About Us  |  Login  |  Contact Us
Copyright C 2006-2009 Fix-Computer.Org. All rights Reserved.