8000 GitHub - Bip901/RunOnStartup: A cross-platform .NET library to register programs to run at computer startup.
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Bip901/RunOnStartup

Repository files navigation

RunOnStartup

NuGet version

A cross-platform .NET library to register programs to run at computer startup.

Usage

using RunOnStartup;

// Define a unique key - this string will identify your program to unregister later
const string UNIQUE_NAME = "cool-executable-42dad1492ea57616";

// Register an executable to run whenever the current user signs in
RunOnStartupManager.Instance.Register(UNIQUE_NAME, @"/path/to/executable", allUsers: false);

// To unregister:
RunOnStartupManager.Instance.Unregister(UNIQUE_NAME, allUsers: false);

About

A cross-platform .NET library to register programs to run at computer startup.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

0