Qt D-bus Error , How to use Qt D-Bus under windows ?
-
For more information , After reviewed this answer :
https://stackoverflow.com/questions/34342061/specify-dbus-session-address-on-windows
i still can't set up it under my Machine, i obtain this error:

thank you in advance for your help -
@Alex42 Have you tried this windows dbus port from freedesktop.org?
Never tried it. Might be better than that archived dbus code you found on google. -
@Alex42 said in Qt D-bus Error , How to use Qt D-Bus under windows ?:
the problem it's how to run d-bus daemon on the windows , ( or how to use Qt D-Bus under Windows )
This is outside of Qt. I suggest you also search on the Internet.
-
@Alex42 said in Qt D-bus Error , How to use Qt D-Bus under windows ?:
how to use Qt D-bus on windows ?
In your main.cpp, before any other Qt code, paste this:
int main(int argc, char *argv[]) { #ifdef Q_OS_WINDOWS // This variable comes from dbus-env.bat qputenv("DBUS_SESSION_BUS_ADDRESS", "autolaunch:"); #endif
If you also have all the DBus files, DLLs etc. in the same directory as your .exe, it will work.