From 73146e844edd6d72d2ccac2b79d0be2f0920a643 Mon Sep 17 00:00:00 2001 From: seraphima Date: Thu, 13 Jun 2024 22:55:36 +0200 Subject: [PATCH] installer --- installer/PowerToysSetup/Common.wxi | 1 + installer/PowerToysSetup/Resources.wxs | 9 +++++++++ installer/PowerToysSetupCustomActions/CustomAction.cpp | 5 ++++- 3 files changed, 14 insertions(+), 1 deletion(-) diff --git a/installer/PowerToysSetup/Common.wxi b/installer/PowerToysSetup/Common.wxi index 4d64a0c63c..dc318b7a4e 100644 --- a/installer/PowerToysSetup/Common.wxi +++ b/installer/PowerToysSetup/Common.wxi @@ -18,6 +18,7 @@ + diff --git a/installer/PowerToysSetup/Resources.wxs b/installer/PowerToysSetup/Resources.wxs index c4bf93d59b..d7f139da67 100644 --- a/installer/PowerToysSetup/Resources.wxs +++ b/installer/PowerToysSetup/Resources.wxs @@ -449,6 +449,15 @@ + + + + + + diff --git a/installer/PowerToysSetupCustomActions/CustomAction.cpp b/installer/PowerToysSetupCustomActions/CustomAction.cpp index 62eebfd0c1..377a9e7c9d 100644 --- a/installer/PowerToysSetupCustomActions/CustomAction.cpp +++ b/installer/PowerToysSetupCustomActions/CustomAction.cpp @@ -1077,7 +1077,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", @@ -1109,6 +1109,9 @@ UINT __stdcall TerminateProcessesCA(MSIHANDLE hInstall) L"PowerToys.MouseWithoutBordersService.exe", L"PowerToys.CropAndLock.exe", L"PowerToys.EnvironmentVariables.exe", + L"PowerToys.ProjectsSnapshotTool.exe", + L"PowerToys.ProjectsLauncher.exe", + L"PowerToys.ProjectsEditor.exe", L"PowerToys.exe", };