docs.rs failed to build autorun-0.1.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
autorun
A simple tool to manage Windows startup (autorun) entries via the registry Run key.
Manipulates the standard Windows autorun locations:
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\RunHKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run
Installation
CLI Usage
# List current-user entries (default)
# List all entries (HKCU + HKLM)
# List local-machine entries only
# Add an entry
# Add an entry to local machine (requires admin)
# Check if an entry exists
# Remove an entry
# Remove from local machine
Library API
use ;
// List entries
let entries = list.unwrap;
for e in &entries
// Add / check / remove
add.unwrap;
assert!;
remove.unwrap;
// List all scopes (HKLM silently skipped without admin)
let all = list_all.unwrap;