winreg-rs
winreg-rs copied to clipboard
Read Registry Key ACL
Is there a way to read the ACL entries attached to a registry key?
Check out windows-acl
crate. Should be something like
use windows_acl::acl::ACL;
let acl = ACL::from_registry_path("CURRENT_USER\\Software", false, true)?;