diff --git a/installer/PowerToysSetupCustomActionsVNext/CustomAction.cpp b/installer/PowerToysSetupCustomActionsVNext/CustomAction.cpp index 968fcc2530..40c3d5b0e8 100644 --- a/installer/PowerToysSetupCustomActionsVNext/CustomAction.cpp +++ b/installer/PowerToysSetupCustomActionsVNext/CustomAction.cpp @@ -1549,7 +1549,7 @@ UINT __stdcall TerminateProcessesCA(MSIHANDLE hInstall) } processes.resize(bytes / sizeof(processes[0])); - std::array processesToTerminate = { + std::array processesToTerminate = { L"PowerToys.PowerLauncher.exe", L"PowerToys.Settings.exe", L"PowerToys.AdvancedPaste.exe", @@ -1584,12 +1584,14 @@ UINT __stdcall TerminateProcessesCA(MSIHANDLE hInstall) L"PowerToys.MouseWithoutBordersService.exe", L"PowerToys.CropAndLock.exe", L"PowerToys.EnvironmentVariables.exe", + L"PowerToys.QuickAccess.exe", L"PowerToys.WorkspacesSnapshotTool.exe", L"PowerToys.WorkspacesLauncher.exe", L"PowerToys.WorkspacesLauncherUI.exe", L"PowerToys.WorkspacesEditor.exe", L"PowerToys.WorkspacesWindowArranger.exe", L"Microsoft.CmdPal.UI.exe", + L"Microsoft.CmdPal.Ext.PowerToys.exe", L"PowerToys.ZoomIt.exe", L"PowerToys.exe", }; diff --git a/src/modules/Workspaces/WorkspacesCsharpLibrary/Data/ApplicationWrapper.cs b/src/modules/Workspaces/WorkspacesCsharpLibrary/Data/ApplicationWrapper.cs index 5bf07b9fc1..1b5cbb258b 100644 --- a/src/modules/Workspaces/WorkspacesCsharpLibrary/Data/ApplicationWrapper.cs +++ b/src/modules/Workspaces/WorkspacesCsharpLibrary/Data/ApplicationWrapper.cs @@ -10,10 +10,10 @@ public struct ApplicationWrapper { public struct WindowPositionWrapper { - [JsonPropertyName("x")] + [JsonPropertyName("X")] public int X { get; set; } - [JsonPropertyName("y")] + [JsonPropertyName("Y")] public int Y { get; set; } [JsonPropertyName("width")]