Переглянути джерело

feat(updater): use full path to msiexec (#4738)

Lucas Fernandes Nogueira 3 роки тому
батько
коміт
f116ee6a12
2 змінених файлів з 7 додано та 2 видалено
  1. 5 0
      .changes/msiexec-full-path.md
  2. 2 2
      core/tauri/src/updater/core.rs

+ 5 - 0
.changes/msiexec-full-path.md

@@ -0,0 +1,5 @@
+---
+"tauri": patch
+---
+
+Use full path to `msiexec.exe` in the updater.

+ 2 - 2
core/tauri/src/updater/core.rs

@@ -802,7 +802,7 @@ fn copy_files_and_run<R: Read + Seek>(
           "Start-Process",
           "-Wait",
           "-FilePath",
-          "msiexec",
+          "C:\\Windows\\system32\\msiexec.exe",
           "-ArgumentList",
         ])
         .arg("/i,")
@@ -814,7 +814,7 @@ fn copy_files_and_run<R: Read + Seek>(
       if powershell_install_res.is_err() {
         // fallback to running msiexec directly - relaunch won't be available
         // we use this here in case powershell fails in an older machine somehow
-        let _ = Command::new("msiexec.exe")
+        let _ = Command::new("C:\\Windows\\system32\\msiexec.exe")
           .arg("/i")
           .arg(found_path)
           .args(msiexec_args)