fix: remove restartapplications flag in updater

This commit is contained in:
2026-03-08 00:25:32 +01:00
parent dbd5e79678
commit e47efab901
+1 -1
View File
@@ -144,7 +144,7 @@ def download_update(latest_version):
f.write(response.content) f.write(response.content)
if not os.path.exists(new_filename): if not os.path.exists(new_filename):
raise FileNotFoundError("Executable not found") raise FileNotFoundError("Executable not found")
subprocess.run([new_filename, "/SILENT", "/SUPPRESSMSGBOXES", "/NORESTART", "/RESTARTAPPLICATIONS", "/SP-"]) subprocess.run([new_filename, "/SILENT", "/SUPPRESSMSGBOXES", "/NORESTART", "/SP-"])
subprocess.Popen(["SoftwareManager.exe"]) subprocess.Popen(["SoftwareManager.exe"])
time.sleep(0.5) time.sleep(0.5)