Add remote desktop start/stop commands and process with server support

This commit is contained in:
Stone_Red
2026-06-17 00:02:33 +02:00
parent 67852bb344
commit 8d1cd6d369
5 changed files with 118 additions and 2 deletions
+2 -1
View File
@@ -15,7 +15,8 @@ public static class ProcessManifest
private static readonly Dictionary<Type, ProcessManifestFlags> map = new()
{
{ typeof(DesktopProcess), ProcessManifestFlags.Singleton | ProcessManifestFlags.System },
{ typeof(CliProcess), ProcessManifestFlags.Singleton | ProcessManifestFlags.System }
{ typeof(CliProcess), ProcessManifestFlags.Singleton | ProcessManifestFlags.System },
{ typeof(RemoteDesktopProcess), ProcessManifestFlags.Singleton }
};
public static bool HasFlag<T>(ProcessManifestFlags flag) where T : Process