Skip to content

Aetopia/AppLifecycleOptOut

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AppLifecycleOptOut

A tool to prevent UWP apps from being suspended.

Context

UWP apps are governed by an application model, that defines how their execution states are handled.
The following image showcases the possible app model states, an application may go through.

The main intent of this application model is for power saving and reduction in system usage.

In certain instances, it might be desirable to prevent an app from suspending, potential reasons include:

  1. For performing prolonged workloads when in the background.
  2. Prevention of undesirable behavior occuring in apps due to UWP app suspension.

Luckily, a developer may use the following for prolonged workloads that must be done when an UWP app is in the background:

  1. ExtendedExecutionSession:
    The following may be used to request more time for performing the specified workload before being suspended by the operating system, unfortunately this simply delays suspension doesn't prevent it.

  2. ExtendedExecutionForegroundSession:
    The following may be used to prevent an UWP app from being suspended by the operating system, although this fulfills our needs, it prevents an UWP app from being published on the Microsoft Store.

  3. IPackageDebugSettings::EnableDebugging:
    This following may be used to enable debug mode for a UWP app, when enabled the following happens:

    • Optionally enables debugger attach on activation.
    • Disables activation timeouts.
    • Disables automatic process suspension.
    • Disables automatic process termination.
    • Disables automatic process resumption.

Out of the 3 methods, the 3rd one maybe used safely with any UWP app to prevent automatic suspension by the operating system.

Usage

  1. Download the latest release from GitHub Releases.

  2. Use the following command in PowerShell to obtain current installed UWP apps along with their package family and full names.

    Command:

    $AppxPackages = Get-AppxPackage 
    Get-StartApps | 
    ForEach-Object { 
        [Object]$StartApp = $_
        [Object]$AppxPackage = $AppxPackages |  Where-Object { $StartApp.AppID -like "$($_.PackageFamilyName)*" }
        if ($AppxPackage) { 
            Write-Host "$($StartApp.Name):`n`t$($AppxPackage.PackageFamilyName)`n`t$($AppxPackage.PackageFullName)`n" 
        } 
    }

    Output:

    Settings:
            windows.immersivecontrolpanel_cw5n1h2txyewy
            windows.immersivecontrolpanel_10.0.2.1000_neutral_neutral_cw5n1h2txyewy
    
  3. Provide the full package names of the UWP apps that shouldn't be suspended by the operating system to AppLifecycleOptOut.exe like this:

    AppLifecycleOptOut.exe PackageFamilyName1 PackageFullName1 PackageFamilyName2 PackageFullName2

Important

  • You need to simply run the program, everytime you log in.
  • If possible always specify package family names, this way the program can resolve package full names correctly.
  • Use package full names, if you need to use the program with any loose package.

Building

  1. Install GCC and UPX for optional compression.
  2. Run Build.cmd.