EN
이 콘텐츠는 한국어로 제공되지 않아 영어 버전으로 표시됩니다.
2명 중 2명이 도움이 되는 것으로 평가 - 이 항목 평가

SHDeleteKey function

Deletes a subkey and all its descendants. This function removes the key and all the key's values from the registry.

Syntax


LSTATUS SHDeleteKey(
  _In_      HKEY hkey,
  _In_opt_  LPCTSTR pszSubKey
);

Parameters

hkey [in]

Type: HKEY

A handle to an open registry key, or one of the following predefined keys:

HKEY_CLASSES_ROOT
HKEY_CURRENT_CONFIG
HKEY_CURRENT_USER
HKEY_LOCAL_MACHINE
HKEY_PERFORMANCE_DATA
HKEY_USERS
pszSubKey [in, optional]

Type: LPCTSTR

The address of a null-terminated string specifying the name of the key to delete.

Return value

Type: LSTATUS

Returns ERROR_SUCCESS if successful, or a nonzero error code defined in Winerror.h otherwise. You can use the FormatMessage function with the FORMAT_MESSAGE_FROM_SYSTEM flag to retrieve a generic description of the error.

Remarks

Alternatively, use the RegDeleteKey or RegDeleteTree function.

Requirements

Minimum supported client

Windows 2000 Professional, Windows XP [desktop apps only]

Minimum supported server

Windows 2000 Server [desktop apps only]

Header

Shlwapi.h

Library

Shlwapi.lib

DLL

Shlwapi.dll (version 4.71 or later)

Unicode and ANSI names

SHDeleteKeyW (Unicode) and SHDeleteKeyA (ANSI)

 

 

Send comments about this topic to Microsoft

Build date: 11/28/2012

이 정보가 도움이 되었습니까?
(1500자 남음)

커뮤니티 추가 항목

추가
Microsoft는 MSDN 웹 사이트에 대한 귀하의 의견을 이해하기 위해 온라인 설문 조사를 진행하고 있습니다. 참여하도록 선택하시면 MSDN 웹 사이트에서 나가실 때 온라인 설문 조사가 표시됩니다.

참여하시겠습니까?
© 2013 Microsoft. All rights reserved.