From 03ab0f619fe82ed537bb7b0206e530af7466f110 Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Tue, 7 Jan 2020 16:37:21 -0600 Subject: [PATCH] WinFSP codes --- src/renderer/ipc/DependencyIPC.js | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/src/renderer/ipc/DependencyIPC.js b/src/renderer/ipc/DependencyIPC.js index 6e884f7..ffb9907 100644 --- a/src/renderer/ipc/DependencyIPC.js +++ b/src/renderer/ipc/DependencyIPC.js @@ -72,7 +72,15 @@ const addListeners = (ipcMain, standardIPCReply) => { }; if (data.IsWinFSP) { helpers - .performWindowsUninstall(["WinFsp 2019.1", "WinFsp 2019.2", "WinFsp 2019.3 B1", "WinFsp 2019.3 B2"]) + .performWindowsUninstall([ + "WinFsp 2019.1", + "WinFsp 2019.2", + "WinFsp 2019.3 B1", + "WinFsp 2019.3 B2", + "WinFsp 2019.3 B3", + "WinFsp 2019.3 B4", + "WinFsp 2019.3 B5" + ]) .then(uninstalled => { if (uninstalled) { standardIPCReply(event, Constants.IPC_Install_Dependency_Reply, { @@ -99,4 +107,4 @@ const addListeners = (ipcMain, standardIPCReply) => { module.exports = { addListeners -}; \ No newline at end of file +};