SetACL functions for AutoIt and NSIS
SetACL - http://setacl.sourceforge.net/
SetACL is a set of routines for managing Windows permissions (ACLs) from the command line, from scripts and from programs.
Here is a function / macro that can be used to delete stubborn registry keys (like those left behind after driver uninstallations in the HKLM\SYSTEM\CurrentControlSet\Enum\Root\LEGACYxxx keys). At least a few people might find this useful.
AutoIt -
$setacl = '"X:\path\to\SetACL.exe"' Func _SetACL_DeleteKey($key) ; check if key exists RegRead($key, "") If @error 0 And @error -1 Then SetError(@error)
- Read more about SetACL functions for AutoIt and NSIS
- 1 comment
- Log in or register to post comments