473,480 Members | 1,585 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

windows2003 active directory problems

Hi people. I have a problem adding users to Win2003 active directory
programatically. When I execute my app throws the following exception:

.................The specified directory service attribute or value does not
exist...........

Exactly the same code works fine on my win2000 active directory. My app
include the use of the extensionAtributes and I'm not sure if the
extensionAttributes feature was removed from win2003 Active Directory
Any Idea
Jul 21 '05 #1
9 3679
On Wed, 28 Apr 2004 09:49:22 -0600, "Mario Rodriguez" <mr********@avantica.net> wrote:

¤ Hi people. I have a problem adding users to Win2003 active directory
¤ programatically. When I execute my app throws the following exception:
¤
¤ ................The specified directory service attribute or value does not
¤ exist...........
¤
¤ Exactly the same code works fine on my win2000 active directory. My app
¤ include the use of the extensionAtributes and I'm not sure if the
¤ extensionAttributes feature was removed from win2003 Active Directory

You may want to identify what attributes you are referring to (code?). I'm assuming you're using
either ADSI or System.DirectoryServices?
Paul ~~~ pc******@ameritech.net
Microsoft MVP (Visual Basic)
Jul 21 '05 #2
On Wed, 28 Apr 2004 09:49:22 -0600, "Mario Rodriguez" <mr********@avantica.net> wrote:

¤ Hi people. I have a problem adding users to Win2003 active directory
¤ programatically. When I execute my app throws the following exception:
¤
¤ ................The specified directory service attribute or value does not
¤ exist...........
¤
¤ Exactly the same code works fine on my win2000 active directory. My app
¤ include the use of the extensionAtributes and I'm not sure if the
¤ extensionAttributes feature was removed from win2003 Active Directory

You may want to identify what attributes you are referring to (code?). I'm assuming you're using
either ADSI or System.DirectoryServices?
Paul ~~~ pc******@ameritech.net
Microsoft MVP (Visual Basic)
Jul 21 '05 #3
sure, I'm using System.DirectoryServices

objRaizActiveDirectory = new DirectoryEntry(v_strRutaActiveDirectory);

DirectoryEntry objNuevoUsuario =
objRaizActiveDirectory.Children.Add("CN="+strNombr eCompleto, "user");

/* seccion de atributos obligatorios de Active Directory */

invocarPropiedad(ref objNuevoUsuario,"name",strNombreCompleto);

invocarPropiedad(ref
objNuevoUsuario,"givenName",v_objContenedorUsuario .obtenerNombre());

invocarPropiedad(ref
objNuevoUsuario,"Description",v_objContenedorUsuar io.obtenerDescripcion());

invocarPropiedad(ref
objNuevoUsuario,"sAMAccountName",v_objContenedorUs uario.obtenerLogin());
/* Seccion de atributos extendidos de Active Directory */

/* Para detalles ver:
http://www.microsoft.com/latam/techn...ws2k/chapt-20/ */
invocarPropiedad(ref
objNuevoUsuario,"extensionAttribute1",v_objContene dorUsuario.obtenerCedula()
);

/*

invocarPropiedad(ref
objNuevoUsuario,"extensionAttribute2",v_objContene dorUsuario.obtenerCorreoEl
ectronico());

invocarPropiedad(ref
objNuevoUsuario,"extensionAttribute3",v_objContene dorUsuario.obtenerDepartam
ento());

invocarPropiedad(ref
objNuevoUsuario,"extensionAttribute4",v_objContene dorUsuario.obtenerEntidad(
));

invocarPropiedad(ref
objNuevoUsuario,"extensionAttribute5",v_objContene dorUsuario.obtenerJefeDire
cto());

invocarPropiedad(ref
objNuevoUsuario,"extensionAttribute6",v_objContene dorUsuario.obtenerNombre()
);

invocarPropiedad(ref
objNuevoUsuario,"extensionAttribute7",v_objContene dorUsuario.obtenerPrimerAp
ellido());

invocarPropiedad(ref
objNuevoUsuario,"extensionAttribute8",v_objContene dorUsuario.obtenerPuesto()
);

invocarPropiedad(ref
objNuevoUsuario,"extensionAttribute9",v_objContene dorUsuario.obtenerSegundoA
pellido());

invocarPropiedad(ref
objNuevoUsuario,"extensionAttribute10",v_objConten edorUsuario.obtenerTelefon
o());

invocarPropiedad(ref objNuevoUsuario,"extensionAttribute11"," "); // define
el campo de fechaExpiracion

*/

/* se crea el usuario y luego se define el password, de lo contrario Active
Directory tira una exception */

objNuevoUsuario.CommitChanges();

//objNuevoUsuario.Invoke("SetPassword", new
object[]{v_objContenedorUsuario.obtenerClave()});
/* Se habilita el usuario en Active Directory */

objNuevoUsuario.Properties["userAccountControl"].Value = 0x200;
//ADS_UF_NORMAL_ACCOUNT

objNuevoUsuario.CommitChanges();


"Paul Clement" <Us***********************@swspectrum.com> wrote in message
news:3m********************************@4ax.com...
On Wed, 28 Apr 2004 09:49:22 -0600, "Mario Rodriguez" <mr********@avantica.net> wrote:
¤ Hi people. I have a problem adding users to Win2003 active directory
¤ programatically. When I execute my app throws the following exception:
¤
¤ ................The specified directory service attribute or value does not ¤ exist...........
¤
¤ Exactly the same code works fine on my win2000 active directory. My app
¤ include the use of the extensionAtributes and I'm not sure if the
¤ extensionAttributes feature was removed from win2003 Active Directory

You may want to identify what attributes you are referring to (code?). I'm assuming you're using either ADSI or System.DirectoryServices?
Paul ~~~ pc******@ameritech.net
Microsoft MVP (Visual Basic)

Jul 21 '05 #4
sure, I'm using System.DirectoryServices

objRaizActiveDirectory = new DirectoryEntry(v_strRutaActiveDirectory);

DirectoryEntry objNuevoUsuario =
objRaizActiveDirectory.Children.Add("CN="+strNombr eCompleto, "user");

/* seccion de atributos obligatorios de Active Directory */

invocarPropiedad(ref objNuevoUsuario,"name",strNombreCompleto);

invocarPropiedad(ref
objNuevoUsuario,"givenName",v_objContenedorUsuario .obtenerNombre());

invocarPropiedad(ref
objNuevoUsuario,"Description",v_objContenedorUsuar io.obtenerDescripcion());

invocarPropiedad(ref
objNuevoUsuario,"sAMAccountName",v_objContenedorUs uario.obtenerLogin());
/* Seccion de atributos extendidos de Active Directory */

/* Para detalles ver:
http://www.microsoft.com/latam/techn...ws2k/chapt-20/ */
invocarPropiedad(ref
objNuevoUsuario,"extensionAttribute1",v_objContene dorUsuario.obtenerCedula()
);

/*

invocarPropiedad(ref
objNuevoUsuario,"extensionAttribute2",v_objContene dorUsuario.obtenerCorreoEl
ectronico());

invocarPropiedad(ref
objNuevoUsuario,"extensionAttribute3",v_objContene dorUsuario.obtenerDepartam
ento());

invocarPropiedad(ref
objNuevoUsuario,"extensionAttribute4",v_objContene dorUsuario.obtenerEntidad(
));

invocarPropiedad(ref
objNuevoUsuario,"extensionAttribute5",v_objContene dorUsuario.obtenerJefeDire
cto());

invocarPropiedad(ref
objNuevoUsuario,"extensionAttribute6",v_objContene dorUsuario.obtenerNombre()
);

invocarPropiedad(ref
objNuevoUsuario,"extensionAttribute7",v_objContene dorUsuario.obtenerPrimerAp
ellido());

invocarPropiedad(ref
objNuevoUsuario,"extensionAttribute8",v_objContene dorUsuario.obtenerPuesto()
);

invocarPropiedad(ref
objNuevoUsuario,"extensionAttribute9",v_objContene dorUsuario.obtenerSegundoA
pellido());

invocarPropiedad(ref
objNuevoUsuario,"extensionAttribute10",v_objConten edorUsuario.obtenerTelefon
o());

invocarPropiedad(ref objNuevoUsuario,"extensionAttribute11"," "); // define
el campo de fechaExpiracion

*/

/* se crea el usuario y luego se define el password, de lo contrario Active
Directory tira una exception */

objNuevoUsuario.CommitChanges();

//objNuevoUsuario.Invoke("SetPassword", new
object[]{v_objContenedorUsuario.obtenerClave()});
/* Se habilita el usuario en Active Directory */

objNuevoUsuario.Properties["userAccountControl"].Value = 0x200;
//ADS_UF_NORMAL_ACCOUNT

objNuevoUsuario.CommitChanges();


"Paul Clement" <Us***********************@swspectrum.com> wrote in message
news:3m********************************@4ax.com...
On Wed, 28 Apr 2004 09:49:22 -0600, "Mario Rodriguez" <mr********@avantica.net> wrote:
¤ Hi people. I have a problem adding users to Win2003 active directory
¤ programatically. When I execute my app throws the following exception:
¤
¤ ................The specified directory service attribute or value does not ¤ exist...........
¤
¤ Exactly the same code works fine on my win2000 active directory. My app
¤ include the use of the extensionAtributes and I'm not sure if the
¤ extensionAttributes feature was removed from win2003 Active Directory

You may want to identify what attributes you are referring to (code?). I'm assuming you're using either ADSI or System.DirectoryServices?
Paul ~~~ pc******@ameritech.net
Microsoft MVP (Visual Basic)

Jul 21 '05 #5
These are exchange extension attributes, did you migrate a W2K AD to W2K3 AD
or did you upgrade an existing W2K AD domain?
If not, did you migrate Exchange to the new domain, else these attributes
don't exist in the user schema. You can check your schema using adsiedit.msc

Anyway rest assured these attributes still exist, and your problem is not
..NET related.
Willy.
"Mario Rodriguez" <mr********@avantica.net> wrote in message
news:ON*************@TK2MSFTNGP10.phx.gbl...
sure, I'm using System.DirectoryServices

objRaizActiveDirectory = new DirectoryEntry(v_strRutaActiveDirectory);

DirectoryEntry objNuevoUsuario =
objRaizActiveDirectory.Children.Add("CN="+strNombr eCompleto, "user");

/* seccion de atributos obligatorios de Active Directory */

invocarPropiedad(ref objNuevoUsuario,"name",strNombreCompleto);

invocarPropiedad(ref
objNuevoUsuario,"givenName",v_objContenedorUsuario .obtenerNombre());

invocarPropiedad(ref
objNuevoUsuario,"Description",v_objContenedorUsuar io.obtenerDescripcion());

invocarPropiedad(ref
objNuevoUsuario,"sAMAccountName",v_objContenedorUs uario.obtenerLogin());
/* Seccion de atributos extendidos de Active Directory */

/* Para detalles ver:
http://www.microsoft.com/latam/techn...ws2k/chapt-20/ */
invocarPropiedad(ref
objNuevoUsuario,"extensionAttribute1",v_objContene dorUsuario.obtenerCedula()
);

/*

invocarPropiedad(ref
objNuevoUsuario,"extensionAttribute2",v_objContene dorUsuario.obtenerCorreoEl
ectronico());

invocarPropiedad(ref
objNuevoUsuario,"extensionAttribute3",v_objContene dorUsuario.obtenerDepartam
ento());

invocarPropiedad(ref
objNuevoUsuario,"extensionAttribute4",v_objContene dorUsuario.obtenerEntidad(
));

invocarPropiedad(ref
objNuevoUsuario,"extensionAttribute5",v_objContene dorUsuario.obtenerJefeDire
cto());

invocarPropiedad(ref
objNuevoUsuario,"extensionAttribute6",v_objContene dorUsuario.obtenerNombre()
);

invocarPropiedad(ref
objNuevoUsuario,"extensionAttribute7",v_objContene dorUsuario.obtenerPrimerAp
ellido());

invocarPropiedad(ref
objNuevoUsuario,"extensionAttribute8",v_objContene dorUsuario.obtenerPuesto()
);

invocarPropiedad(ref
objNuevoUsuario,"extensionAttribute9",v_objContene dorUsuario.obtenerSegundoA
pellido());

invocarPropiedad(ref
objNuevoUsuario,"extensionAttribute10",v_objConten edorUsuario.obtenerTelefon
o());

invocarPropiedad(ref objNuevoUsuario,"extensionAttribute11"," "); //
define
el campo de fechaExpiracion

*/

/* se crea el usuario y luego se define el password, de lo contrario
Active
Directory tira una exception */

objNuevoUsuario.CommitChanges();

//objNuevoUsuario.Invoke("SetPassword", new
object[]{v_objContenedorUsuario.obtenerClave()});
/* Se habilita el usuario en Active Directory */

objNuevoUsuario.Properties["userAccountControl"].Value = 0x200;
//ADS_UF_NORMAL_ACCOUNT

objNuevoUsuario.CommitChanges();


"Paul Clement" <Us***********************@swspectrum.com> wrote in message
news:3m********************************@4ax.com...
On Wed, 28 Apr 2004 09:49:22 -0600, "Mario Rodriguez"

<mr********@avantica.net> wrote:

¤ Hi people. I have a problem adding users to Win2003 active directory
¤ programatically. When I execute my app throws the following exception:
¤
¤ ................The specified directory service attribute or value does

not
¤ exist...........
¤
¤ Exactly the same code works fine on my win2000 active directory. My
app
¤ include the use of the extensionAtributes and I'm not sure if the
¤ extensionAttributes feature was removed from win2003 Active Directory

You may want to identify what attributes you are referring to (code?).
I'm

assuming you're using
either ADSI or System.DirectoryServices?
Paul ~~~ pc******@ameritech.net
Microsoft MVP (Visual Basic)


Jul 21 '05 #6
These are exchange extension attributes, did you migrate a W2K AD to W2K3 AD
or did you upgrade an existing W2K AD domain?
If not, did you migrate Exchange to the new domain, else these attributes
don't exist in the user schema. You can check your schema using adsiedit.msc

Anyway rest assured these attributes still exist, and your problem is not
..NET related.
Willy.
"Mario Rodriguez" <mr********@avantica.net> wrote in message
news:ON*************@TK2MSFTNGP10.phx.gbl...
sure, I'm using System.DirectoryServices

objRaizActiveDirectory = new DirectoryEntry(v_strRutaActiveDirectory);

DirectoryEntry objNuevoUsuario =
objRaizActiveDirectory.Children.Add("CN="+strNombr eCompleto, "user");

/* seccion de atributos obligatorios de Active Directory */

invocarPropiedad(ref objNuevoUsuario,"name",strNombreCompleto);

invocarPropiedad(ref
objNuevoUsuario,"givenName",v_objContenedorUsuario .obtenerNombre());

invocarPropiedad(ref
objNuevoUsuario,"Description",v_objContenedorUsuar io.obtenerDescripcion());

invocarPropiedad(ref
objNuevoUsuario,"sAMAccountName",v_objContenedorUs uario.obtenerLogin());
/* Seccion de atributos extendidos de Active Directory */

/* Para detalles ver:
http://www.microsoft.com/latam/techn...ws2k/chapt-20/ */
invocarPropiedad(ref
objNuevoUsuario,"extensionAttribute1",v_objContene dorUsuario.obtenerCedula()
);

/*

invocarPropiedad(ref
objNuevoUsuario,"extensionAttribute2",v_objContene dorUsuario.obtenerCorreoEl
ectronico());

invocarPropiedad(ref
objNuevoUsuario,"extensionAttribute3",v_objContene dorUsuario.obtenerDepartam
ento());

invocarPropiedad(ref
objNuevoUsuario,"extensionAttribute4",v_objContene dorUsuario.obtenerEntidad(
));

invocarPropiedad(ref
objNuevoUsuario,"extensionAttribute5",v_objContene dorUsuario.obtenerJefeDire
cto());

invocarPropiedad(ref
objNuevoUsuario,"extensionAttribute6",v_objContene dorUsuario.obtenerNombre()
);

invocarPropiedad(ref
objNuevoUsuario,"extensionAttribute7",v_objContene dorUsuario.obtenerPrimerAp
ellido());

invocarPropiedad(ref
objNuevoUsuario,"extensionAttribute8",v_objContene dorUsuario.obtenerPuesto()
);

invocarPropiedad(ref
objNuevoUsuario,"extensionAttribute9",v_objContene dorUsuario.obtenerSegundoA
pellido());

invocarPropiedad(ref
objNuevoUsuario,"extensionAttribute10",v_objConten edorUsuario.obtenerTelefon
o());

invocarPropiedad(ref objNuevoUsuario,"extensionAttribute11"," "); //
define
el campo de fechaExpiracion

*/

/* se crea el usuario y luego se define el password, de lo contrario
Active
Directory tira una exception */

objNuevoUsuario.CommitChanges();

//objNuevoUsuario.Invoke("SetPassword", new
object[]{v_objContenedorUsuario.obtenerClave()});
/* Se habilita el usuario en Active Directory */

objNuevoUsuario.Properties["userAccountControl"].Value = 0x200;
//ADS_UF_NORMAL_ACCOUNT

objNuevoUsuario.CommitChanges();


"Paul Clement" <Us***********************@swspectrum.com> wrote in message
news:3m********************************@4ax.com...
On Wed, 28 Apr 2004 09:49:22 -0600, "Mario Rodriguez"

<mr********@avantica.net> wrote:

¤ Hi people. I have a problem adding users to Win2003 active directory
¤ programatically. When I execute my app throws the following exception:
¤
¤ ................The specified directory service attribute or value does

not
¤ exist...........
¤
¤ Exactly the same code works fine on my win2000 active directory. My
app
¤ include the use of the extensionAtributes and I'm not sure if the
¤ extensionAttributes feature was removed from win2003 Active Directory

You may want to identify what attributes you are referring to (code?).
I'm

assuming you're using
either ADSI or System.DirectoryServices?
Paul ~~~ pc******@ameritech.net
Microsoft MVP (Visual Basic)


Jul 21 '05 #7
You are right Willy. In fact, I've two test environments:

1- Win2000, Exchange installed - everything works fine
2- Win2003, without Exchange - tests fails

I just create manually all the extensionAttributeN in win2003 (using the
same data than un Win2000)

but now if I include some extensionAttribute on my addUser method throws an
exception (If I don't include any extensionAttribute everything works fine)

Exception: The requested operation did not satisfy one or more constraints
associated with the class of the object.
Any Idea
"Willy Denoyette [MVP]" <wi*************@pandora.be> wrote in message
news:#3**************@tk2msftngp13.phx.gbl...
These are exchange extension attributes, did you migrate a W2K AD to W2K3 AD or did you upgrade an existing W2K AD domain?
If not, did you migrate Exchange to the new domain, else these attributes
don't exist in the user schema. You can check your schema using adsiedit.msc
Anyway rest assured these attributes still exist, and your problem is not
.NET related.
Willy.
"Mario Rodriguez" <mr********@avantica.net> wrote in message
news:ON*************@TK2MSFTNGP10.phx.gbl...
sure, I'm using System.DirectoryServices

objRaizActiveDirectory = new DirectoryEntry(v_strRutaActiveDirectory);

DirectoryEntry objNuevoUsuario =
objRaizActiveDirectory.Children.Add("CN="+strNombr eCompleto, "user");

/* seccion de atributos obligatorios de Active Directory */

invocarPropiedad(ref objNuevoUsuario,"name",strNombreCompleto);

invocarPropiedad(ref
objNuevoUsuario,"givenName",v_objContenedorUsuario .obtenerNombre());

invocarPropiedad(ref
objNuevoUsuario,"Description",v_objContenedorUsuar io.obtenerDescripcion());
invocarPropiedad(ref
objNuevoUsuario,"sAMAccountName",v_objContenedorUs uario.obtenerLogin());
/* Seccion de atributos extendidos de Active Directory */

/* Para detalles ver:
http://www.microsoft.com/latam/techn...ws2k/chapt-20/ */
invocarPropiedad(ref
objNuevoUsuario,"extensionAttribute1",v_objContene dorUsuario.obtenerCedula() );

/*

invocarPropiedad(ref
objNuevoUsuario,"extensionAttribute2",v_objContene dorUsuario.obtenerCorreoEl ectronico());

invocarPropiedad(ref
objNuevoUsuario,"extensionAttribute3",v_objContene dorUsuario.obtenerDepartam ento());

invocarPropiedad(ref
objNuevoUsuario,"extensionAttribute4",v_objContene dorUsuario.obtenerEntidad( ));

invocarPropiedad(ref
objNuevoUsuario,"extensionAttribute5",v_objContene dorUsuario.obtenerJefeDire cto());

invocarPropiedad(ref
objNuevoUsuario,"extensionAttribute6",v_objContene dorUsuario.obtenerNombre() );

invocarPropiedad(ref
objNuevoUsuario,"extensionAttribute7",v_objContene dorUsuario.obtenerPrimerAp ellido());

invocarPropiedad(ref
objNuevoUsuario,"extensionAttribute8",v_objContene dorUsuario.obtenerPuesto() );

invocarPropiedad(ref
objNuevoUsuario,"extensionAttribute9",v_objContene dorUsuario.obtenerSegundoA pellido());

invocarPropiedad(ref
objNuevoUsuario,"extensionAttribute10",v_objConten edorUsuario.obtenerTelefon o());

invocarPropiedad(ref objNuevoUsuario,"extensionAttribute11"," "); //
define
el campo de fechaExpiracion

*/

/* se crea el usuario y luego se define el password, de lo contrario
Active
Directory tira una exception */

objNuevoUsuario.CommitChanges();

//objNuevoUsuario.Invoke("SetPassword", new
object[]{v_objContenedorUsuario.obtenerClave()});
/* Se habilita el usuario en Active Directory */

objNuevoUsuario.Properties["userAccountControl"].Value = 0x200;
//ADS_UF_NORMAL_ACCOUNT

objNuevoUsuario.CommitChanges();


"Paul Clement" <Us***********************@swspectrum.com> wrote in message news:3m********************************@4ax.com...
On Wed, 28 Apr 2004 09:49:22 -0600, "Mario Rodriguez"

<mr********@avantica.net> wrote:

¤ Hi people. I have a problem adding users to Win2003 active directory
¤ programatically. When I execute my app throws the following exception: ¤
¤ ................The specified directory service attribute or value
does not
¤ exist...........
¤
¤ Exactly the same code works fine on my win2000 active directory. My
app
¤ include the use of the extensionAtributes and I'm not sure if the
¤ extensionAttributes feature was removed from win2003 Active Directory

You may want to identify what attributes you are referring to (code?).
I'm

assuming you're using
either ADSI or System.DirectoryServices?
Paul ~~~ pc******@ameritech.net
Microsoft MVP (Visual Basic)



Jul 21 '05 #8
On Wed, 28 Apr 2004 14:16:18 -0600, "Mario Rodriguez" <mr********@avantica.net> wrote:

¤ You are right Willy. In fact, I've two test environments:
¤
¤ 1- Win2000, Exchange installed - everything works fine
¤ 2- Win2003, without Exchange - tests fails
¤
¤ I just create manually all the extensionAttributeN in win2003 (using the
¤ same data than un Win2000)
¤
¤ but now if I include some extensionAttribute on my addUser method throws an
¤ exception (If I don't include any extensionAttribute everything works fine)
¤
¤ Exception: The requested operation did not satisfy one or more constraints
¤ associated with the class of the object.
¤

Can you try adding one extension attribute at a time until you trigger the error? This will allow
you identify the attribute in question (if it isn't all of them).

The error seems to indicate that there is a configuration or data related issue. It could be a data
validation issue or possibly a relationship between attributes that is being violated.
Paul ~~~ pc******@ameritech.net
Microsoft MVP (Visual Basic)
Jul 21 '05 #9
On Wed, 28 Apr 2004 14:16:18 -0600, "Mario Rodriguez" <mr********@avantica.net> wrote:

¤ You are right Willy. In fact, I've two test environments:
¤
¤ 1- Win2000, Exchange installed - everything works fine
¤ 2- Win2003, without Exchange - tests fails
¤
¤ I just create manually all the extensionAttributeN in win2003 (using the
¤ same data than un Win2000)
¤
¤ but now if I include some extensionAttribute on my addUser method throws an
¤ exception (If I don't include any extensionAttribute everything works fine)
¤
¤ Exception: The requested operation did not satisfy one or more constraints
¤ associated with the class of the object.
¤

Can you try adding one extension attribute at a time until you trigger the error? This will allow
you identify the attribute in question (if it isn't all of them).

The error seems to indicate that there is a configuration or data related issue. It could be a data
validation issue or possibly a relationship between attributes that is being violated.
Paul ~~~ pc******@ameritech.net
Microsoft MVP (Visual Basic)
Jul 21 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
15175
by: James Allan | last post by:
Hello -- I'm trying to get SQL Server 2000 on a Windows 2000 Server to be able to query an Active Directory. We've got two domain servers one Win2000 and one Win2003. However, I'm having...
1
3266
by: Amadelle | last post by:
Hi all, I am so desparately in need of some guidance! After two days of struggling I still can't connect to the Active Directory server. I have used so many different ways and so many different...
0
1987
by: RTT | last post by:
here is my current situation. I develop a program on my computer's localhost. From there i contact Active directory succesfull using a connectionstring like:...
9
388
by: Mario Rodriguez | last post by:
Hi people. I have a problem adding users to Win2003 active directory programatically. When I execute my app throws the following exception: .................The specified directory service...
8
1623
by: cgd | last post by:
windows2003+sp2 i use the ie7 download a file, i want to know where is the temp fold? thanks
0
2863
JamieHowarth0
by: JamieHowarth0 | last post by:
Hi guys, Up until 3 weeks ago I was running a Microsoft Windows Server 2003 R2 Enterprise Edition Beta from home on an ADSL connection with dynamic IP absolutely fine - until the beta decided to...
1
4039
by: Tim | last post by:
Folks, I have 3 loosely linked problems which I am would appreciate feedback on. 1). T-Sql and Active directory roles. We want to be able to control access to data within a table based on a...
0
1332
by: fabiomoggi | last post by:
Hello Guys, I am developing a web application to manage Active Directory resources, and one of my tasks is to map Organizational Units hierarchy into a SQL Server database. Let's suppose that I...
0
2393
by: Zetten | last post by:
I'm trying to develop a page which will grab a few details for the currently logged-in Windows user from the Active Directory controller. I can get the full name of the user from their username...
0
7087
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
6741
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
6944
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
5341
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
4782
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
4483
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
2995
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
2985
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
182
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.