ICEnroll::get_RootStoreFlags 메서드(xenroll.h)
[이 속성은 Windows Server 2008 및 Windows Vista를 기준으로 더 이상 사용할 수 없습니다.]
RootStoreFlags 속성은 루트 저장소에 사용되는 레지스트리 위치를 설정하거나 검색합니다.
이 속성의 기본값은 CERT_SYSTEM_STORE_CURRENT_USER. 이 속성은 ICEnroll 인터페이스에서 처음 정의되었습니다.
이 속성은 읽기/쓰기가 가능합니다.
구문
HRESULT get_RootStoreFlags(
LONG *pdwFlags
);
매개 변수
pdwFlags
반환 값
없음
설명
RootStoreFlags 속성 값은 dwFlags 매개 변수를 사용하여 CertOpenStore CryptoAPI 함수에 전달됩니다.
다음 메서드를 사용하기 전에 RootStoreFlags 속성을 설정해야 합니다.
예제
DWORD dwFlags;
HRESULT hr;
// pEnroll is previously instantiated ICEnroll interface pointer.
// Retrieve the flag value.
hr = pEnroll->get_RootStoreFlags( &dwFlags );
if ( FAILED ( hr ) )
printf("Failed retrieving RootStoreFlags - %x\n", hr );
else
printf("RootStoreFlags is %x\n", dwFlags );
// Set the flag.
hr = pEnroll->put_RootStoreFlags( CERT_SYSTEM_STORE_LOCAL_MACHINE );
if ( FAILED ( hr ) )
printf("Failed updating RootStoreFlags - %x\n", hr );
else
printf("Updated RootStoreFlags\n");
요구 사항
요구 사항 | 값 |
---|---|
지원되는 최소 클라이언트 | Windows XP [데스크톱 앱만 해당] |
지원되는 최소 서버 | Windows Server 2003 [데스크톱 앱만 해당] |
대상 플랫폼 | Windows |
헤더 | xenroll.h |
라이브러리 | Uuid.lib |
DLL | Xenroll.dll |