fix: switch updater to silent instead of verysilent and open new exe after installation

This commit is contained in:
2026-03-07 23:57:23 +01:00
parent 1d969e5b9c
commit 925579b9e0
+2 -1
View File
@@ -144,7 +144,8 @@ def download_update(latest_version):
f.write(response.content)
if not os.path.exists(new_filename):
raise FileNotFoundError("Executable not found")
subprocess.run([new_filename, "/VERYSILENT", "/SUPPRESSMSGBOXES", "/NORESTART", "/SP-"])
subprocess.run([new_filename, "/SILENT", "/SUPPRESSMSGBOXES", "/NORESTART", "/RESTARTAPPLICATIONS", "/SP-"])
subprocess.Popen(["SoftwareManager.exe"])
time.sleep(0.5)
msg = QMessageBox()