다음을 통해 공유


IADsWinNTSystemInfo 인터페이스(iads.h)

IADsWinNTSystemInfo 인터페이스는 컴퓨터에 대한 WinNT 시스템 정보를 검색합니다. 이러한 시스템 정보에는 사용자 계정 이름, 사용자 도메인, 호스트 이름 및 호스트 컴퓨터의 기본 도메인 컨트롤러가 포함됩니다.

IADsWinNTSystemInfo 인터페이스는 도메인 지원 버전의 Windows용 ADSI 표준 설치에 포함된 Activeds.dll 있는 WinNTSystemInfo 개체에 구현됩니다. IADsWinNTSystemInfo 인터페이스에서 메서드를 호출하려면 WinNTSystemInfo 개체의 인스턴스를 명시적으로 만들어야 합니다. 이 요구 사항은 C/C++에서 CoCreateInstance 함수를 사용하여 WinNTSystemInfo 인스턴스를 만드는 것을 의미합니다.

IADsWinNTSystemInfo *pNTsys;
HRESULT hr = CoCreateInstance(CLSID_WinNTSystemInfo,
                              NULL,
                              CLSCTX_INPROC_SERVER,
                              IID_IADsWinNTSystemInfo,
                              (void**)&pNTsys);

Visual Basic에서 New 연산자를 사용할 수도 있습니다.

Dim ntSys As New WinNTSystemInfo

스크립팅 환경에서 CreateObject 함수를 호출하여 "WinNTSystemInfo"를 ProgID로 제공할 수도 있습니다.

Dim ntSys
Set ntSys = CreateObject("WinNTSystemInfo")

상속

IADsWinNTSystemInfo 인터페이스는 IDispatch 인터페이스에서 상속됩니다.

요구 사항

   
지원되는 최소 클라이언트 Windows Vista
지원되는 최소 서버 Windows Server 2008
대상 플랫폼 Windows
헤더 iads.h

추가 정보

CoCreateInstance

IADsWinNTSystemInfo 속성 메서드

IDispatch