사용자의 RTC 정보를 보는 코드
사용자의 RTC 정보를 보는 코드
2008.07.23출처 : Read RTC properties from active directory users http://www.haverhoek.nl/index.php?/archives/22-Read-RTC-properties-from-active-directory-users.html 이 스크립트는 AD의 사용자중에 RTC 활성화된 사용자의 RTC 정보를 읽을 수 있는 스크립트입니다. This script reads all RTC properties from all RTC enabled users from Active Directory. 파일을 적당한 이름의 *.vbs 로 저장한 후 실행해 보시면 됩니다. 사용자가 많을 경우 Alert 창이 여러번 뜨기 때문에 출력방식을 바꾸거나 파일로 저장하도록 하는 방법도 좋을듯..
ADSI를 이용해 속성값을 쓸때 생기는 0x8000500D 에러
ADSI를 이용해 속성값을 쓸때 생기는 0x8000500D 에러
2008.04.22이 문제는 ADSI를 이용해 Active Directory 속성값에 접근할 때 생깁니다. 이런 에러가 나는 주요 원인은 Exchange 등의 AD Schema가 확장되어있던 위치에서 작성된 코드를 확장되지 않은 AD에 실행하게되면 이와 같이 확장속성이 없는데 접근하려 하여서 에러가나는 경우를 확인 하엿습니다. 이런 경우 E_ADS_PROPERTY_NOT_FOUND 메시지를 보내고 이 코드값으로 0x8000500D을 반환하게 됩니다. HTTP/1.1 200 OKVia: 1.1 DHCPConnection: Keep-AliveProxy-Connection: Keep-AliveContent-Length: 52Date: Wed, 16 Apr 2008 07:50:32 GMTContent-Type: text/xml;..
Exchange를 설치하지 않고 AD 스키마 확장
Exchange를 설치하지 않고 AD 스키마 확장
2008.03.27Exchange를 설치하지 않고 AD 스키마 확장 Active Directory에는 MS에서 제공하는 여러 정보를 저장할 수 있도록 속성들을 정의해 두었고, 이를 확장할 수 있도록 되어있다. Exchange에서는 또 AD를 확장해 설치하고 그에 필요한 정보를 담고 있는데 Exchange 서버를 설치하지 않고 Exchange의 Active Directory 스키마 확장하는 방법이 가끔 필요할 때가 있다. 이럴 때에 다음과 같은 기술문서를 참고하도록 하자. http://support.microsoft.com/?scid=327757 네이버 통합검색 :: 스키마 확장 위 문서에는 다음과 같은 내용을 포함한다. 요약 : 이 문서에서는 Exchange를 설치하지 않고도 Exchange의 Microsoft Activ..
Windows Scripting를 이용해 AD에 LDAP과 ADSI를 이용한 사용자 추가
Windows Scripting를 이용해 AD에 LDAP과 ADSI를 이용한 사용자 추가
2007.11.09Windows Scripting과 ADSI 인터페이스를 이용해 LDAP 프로토콜을 이용하여 AD에 사용자를 추가하는 간단한 코드를 다음과 같이 수행해 보았다. Set objRootDSE = GetObject("LDAP://rootDSE") Set objContainer = GetObject("LDAP://cn=Users," & _ objRootDSE.Get("defaultNamingContext")) For i = 1 To 1000 Set objLeaf = objContainer.Create("User", "cn=UserNo" & i) objLeaf.Put "sAMAccountName", "UserNo" & i objLeaf.SetInfo Next Wscript.Echo "1000 Users create..
Active Directory User/Group Encapsulation Classes
Active Directory User/Group Encapsulation Classes
2007.09.16참조 주소 : http://www.codeproject.com/cs/internet/StorerActiveDirectory.asp AD를 사용하기 쉽도록 제공되는 Class 이다. Download source and demo projects - 34.9 KB
Moss Authentication Active directory
Moss Authentication Active directory
2007.09.12Authentication samples http://technet2.microsoft.com/Office/en-us/library/23b837d1-15d9-4621-aa0b-9ce3f1c7153e1033.mspx?mfr=true Use Forms Authentication with SQL Server in ASP.NET 2.0 http://msdn2.microsoft.com/en-us/library/ms998317.aspx Active Directory Role provider http://www.codeplex.com/adrp
Active directory how to
Active directory how to
2007.09.06아 AD, LDAP... 죽일넘들 ㅡㅡ;; How to create a file share using .Net framework How to add a user to file access permissions How to get file security information using DirectoryServices How to get list of groups user is member of How to get list of domains in Active Directory How to get members of a windows group. How to get user SID using DirectoryServices classes How to add a new user account in your ..
Active Directory ㅠ_ㅠ
Active Directory ㅠ_ㅠ
2007.09.06이런 그지같은 AD ㅠㅠ http://msdn2.microsoft.com/en-us/library/aa772218.aspx Active Directory Service Interfaces(ADSI) Reference http://msdn2.microsoft.com/en-us/library/aa367008.aspx Lightweight Directory Access Protocol(LDAP) Active Dirctory를 이용한 경로 정보 전체보기 //----------------------------------------------------------------------- // This file is part of the Microsoft .NET Framework SDK Code Samples. /..