AutoLaunch 1.0.1

dotnet add package AutoLaunch --version 1.0.1
                    
NuGet\Install-Package AutoLaunch -Version 1.0.1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="AutoLaunch" Version="1.0.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="AutoLaunch" Version="1.0.1" />
                    
Directory.Packages.props
<PackageReference Include="AutoLaunch" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add AutoLaunch --version 1.0.1
                    
#r "nuget: AutoLaunch, 1.0.1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package AutoLaunch@1.0.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=AutoLaunch&version=1.0.1
                    
Install as a Cake Addin
#tool nuget:?package=AutoLaunch&version=1.0.1
                    
Install as a Cake Tool

AutoLaunch

AutoLaunch

GitHub repo size GitHub License NuGet Version NuGet Downloads AutoLaunchTestTool

English | 简体中文

AutoLaunch provides the ability to automatically run any application or executable at startup or login, supporting Windows, Linux, and macOS systems.

AutoLaunchTestTool is a graphical test tool for this project based on Avalonia, helping you quickly verify and experiment with auto-launch features.

✨ Features

  • 🌍 Cross-Platform Support: Windows, Linux, macOS
  • 🔧 Multiple Engines: Multiple implementations for each platform
  • 🎯 Ease of Use: Unified API for all platforms
  • 🧱 AOT Support: Fully supports AOT and trimming
  • 📦 Zero Dependencies: No third-party library dependencies

Installation

dotnet CLI:

dotnet add package AutoLaunch

Package Manager Console:

Install-Package AutoLaunch

🚀 Quick Start

AutoLaunchBuilder provides a unified configuration API for all platforms, eliminating constructor differences and enabling multi-platform configuration.

Basic Usage

using AutoLaunch;

// Auto configuration for current program
var autoLauncher = new AutoLaunchBuilder().Automatic().Build();

// Synchronous enable
autoLauncher.Enable();
// Synchronous disable
autoLauncher.Disable();
// Synchronous status check
bool enabled = autoLauncher.GetStatus();

// Asynchronous enable
await autoLauncher.EnableAsync();
// Asynchronous disable
await autoLauncher.DisableAsync();
// Asynchronous status check
bool enabled = await autoLauncher.GetStatusAsync();

Custom Configuration

var autoLauncher = new AutoLaunchBuilder()
    .SetAppName("MyApp")
    .SetAppPath("/path/to/myapp")
    .SetArgs("arg1", "arg2")
    .AddArgs("arg3")
    .SetWorkScope(WorkScope.CurrentUser) // Set work scope for auto-launch
    .SetWindowsEngine(WindowsEngine.Registry) // Use Registry on Windows, ignored on other platforms
    .SetLinuxEngine(LinuxEngine.Freedesktop) // Use Freedesktop on Linux, ignored on other platforms
    .SetMacOSEngine(MacOSEngine.AppleScript) // Use AppleScript on macOS, ignored on other platforms
    .SetIdentifiers("com.example.myapp") // Add Bundle Identifier for macOS
    .SetExtraConfigIf(OperatingSystem.IsLinux(), "X-GNOME-Autostart-enabled=true") // Add extra config for Linux (Freedesktop standard)
    .SetExtraConfigIf(OperatingSystem.IsMacOS(), "<key>KeepAlive</key><true/>") // Add extra config for macOS (LaunchAgent standard)
    .Build();

autoLauncher.Enable();

Safe Mode

Exceptions will not be thrown actively in safe mode.

// Build a safe mode instance
var autoLauncher = new AutoLaunchBuilder().Automatic().BuildSafe();

// Try to enable, returns true/false for success/failure
bool success = autoLauncher.TryEnable();

if (!success)
{
    // Get the last exception
    Exception? lastException = autoLauncher.TakeLastException();
    if (lastException is PermissionDeniedException) Console.WriteLine("Permission denied.");
    else Console.WriteLine($"Unable to enable auto launch: {lastException?.Message}");
}

💡 Platform & Engine Details

Windows

Registry

Implements startup via registry entries.

  • WorkScope.CurrentUser: Creates registry entry under HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run.
  • WorkScope.AllUser: Creates registry entry under HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run (requires admin rights).

StartupFolder

Implements startup by adding .bat files to the Startup folder.

  • WorkScope.CurrentUser: Creates file in C:\Users\[user]\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup.
  • WorkScope.AllUser: Creates file in C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup (requires admin rights).

TaskScheduler

Implements startup via Task Scheduler, can start programs requiring admin rights (requires admin rights).

Linux

Freedesktop

Creates Desktop entries (.desktop) following the FreeDesktop.org standard.

  • WorkScope.CurrentUser: Creates file under ~/.config/autostart/.
  • WorkScope.AllUser: Creates file under /etc/xdg/autostart/ (requires admin rights).

macOS

LaunchAgent

Creates .plist files following Launch Agents.

  • WorkScope.CurrentUser: Creates file in ~/Library/LaunchAgents/.
  • WorkScope.AllUser: Creates file in /Library/LaunchAgents/ (requires admin rights).

AppleScript

Uses AppleScript via System Events to manage login items (needs automation permission). This engine only supports --hidden and --minimized arguments, and seems to be unsupported since macOS 13 (Ventura).

📝 API Documentation

AutoLaunchBuilder

This type is used to build AutoLauncher or SafeAutoLauncher instances with chainable configuration methods. The configured engine can be set for all platforms, but only takes effect on the corresponding platform.

  • Automatic() Automatically configures app name and path for the current program.
  • SetAppName(string) Set application name.
  • SetAppPath(string) Set application path.
  • SetArgs(params string[]) Set startup arguments, overwriting previous args.
  • AddArgs(params string[]) Add startup arguments.
  • SetWorkScope(WorkScope) Set scope (WorkScope.CurrentUser/WorkScope.AllUser).
  • SetWindowsEngine(WindowsEngine) Set Windows engine, see Windows engines for details.
  • SetLinuxEngine(LinuxEngine) Set Linux engine, see Linux engines for details.
  • SetMacOSEngine(MacOSEngine) Set macOS engine, see macOS engines for details.
  • SetIdentifiers(params string[]) Set identifiers, for macOS LaunchAgent only.
  • AddIdentifiers(params string[]) Add identifiers.
  • SetExtraConfig(string) Set extra config, must match corresponding engine's format. Only for Linux Freedesktop and macOS LaunchAgent.
  • SetExtraConfigIf(bool, string) Conditionally set extra config.
  • Build() Build an AutoLauncher instance.
  • BuildSafe() Build a SafeAutoLauncher instance.

AutoLauncher

  • Enable() Enable auto launch.
  • Disable() Disable auto launch.
  • GetStatus() Get auto launch status.
  • EnableAsync() Enable auto launch asynchronously.
  • DisableAsync() Disable auto launch asynchronously.
  • GetStatusAsync() Get auto launch status asynchronously.
  • IsSupported() Check if the current OS supports auto launch.

SafeAutoLauncher

Inherited from AutoLauncher, does not throw exceptions on failure, instead uses return values and last exception info.

  • TryEnable() Try to enable, returns success/failure.
  • TryDisable() Try to disable, returns success/failure.
  • TryGetStatus() Try to check status, returns (success, enabled).
  • TryEnableAsync() Try to enable async.
  • TryDisableAsync() Try to disable async.
  • TryGetStatusAsync() Try to check status async, returns (success, enabled).
  • TakeLastException() Get last exception.

⚠️ Exceptions

Exception Description
AutoLaunchException Base exception for AutoLaunch
AutoLaunchBuilderException Builder config error
UnsupportedOSException Unsupported OS
PermissionDeniedException Permission denied
ExecuteCommandException Thrown when command execution fails

📜 License

Licensed under the MIT License.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.1 64 9/6/2025
1.0.0 109 9/5/2025
1.0.0-preview.4 129 9/4/2025
1.0.0-preview.3 124 9/4/2025
1.0.0-preview.2 125 9/4/2025
1.0.0-preview.1 116 9/2/2025