WinFSP codes

This commit is contained in:
2020-01-07 16:37:21 -06:00
parent e0cf57de2e
commit 03ab0f619f

View File

@@ -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
};
};