모든 COM 애플리케이션에서처럼 애플리케이션이 끝날 때 CoUninitialize를 호출해야 합니다.
애플리케이션을 종료합니다.
다음 코드 예제에서는 WMI 클라이언트 애플리케이션을 종료하는 방법을 확인할 수 있습니다.
// The following #include and #define statements need
// to be used with this code:
// #define _WIN32_DCOM
// #include <wbemidl.h>
// #pragma comment(lib, "wbemuuid.lib")
// pSvc was declared as IWbemServices *pSvc;
// pLoc was declared as IWbemLocator *pLoc;
pSvc->Release();
pLoc->Release();
CoUninitialize();
return 0; // Program successfully completed.
이 학습 경로에서는 WMI(Windows Management Instrumentation) 및 CIM(Common Information Model)에 대해 다룹니다. 이러한 기술은 컴퓨터에 대한 정보에 액세스하는 데 도움이 됩니다. 또한 두 기술은 모두 운영 체제, 컴퓨터 하드웨어, 설치된 소프트웨어의 관리 정보에 대한 로컬 및 원격 액세스를 제공합니다.