Tax Audit || Run time error 429; ActiveX component can't create object

Tax Audit || Run time error 429; ActiveX component can't create object

      

Root Cause of the Error →  The error primarily occurs due to one of the following reasons:
  1. Missing or Improper Installation of .NET Framework 4.5.2: The .NET Framework 4.5.2 may either be missing, improperly installed, or corrupted. Without this framework, the application cannot execute its functions properly, leading to errors.
  2. Corrupted Windows Management Instrumentation (WMI) Service: The Windows Management Instrumentation (WMI) service, responsible for providing system management information and control, may not be running or may have been corrupted. This prevents the execution of system information commands (like systeminfo), leading to failures in software compatibility checks.
  3. Incorrect Service Configuration: The Windows Management Instrumentation service might be set to manual or disabled, preventing the necessary services from running when required by the application.
  4. System Repository Corruption: If the WMI repository is corrupted, it can cause various system commands and features to fail, resulting in compatibility and performance errors in software that rely on WMI.
Solution →
Check .NET Framework 4.5.2 Installation:
  1. Open the Control Panel on your Windows system.
  2. Navigate to the "Programs" or "Programs and Features" section.
  3. Look for "Microsoft .NET Framework 4.5.2" in the list of installed programs.
    1. If it is listed, it means Dot Net Framework 4.5.2 is installed on your system, and you can proceed with your SeleniumBasic tasks.
    2. If it is not listed, you need to install Dot Net Framework 4.5.2. You can download it from the official Microsoft website.
    1. To install Dot Net Framework 4.5.2:
      1. Download file: Microsoft .NET Framework 4.5.2
      2. Follow the on-screen instructions to download the installer.
      3. Once downloaded, run the installer and follow the installation wizard.
      4. After the installation is complete, restart your computer if prompted.
    1. After the restart, repeat Step 3 to confirm that "Microsoft .NET Framework 4.5.2" is now listed among your installed programs.
If the Issue Persists: Check if the 'systeminfo' Command Works on Your System. If not, follow these steps:
Go to 'Services':
  1. Check if 'Windows Management Instrumentation' is running.
  2. If it's not running, set the 'Startup Type' to 'Automatic' and the 'Status' to 'Running'.

      

Open Command Prompt as Administrator:
  1. Type the command: net stop winmgmt and press Enter.
  2. If prompted with "Do you want to continue this operation? (Y/N) [N]:", enter 'Y' and press Enter.
      

Enter the command: winmgmt /resetrepository and press Enter.

      

Now, run the 'systeminfo' command and check for resolution.
By following these steps, you ensure that the necessary services are running and reset the Windows Management Instrumentation repository, potentially resolving the compatibility message issue.