Hi Wiebe,

Den 05-03-2014 21:40, Wiebe Cazemier skrev:
> I'm trying to get my auto-updater to work for my Qt 5.1 project
> (running on Windows 7 32 bit, but Windows XP has the same problem).
> It downloads an installer, starts it, and quits itself. The problem
> is that when the application quits, the installer is killed along
> with it, regardless of the fact that the process is started
> detached.

For this reason, I don't use QProcess but go for Windows specific code 
to run my upgrade executable:

QString path = QDir::toNativeSeparators(d->downloader->path());
ShellExecuteW(0, L"runas", (wchar_t*)path.utf16(), 0, 0, SW_NORMAL);

Bo.

-- 
Bo Thorsen, European Engineering Manager, ICS
Meet me at our quickstarts across Europe in March.
London, Copenhagen, Hamburg, Munich and Zurich.
See this page: http://ics.com/qt-quickstart
_______________________________________________
Interest mailing list
Interest@qt-project.org
http://lists.qt-project.org/mailman/listinfo/interest

Reply via email to