From e6e6387f9502d25126d997e7f267cda6f75a8991 Mon Sep 17 00:00:00 2001 From: Sascha Cowley <16543535+SaschaCowley@users.noreply.github.com> Date: Mon, 19 Aug 2024 12:13:42 +1000 Subject: [PATCH] Added `nvda_eoaProxy.exe` to the list of files to be deleted by the installer --- source/installer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/installer.py b/source/installer.py index 8523a12d734..89b887cbbc7 100644 --- a/source/installer.py +++ b/source/installer.py @@ -807,10 +807,10 @@ def install(shouldCreateDesktopShortcut: bool = True, shouldRunAtLogon: bool = T # which executables exist after copying program files. # Some exes are no longer used, but we remove them anyway from legacy copies. # nvda_service.exe was removed in 2017.4 (#7625). - # TODO: nvda_eoaProxy.exe should be added to this list in 2024.1 (#15544). + # nvda_eoaProxy.exe existed to support Windows 7 Ease of Access, and was removed in 2024.1 (#15577). _deleteFileGroupOrFail( installDir, - _nvdaExes.union({"nvda_service.exe"}), + _nvdaExes.union({"nvda_service.exe", "nvda_eoaProxy.exe"}), numTries=6, retryWaitInterval=0.5, )