Computer Performance, Logon Scripts

Code  Error 800A01AD - ActiveX component can't create object

Troubleshooting Code 800A01AD - ActiveX component can't create object

Introduction to error Code 800A01AD   

This error code, 800A01AD usually occurs when you execute a VBScript.  My first suggestion is that there is a typo of an object or method in your script.  A wild guess, you could be creating an ADODB.Connection.Error 800A01AD

The Symptoms you get

The script does not execute as you hoped, instead you get a WSH error message.  One possibility is that you are trying to open an ADO connection.

The Cause of Error 800A01AD

Your VBScript contains an illegal method, probably a typing mistake, an extra letter.  Check the logic of your METHOD statement.

For trickier problems, particularly with the COM part of .ASP, check that you are not missing .DLL files, or that they need to be registered with RegSvr32. See Example 2

With this error it's back to basics, is the DLL on your system?  Does it need registering with regsvr32?  If so, are you sure it's in the Path.  Or most likely there are insufficient permission therefore check the security settings on the appropriate folders.

The Solutions to ActiveX component can't create object

Check the spelling of your objects and methods.  Look for clues particularly the Line: number and check the Char: references.  In the example it is Line 1.  In this case it is not Char 1 which is to blame, the problem is further along the line.  WSH has a habit of blaming Char:1 when it's the whole line that it cannot execute.

Incidentally, Source: reports a runtime error not a compilation error, this means you are looking not for a pure syntax problem, but a fault logic error.  In the case of runtime errors, you can use this temporary work around.  Add this statement just before the line that causes the error: On Error Resume Next.

Example 1 of Error 800A01AD 

Createobject("objNetwork")  it should be the pure word Network, remove the obj in objNetwork.

Createobject("Network") .  Moreover, it should be :

Createobject("wscript.Network")

 

Set objNetwork = Createobject("objNetwork")

strDriveLetter = "N:" 'must be capitalized
strRemotePath = "\\alan\home"
strUser = "guyt"
strPassword = "$a1$$n5g"
objNetwork.MapNetworkDrive strDriveLetter, strRemotePath, strUser, strPassword

 

Example 2 of Error 800A01AD 

You may be getting this Error 800A01AD message from your ASP code.  Check the VBScript section where you're attempting to open a connection through ADO.

VBScript Runtime Error: '800a01ad'
ActiveX component Can't create object

 

Set objConn=CreateObject("ADODB.Connection")

 

 

Solutions to ActiveX component can't create object

Check that you have MDAC 2.x installed.

Register \program files\common files\System\MSADO15.dll with RegSvr32.

Check permissions for both IUSR_<Server> AND IWAM_<Server>.  In particular make sure that they have Read/Execute NTFS rights on these folders.
- \program files\common files\System
- \Windows (or Winnt)
- \InetPub\WWWRoot

Open Console and check that there is a valid IP Address for the Default Web
Site.

Stop, then restart the Web services, or reboot, depending on your operating system.

 

Solarwinds IpMonitorTry a different solution, download SolarWinds ipMonitor

Here is my thinking, ipMonitor will give you valuable data about your network and servers.  This extra information just may unlock the solution to your error code.  One more thing, sometimes when troubleshooting you go around in circles; therefore if you try a different, but related approach, you may just crack the problem.  Free Download of SolarWinds ipMonitor

Computer Training Software - Recommended Training VideosGuy Thomas recommends Computer Training Software

Their topics and material are ideal for getting you started with VBScript.  The videos are easy to follow and you can control the pace.  Try their free demo material and then see if you want to buy the full package. See more about VB Script Training CD.


Do you need extra help?

For interpreting the WSH messages check Diagnose 800 errors.

For general advice try my 7 Troubleshooting techniques

Give something back?

Would you like to help others?  If you have a good example of this error, then please email me, I will publish it with a credit to you:

 

 *


Google

WebComputerperformance.co.uk

GFi Events Manager

Guy Recommends: GFi EventsManager

Here is a solution to monitor, manage and archive thousands of events that are generated by devices across your entire network.  Get your free evaluation copy of GFI EventsManager.

 

Home Copyright © 1999-2008 Computer Performance LTD All rights reserved

Please report a broken link, or an error.