The RegSetKeySecurity function sets the security of an open registry key.
LONG RegSetKeySecurity(
HKEY hKey, |
// open handle of key to set |
SECURITY_INFORMATION SecurityInformation, |
// descriptor contents |
PSECURITY_DESCRIPTOR pSecurityDescriptor |
// address of descriptor for key |
); |
Because subkeys are not ordered, any new subkey will have an arbitrary index.
This means the function may return subkeys in any order.
If the function succeeds, the return value is ERROR_SUCCESS.
If the function fails, the return value is a nonzero error code defined in WINERROR.H. You can use the FormatMessage function with the FORMAT_MESSAGE_FROM_SYSTEM flag to get a generic description of the error.
This function succeeds only if the following conditions are met:
If hKey is one of the predefined keys, the predefined key should be closed with RegCloseKey. That ensures that the new security information is in effect the next time the predefined key is referenced.
RegCloseKey, RegDeleteKey, RegGetKeySecurity, SECURITY_INFORMATION
file: /Techref/os/win/api/win32/func/src/f73_12.htm, 3KB, , updated: 2000/4/7 11:19, local time: 2024/11/5 04:47,
18.226.164.82:LOG IN ©2024 PLEASE DON'T RIP! THIS SITE CLOSES OCT 28, 2024 SO LONG AND THANKS FOR ALL THE FISH!
|
©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://linistepper.com/techref/os/win/api/win32/func/src/f73_12.htm"> RegSetKeySecurity</A> |
Did you find what you needed? |