Open theflakes opened 3 years ago
Is there a way to read the ACL entries attached to a registry key?
Check out windows-acl crate. Should be something like
windows-acl
use windows_acl::acl::ACL; let acl = ACL::from_registry_path("CURRENT_USER\\Software", false, true)?;
Is there a way to read the ACL entries attached to a registry key?