Monday 31 March 2014

Unable to turn on Firewall, receiving error: 0x80070433

If you are trying to turn on Windows Firewall and then receiving error 0x80070433 in the computer then you are in right place. You will get the process to fix error code 0x80070433 in windows from this article. When you are trying to enable Windows Firewall in internet explorer then you may receive Unable to turn on Firewall, receiving error: 0x80070433 error message. This type of error is very harmful for your computer. If you are facing these types of situation then you are in big trouble.

Some important causes of error code 0x80070433 in windows

The causes are very dangerous. This type of error occurs through attacking of malwares from the internet in your computer. It may be also if your browser is hijacked from browser hijacker. This is very critical to remove but it is necessary to remove because if you will not remove error code 0x80070433 in windows then you can face other errors and the chances of data loss may increase.










Process to fix error code 0x80070433 in windows

There are so many processes to fix this error code 0x80070433 from the computer. The processes are given step by step in below lines. First of all you have to restart the windows Firewall service and then checks the error is removed or not. To do this follows these steps.



  • First of all click on start button then type Services.msc if you are using windows 7 or vista or above versions. And then open it.
  • Now here search for Windows Firewall and then right click on Windows Firewall and then click on restart. You have also check if all the dependencies are also running to check it read below.
  • Right click on windows Firewall and then choose properties. Now click on dependencies. Here you will find all the dependencies services under the labelled box.


Apply the above given process in your computer. I have fix my pc from these processes. And then try to enable the Windows Firewall again, if you again facing this error then you have to completely scan your system. The removal of malware is very necessary if you want to fix error code 0x80070433 in windows. After scanning the computer download the latest updates of windows. After these steps you will not face these types of error message again in your computer. 


Error 0x80004001 getting when I am trying to copy files in my computer

If you are getting Error 0x80004001 in computer then you can easily remove Error code 0x80004001 from windows from given process here. Before the solution you will get the symptoms and causes of this error. When you try to copy files from NTFS volume to a fat volume then you may receive following error message.


Copy File
Invalid MS-DOS function. 
File Name
Type: File Type
Size: File Size
Data modified: Data
Try Again|Cancel

If you click on try again in the error message then you will again receive the following error message.


Copy File 
An unexpected error is preventing the operation. Make a note of this error code, which might be useful if you get additional help to resolve this problem: 
Error 0x80004001: Not implemented 
File Name
Type: File Type
Size: File Size
Data modified: Data
Try Again|Cancel

These are some causes of Error 0x80004001

When the fat file system does not support extended attribute then the Error 0x80004001 occurs in the system. The error is critical to remove. The process to fix this error is very long but easy.









Process to fix Error 0x80004001 in windows

You will get the Process to fix Error 0x80004001 in windows here. The process is very easy but long. You have to format the system drives from NTFS file system. First of all back of all data from the drive that is formatted with FAT file system. To backup it insert the external storage as your requirement and then format it from FAT file system.

Copy the all files from the drive and paste the all files into the external drive. After backup of all files now format the drive of computer by which you are getting the error. To format it right click on the drive and then look the option below in the popup menu and then click on format option. You will see the format window will appear and then choose the file system as NTFS and then click on format option. And click yes to confirmation.


It will take a few seconds and then you will receive a message of format complete and then copy all the files that you create backup into the formatted drive. And try to copy files into one drive to another you will not face the above error message again. I was fix my pc from Error 0x80004001 by this method and the error is removed from my computer.


Saturday 29 March 2014

Error "800B0001" from the HrMAPIOpenFolderEx function

You will get the solution of 800B0001 error code in windows in this page. When you are trying to open a folder by using HrMAPIOpenFolderEx function then you may receiver this error message

800B0001- MAPI_E_PROVIDER_UNKNOWN

Some causes of 800B0001 error

The error is due to invalid folder path. This is the main cause of occurring 800B0001 error. the error is also occurs through the attacking of malwares and viruses







Process to fix 800B0001 error

Due to path of the folder incorrect you have to first call to open a folder. To fix this error you have to compile a program in which the following additional libraries are require for compile the following given code.


Msvcrt.lib
Edkguid.lib
Addrlkup.lib
Version.lib
Edkutils.lib
Edkdebug.lib
Edkmapi.lib
Mapi32.lib

Aclcls.lib

Program
  •    #include <edk.h>

  •     LPMAPISESSION         lpMapiSession = NULL;
  •     LPMDB                 lpPrivStore = NULL;
  •     LPMAPIFOLDER          lpFolder = NULL;
  •     LPMAPITABLE           lpContentTable = NULL;
  •     LPSRowSet             lpRows = NULL;
  •     ULONG                 rCount = 0, i = 0;
  •     HRESULT               hr;
  •     MAPIINIT_0            MapiInit;
  •     char                  lngName[100];

  •     int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE, LPSTR pszCmd,
  •                        int nCmdShow)
  •     {
  •       MapiInit.ulVersion = 0;
  •       MapiInit.ulFlags = MAPI_NT_SERVICE;

  •       hr = MAPIInitialize( &MapiInit);
  •       if (!HR_SUCCEEDED(hr))
  •       {
  •         MessageBox(0L,"MAPIInitialize error","Error",MB_OK);
  •         return -1;
  •       }

  •       hr = MAPILogonEx( 0, (LPTSTR)NULL, (LPTSTR)"",
  •                         MAPI_NEW_SESSION | MAPI_EXTENDED | MAPI_LOGON_UI,
  •                         &lpMapiSession);
  •       if (!HR_SUCCEEDED(hr))
  •       {
  •         MessageBox(0L,"MAPILogonEx error","Error",MB_OK);
  •         return -1;
  •       }

  •       hr = HrOpenExchangePrivateStore( lpMapiSession, &lpPrivStore);
  •       if (!HR_SUCCEEDED(hr))
  •       {
  •         MessageBox(0L,"HrOpenExchangePrivateStore error","Error",MB_OK);
  •         return -1;
  •       }

  •       hr = HrMAPIOpenFolderEx(lpPrivStore,'\\',"\\Inbox",&lpFolder);
  •       if (!HR_SUCCEEDED(hr))
  •       {
  •         char szError[50];
  •         sprintf(szError, "HrMAPIOpenFolderEx error %x",hr);
  •         MessageBox(0L,szError,"Error",MB_OK);
  •       }

  •       hr = HrMAPIOpenFolderEx(lpPrivStore,'\\',
  •                         "Top of Information Store\\Inbox",&lpFolder);
  •       if (!HR_SUCCEEDED(hr))
  •       {
  •         MessageBox(0L,"HrMAPIOpenFolderEx error","Error",MB_OK);
  •         return -1;
  •       }
  •       else
  •         MessageBox(0L,"HrMAPIOpenFolderEx Successful","Error",MB_OK);

  •       if (lpMapiSession)
  •       {
  •         lpMapiSession->Logoff(0, 0, 0);
  •         ULRELEASE(lpMapiSession);
  •       }
  •       MAPIUninitialize();

  •       return 0 ;
  •     }

This is an advance program to overcome this error but this is not possible by a general user. So you can also use third party tool to overcome this error easily. The tool option is best and easy and easily handled by the common user. Only you have to download a tool and install it in your computer. Due to the graphical interface of the tool you can easily understand what you have to do. You will also get some more features from this tool just like it scans automatically your computer and show the errors and then gives you the choice to remove it or not.

So by the tool it is easy to fix my pc and remove these types of errors.


Friday 28 March 2014

Getting error message: Stop c000021a {Fatal System Error} The Session Manager Initialization System Process...

First of all I am telling you the process to fix c000021a error in windows is available in this article so take it easy and read this whole content. When you try to start the Windows NT 4.0 based system then you may receive this error message

Stop c000021a {Fatal System Error}
The session manager initialization system process terminated unexpectedly with a status of 0xc0000017 (0x00000000, 0x0000000) The system has been shut down.

Some causes of c000021a error

The main cause of the error code c000021a that is occurring in Windows NT based computer is registry error. Yes due to registry problem you are getting this error message in your computer. But you can fix this error easily from the process that is given in this article.








Process to fix c000021a error in windows

You can fix c000021a error in windows from editing some registry setting in windows. To do this you have to follow some steps that are given below.



  • First of all start the computer and then open registry editor. After that click HKEY_LOCAL_MACHINE on Local Machine that is in the windows menu.
  • Then click on Load Hive that is available in the Registry menu. Then type the path of the system hive of prior installation typically %systemroot%\system32\config\system and then click on open.
  • If you are prompted for the name of the key then you can type test and then view HKEY_LOCAL_MACHINE\TEST\Select registry entry.
  • Now note the setting of the current DWord value from the preceding registry keys. And then locate the HKEY_LOCAL_MACHINE\TEST\ControlSetXXX\Control\Session Manager Registry key where xxx is the current control set.
  • Note and delete the PendingFileRenameOperations entries that are under the Session Manager key. After that click on TEST hive and after that you have to click Unload Hive that is available on the Registry menu.
  • Now click on load Hive that is present in the Registry menu and then type the path for the software hive of the prior installation typically %systemroot%\system32\config\Software and now click on open.
  • If you again prompted for the name of key then type TEST2 here. Again remove PendingFileRenameOperations entries from the following registry sub keys.

HKEY_LOCAL_MACHINE\TEST2\Microsoft\Windows\CurrentVersion\RunOnce
HKEY_LOCAL_MACHINE\TEST2\Microsoft\Windows\CurrentVersion\RunOnceEx

  • Now you have to click on TEST2 hive and then click Unload Hive from the registry menu. And quit from registry editor and restart the original installation.
From the above given process I fix my pc easily from this error. This is the best process to fix c000021a error.

Receiving 0x00000050 Stop error when Windows tries to back up registry hives on a Windows Vista based computer

If you are thinking how to remove 0x00000050 error code in windows vista and if I am right then you are in right place. When Windows try to back up registry hives on a windows vista or windows server 2008 based computer then the computer hangs and you will receive the following error message.

Stop 0x00000050 (parameter1, 00000000, parameter3, 00000000)
PAGE_FAULT_IN_NONPAGED_AREA

In the above error the parameter depend on the system configuration. You can fix this error message here easily. This is a BSOD error. It means blue screen of death error.

Causes of 0x00000050 error in windows vista

The error generate due to registry subsystem unmaps a view that is being used when the registry is large and when memory connection occurs. This is very serious situation for your computer. This error is very critical to remove. But you can remove this error from the given process in the below paragraph.








How to remove 0x00000050 error code in windows vista

The removal of this error is not an easy process this is very critical to remove the error that is occurring in the computer. The error code 0x00000050 is overcome by system restore or system formatting. If your computer is able to start then you can restore your system. To restore it go to start button and then click on all programs after clicking on it click on accessories then click on system tools and now click on system restore. You will see the system restore window will be open. In this window click on next and then here you have to choose the restore point. You can choose the restore point here. And then click on next button. Your computer will restart automatically and your computer is restored.


If your computer is not able to start that means when you are starting then you are getting the error message in blue screen then it has to must format your computer with windows installation CD/DVD. There is no any option you have to choose. You have an option but it works when your computer starts. You can use third party tool. The tool option may helpful for you. I fix my pc from tool option and the error 0x00000050 has removed from my system. It really works very well.


Thursday 27 March 2014

Error message when you run the Chkdsk.exe utility to fix a corrupted volume on a Windows Server 2003-based computer: "Stop 0x00000024"

You can fix error code 0x00000024 in windows here but first of all you have to know symptoms and causes of the error. When you run the chkdsk /f command for fixing of corrupted drive then your computer restart that is unexpected and gives you the following error messages.


Microsoft Windows 
The system has recovered from a serious error.
A log of this error has been created. 
Please tell Microsoft about this problem.
We have created an error report that you can send to help us improve Microsoft Windows. We will treat this report as confidential and anonymous. 
To see what data this error report contains, click here.

BCCode : 00000024 BCP1 : 0019033c BCP2 : f4d7d42c BCP3 : f4d7d128 
BCP4 : f7197421 OSVer : 5_2_3790 SP : 1_0 Product : 183_0

A problem has been detected and Windows has been shut down to prevent damage to your computer.
Technical information: 

*** STOP: 0x00000024 (0x0019033c, 0xf4d7d42c, 0xf4d7d128, 0xf7197421) 
NTFS_FILE_SYSTEM

Date: date
Source: System 
Error Time: time
Category: (102) 
Type: Error 
Event ID: 1003 
User: N/A 
Computer: COMPUTER
Description: Error code 00000024, parameter1 0019033c, parameter2 f4d7d42c, parameter3 f4d7d128, parameter4 f7197421. For more information, see Help and Support Center at http://support.microsoft.com. Data: 0000: 53 79 73 74 65 6d 20 45 System E 0008: 72 72 6f 72 20 20 45 72 rror Er 0010: 72 6f 72 20 63 6f 64 65 ror code 0018: 20 30 30 30 30 30 30 35 0000024 0020: 30 20 20 50 61 72 61 6d 0 Param 0028: 65 74 65 72 73 20 66 66 eters ff 0030: 66 66 66 66 64 31 2c

Error code 0000000a, parameter1 0014f6ee, parameter2 00000002, parameter3 00000001, parameter4 80a57123. IRQL_NOT_LESS_OR_EQUAL (a)

Causes of this error

The error that are getting by you occurs due to Chkdsk.exe utility flushes the target volume. When the target volume is corrupted then this error occurs. It may be hardware or software problem.








Process to solve error code 0x00000024 in windows

The issue that is occurring in your computer is either hard disk problem or windows problem. I fix my pc from third party tool. To solve this error first you try the third party tool to solve it. You can get many features that work behalf of chkdsk utility and fix the hard disk error. If your error not solved from it then you have to change hard disk in your computer.


If you restart your computer or upgrade to Windows XP, you receive the "STOP 0x000000ED UNMOUNTABLE_BOOT_VOLUME" error message

In this article I have described about the process to solve error code 0x000000ED. If you restart your computer during upgrading windows xp or when the computer starts then you can get this error message.

STOP 0x000000ED (0xaaaaaaaa,0xbbbbbbbb,0xcccccccc,0xdddddddd)

UNMOUNTABLE_BOOT_VOLUME

In the above error message the aaaaaaaa, bbbbbbbb, cccccccc, and dddddddd are hexadecimal numbers that may change. This is very critical error of windows and it also critical to remove. If you are receiving this error then you have to remove the error code 0x000000ED urgently.


Causes of 0x000000ED error

The error that is getting by you in your computer is occurring due to damage of operating system. The operating system damage due to attacking of viruses and malwares etc. the process to fix this error is given in the below paragraph.







Process to solve error code 0x000000ED

You can repair manually of this error. The process is given step by step to fix this error message. The process is long but it so easy and simple. You have to repair your system through the windows installation disk to remove this error. You can easily follow these processes. The processes are given below.



  • Insert widows installation cd in the computer CD/DVD drive and then restart the computer. Open boot menu of your computer and then in boot order choose CD drive as first boot. And save changes and exit.
  • Press any key if you asked for it before starting. You will see the windows setup window becomes appear.
  • Here you have to choose recovery console and at the command prompt type chkdsk/r and after then press enter at the command prompt.
  • Now type exit in the command prompt and then press enter.
  • After repair the volume then check the hardware to isolate the cause of the file system damage.




From this process you can easily solve this error. The error is also solved by third party tool. This is the best option to choose. I fix my pc from third party tool. I have also got the many features from this tool. The tool gives you better result at the comparison of manual process.


Wednesday 26 March 2014

How to Fix STOP 0x0000010a Windows Error

The problem that you are getting in your windows based computer is very critical to remove. You will get the Process to fix stop error code 0x0000010a in windows operating systems from this article. You can fix all types of windows error code here. If you are getting this issue in your computer then you are in right place. You can solve this issue easily here. But before solution just a look in the causes of this error.

Causes of windows error code 0x0000010a

There are so many causes may be of this error. The windows error code 0x0000010a occurs due to registry problems. The all computer setting is available in registry files if any changes occur in this file then it generate many types of windows error like windows error code 0x0000010a. This error also comes through malwares and viruses attacks. The solution of windows error code 0x0000010a is available in the rest paragraph that is given in the below lines.







Process to fix stop error code 0x0000010a in windows

The solution of windows error code 0x0000010a is an easy process. It is easily done by all computer users. To fix this error you have to restore your computer. To restore the computer first of all click on start button then click on all programs after that click on accessories then click on system tools then click on system restore. You will see the system restore window will be open. Here you can choose the restore point from when you want to restore the computer. Then click on next button. When click on finish button then it automatically restart the computer and restore process successful.


If the error is continue occurring in your computer then you have to format your computer c drive that is very necessary for you. You can also use the third party tool to solve these types of problems. I will fix my pc from third party tool. I am facing the same error that you are facing now. But I solved my error through the tool. It provides many another features that are very useful for the computer.

This is my personal advice always use a registered antivirus in your computer that keep away your computer from such types of errors. 

Getting error message when you try to activate a copy of Windows Vista: "The Software Licensing Service reported that the license evaluation failed: 0xC004E003"

The error code 0xC004E003 in windows vista occurs when you try to activate a copy version or pirated version of windows vista in your computer. You can solve error code 0xC004E003 in vista from this website. The error code 0xC004E003 only occurs in windows vista. To solve this issue you have to read entire page. You will get the solution and causes of the error code 0xC004E003. You will get the following error message when you try to activate windows vista.

An error has occurred 
Code: 
0xC004E003 
Description: 

The Software Licensing Service reported that the license evaluation failed

Some cause of occurring this error

The causes are simple and clear. The error code 0xC004E003 occurs due to when the license validity of windows vista is expired. It may be also the license is not signed correctly. You can solve this error easily from the solution paragraph. In the solution paragraph you will get so many methods to solve this error. Solution paragraph is given below.









Process to fix error code 0xC004E003 in windows vista

You can easily solve error code 0xC004E003 in vista by these methods. There are so many methods available to solve this issue. Here I have described two simple methods. You can choose any one of them. All methods are easy and work successfully.


Method 1: check to re-insert the product to check it follow these steps.

  • Go to start button and then click on system properties in the toolbar.
  • After that click on change product key that is available in the windows activation section.
  • Type the product key in the product key box and then click on next button.
  • After that follow the rest steps from the wizard for complete windows activation.
Method 2: you can restore your computer to an earlier date and retry the Activation process. To perform this method follows these steps.
  • Go to start then type system restore and open it from the program list.
  • Click on next button in the system restore dialog box.
  • You have to choose restore point that was created at least one week before and then click on next.
  • Now click on finish. It will restart the computer automatically then try again to windows activation.
The steps that are given in the above paragraph fix my pc some days ago. These steps work successfully. If first will not work then you can use second method.

Tuesday 25 March 2014

"Error 1720" when an MSI file installs an add-in for Visio 2007

If you are trying to use an .msi file for installing an add on in Microsoft office Visio 2007 in windows vista operating system based computer then the add-on installing process failed and giving the following error message.

Error 1720. There is a problem with this Windows Installer package. A script required for this install to complete could not be run. Contact your support personnel or package vendor. Custom action VisSolPublish_BumpVisioChangeId script error -2147024891, WshShell.RegWrite: Invalid root in registry key "HKLM\Software\Microsoft\Office\Visio\ConfigChangeID". Line 4, Column 1.


This error message also occurs when are trying to install custom Microsoft office path 2007 template then you may receive the following error message.


There is a problem with this Windows Installer package. A script required for this install to complete could not be run. Contact your support personnel or package vendor.


Some important causes of error code 1720

The main cause of getting error code 1720 in your computer is affected of virus and damaging and corrupting of .dll files. This error also may receive when some data missing in registry files. The solution of error code 1720 is given in the rest paragraph.










Process to fix error code 1720

To solve this problem you have to disable user accounts control (UAC), and after then run the .msi file. To apply it on your computer you have to follow these steps.




  • Go to start button and then click on control panel. After that click on user accounts and family safety and after then click on user accounts and if your computer is connected to a network domain and then click user accounts and then click on user accounts.
  • After that you have to click on turn user account control on or off. If you are not logged in with administrator then you have to give the administrator user name and password.
  • After that click to clear the Use User Account Control (UAC) to help protect your computer check box and after then click on ok.
  • Now restart the computer and then run the .msi file to install the add-in.
  • Then enable user accounts control (UAC. To do this follows the step 1 and then click to select the Use User Account Control (UAC) to help protect your computer check box.


The process that is given to remove error 1720 is tasted by me. I fix my pc from this process. It successfully works and gives best output.


How to avoid disk read error and safely start your PC?

The situation of getting disk error is very may be very harmful for you. There are so many symptoms of disk error. It may be hardware or software problem in your computer. Due to damage of hard disk this error occurs and your computer will not start. This error also occurs when the problem generate in operating systems. If it is operating system error then you can remove this error easily here and if it is hard disk problem of your computer then you have to change the system hard disk.


Causes of disk error

There are two symptoms of this error that is when operating system is corrupt then this error occurs and another is when hard disk damage or connection problem then this error message occur. The disk error message occurs during starting of computer in the black screen like command prompt with the following error message.

“A disk read error occurred
Press Ctrl + Alt + Del to restart”


You can see the error as given in the figure.











Process to fix disk error

The process to fix disk error is not an easy process. If the error comes due to operating system then you can fix disk error through format the computer. To check it insert the format CD and restart the computer then open boot menu and set the priority of CD/DVD as first then save changes and exit. You will see a message blinking press any key to boot from CD. Then press any key, it insure that the message that is blinking has time limitation so quick response to this message.

After that you will see formatting window will be appearing. Read the instructions and apply step by step that is given there. It insures that only c drive is to be format so read careful. If the formatting and loading of operating system process is successfully done then it is to be sure the problem is from operating system and the problem is solved.

If any error occurs during the formatting computer then this is not a software problem, this is a hard disk problem. Then check the hard disk connection and then clean the jack and again try to format the computer. If this time again occurs that error then you have to change your hard disk.


Many times I fix my pc from this method. This method is best process to check this error and get the solution.


You can also fix this error via repairing your computer. This process will repair registry files of your computer and then fix it. You have also another option to choose that is, third party tool. If you want to repair it easily then this is the best option for you.

Monday 24 March 2014

"Error 651" error message in Windows 7 or in Windows 8 or in windows vista

If you are trying to create a dial-up connection by using ISDN that means Integrated Services Digital Network device in windows 7, 8 or windows vista then your connection is unsuccessful and you will receive the following error message.

Error 651: The Modem (or other connecting device) has reported an error.

You can fix error code 651 in windows 7 from the given process here. The process that is available here is very static and work successfully. You will get the causes and solution of this error here.


Causes of error code 651

This is Integrated Services Digital Network device problem. When Integrated Services Digital Network device not initialize successfully then the error code 651 occurs in your system. This is due to registry problem of your computer. If you registry files becomes damage or corrupted then these types of error occurs.







Solution of network error code 651 in windows 7

Some days ago I am also getting the same error. I fix my pc  error from the steps that I have gave here. You can fix this error manually by editing in registry files. There are some few steps are given to fix this error but you have to apply these steps carefully in your computer. So follow these steps and remove error code 651. some days ago


  • First of all you have to open registry editor. To open it click on start button then click on run option and type regedit here. After type press enter from keyboard.
  • You will see the registry editor window will be open after that press ctrl + f from keyboard and then copy then copy the following registry keys and paste here and then press enter.
  • HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}\<Device number>\Linkage
  • After that right click on UpperBind and after then click on modify.
  • Now in the value data box type NdiscoWan and after that click on ok button.
  • Now exit from registry editor and restart the computer.

Now try to create a dial-up connection by using ISDN that means Integrated Services Digital Network device in windows 7 you will not face “Error 651: The Modem (or other connecting device) has reported an error.” error message.

You can also fix this error via repairing your computer. This process will repair registry files of your computer and then fix it. You have also another option to choose that is, third party tool. If you want to repair it easily then this is the best option for you.


Getting Error 1935 during installation of Microsoft Office 2010 or 2007

If you are getting error code 1935 during installation of Microsoft office then you are in right place. Here you will get the process to fix error code 1935. If you are thinking how to solve Microsoft office error code 1935 then you have to read entire content. In this content you will get the solution and causes of error code 1935 and after solution you will not get the error code 1935 during installation of Microsoft office. Microsoft office is an important application for us. This is the important part of our computer.

How the error code 1935 occurs during installation of Microsoft office

This error comes due to Microsoft .NET framework component. Due to damaging of .NET framework this issue occurs in computer during installation of Microsoft office. The error code 1935 occurs in only office 2010 and 2007.







Process to fix error code 1935

To fix error code 1935 to install Microsoft office in your computer you have to repair or update Microsoft .Net framework. To do this you have to follow a few steps and apply it into your computer.
First of all you have to check the latest version of .NET framework is installed. To check it follows these steps. I have fix my pc from these steps.

  • Go to start and then click on run. Then type appwiz.cpl and then press enter.
  • You can see the Microsoft .NET Framework 4 client profile in the installed program list.
  • Now you have to repair it from the following process.
  • First of all close all applications and then click on start then again click on run then type appwiz.cpl and then press enter from keyboard.
  • After that click on Microsoft .NET Framework 4 client profile and then click on uninstall/change.
  • Now choose the option to Repair .NET Framework 4 client profile to its original state and then click the next option.
  • When the repair process is complete then clicks on finish and restart the computer.
Now try to install Microsoft office again. The Microsoft will install successfully in your computer no any error message you will face during installation of Microsoft office. You have also another option by re installing Microsoft .NET Framework. First of all uninstall it and after that install and restart the computer then try to install office.


Saturday 22 March 2014

Error code: 0xc004f063 is displayed during activation an OEM version of Windows 8

If you are using windows 8 and getting error code 0xc004f063 in windows 8 during activation an OEM version of Windows 8 or windows server 2012 then you can fix error code 0xc004f063 here. You may receive this error message during validating OEM version of windows 8 or windows server 2012.

Error code : 0xc004f063 The Software Licensing Service reported that the computer BIOS is missing a required license.

Cause of the error

When any hardware change in your computer then windows is not able to verify the hardware license again so error code 0xc004f063 occurs. This error also occurs due if BIOS contains a garbage value for service tag or it has incorrect product information.






Process to solve windows 8 error code 0xc004f063

I have fix my pc with this error with the same process that is available. You can solve this error by restoring your computer. To restore the computer click windows button for windows 8 then type system restore and see the search result. In the setting files you will get the system restore option. After that open it and here choose a restore point and then click on next button. This will take several minutes and automatically computer restart. This process will remove the error that is faced by you in your computer.