Computer Performance, Windows 2003, Exchange 2003, Logon Scripts

Code  80072030 - There is no such object on the server

Troubleshooting Code 80072030 - There is no such object on the server

A wild guess, there is a mistake in the reference to your OU.  However, to hedge my bets, it could be any Active Directory object that causes the error 80072030 :
'There is no such object on the server'

Introduction to error Code 80072030

This is an easy error code to troubleshoot.  Code 8007xxxx indicates a problem with Windows, or Active Directory.  For example, you are trying create a child object inside an OU, but that parent OU does not exist.Code 080072030 There is no such object on the server

The Symptoms you get 80072030

The script does not execute as you hoped, instead you get a WSH error message.  One possibility is that you are trying to create an Active Directory object but there is no parent container, example misspelled OU.

The Cause of Code 80072030

Check Active Directory User's and Computers, perhaps there is no such parent OU, therefore you cannot create the child OU.

The Solutions

Use Active Directory Users and Computers to check that the OU exists.  Create the parent container object so that the new child object will have a 'home'.  Note: The error is in Line 5. In the case of runtime errors you can use this work around.  Add this line: On Error Resume Next.

Example 1 of Script Error: There is no such object on the server

Error there is no OU called BulkIT, consequently, you cannot create the SalesMan contact object.

Solution create the parent OU = BulkIT

 

'Script to Create a new Contact account in the BulkImport OU
'Script created by Guy Thomas
'Feel free to adapt names

Set objOU = GetObject("LDAP://OU=BulkIt, dc=cp, dc=com")
Set objUser = objOU.Create("contact", "cn=SalesMan")
objUser.SetInfo

Wscript.Echo "Success new Contact, & chr(13), Check Active Directory Users and Computers - Remember F5"

 

Example 2 of VBScript with Error 80072030

The OU specified by strContainer is mis-spelt, or the comma is missing.  Such errors are common in scripts with very long Active Directory paths.
strContainer = "OU=Cowbridge ,"

 

 

' Set AccountControl.vbs
' Example VBScript to enable user accounts in a named OU
' Author Guy Thomas http://computerperformance.co.uk/
' Version 1.7 - March 21st 2004
' -----------------------------------------------------------------'
Option Explicit
Dim objOU, objUser, objRootDSE
Dim strContainer, strLastUser, strDNSDomain, intCounter, intAccValue
Set objRootDSE = GetObject("LDAP://RootDSE")
strDNSDomain = objRootDSE.Get("DefaultNamingContext")
strContainer = "OU=Cowbridge ,"
intAccValue = 512
strContainer = strContainer & strDNSDomain
set objOU =GetObject("LDAP://" & strContainer )
intCounter = 0
For each objUser in objOU
If objUser.class="user" then
   objUser.Put "userAccountControl", intAccValue
   objUser.SetInfo
   intCounter = intCounter +1
   strLastUser = objUser.Get ("name")
End if
next
WScript.Echo intCounter & " Accounts Enabled. Value " _
& intAccValue
WScript.Quit

' End of VBScript Example

 

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:

 


Download my Logon Script eBook for only $6.25

Logon ScriptThe extra features you get in your eBook include, more pages full of detailed examples.  Also, ten 'how to...' sections, with screen shots showing which menus to use.  Go for Guy's eBook - and get a printable version with copy enabled and no expiry date.

  Jumbo Script 7 Package

 *


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.