We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
shortcut created by installer leads to eclient.pyw but its just path leading to python file so that shortcut should contain something like this:
pythonw C:/path/path/path/eclient.pyw
or you should make it run an executable like this:
#include <windows.h> int main() { // script to run char *command = "pythonw.exe eclient.pyw"; PROCESS_INFORMATION pi; STARTUPINFO si; ZeroMemory(&si, sizeof(si)); si.cb = sizeof(si); ZeroMemory(&pi, sizeof(pi)); if (CreateProcess(NULL, command, NULL, NULL, FALSE, CREATE_NEW_PROCESS_GROUP | DETACHED_PROCESS, NULL, NULL, &si, &pi)) { CloseHandle(pi.hProcess); CloseHandle(pi.hThread); // TerminateProcess(GetCurrentProcess(), 0); return 0; } else { return 1; } }
just compile and make shortcut point to it and thats it
The text was updated successfully, but these errors were encountered:
ok I'll look into it. Thanks!
Sorry, something went wrong.
No branches or pull requests
shortcut created by installer leads to eclient.pyw but its just path leading to python file so that shortcut should contain something like this:
or you should make it run an executable like this:
just compile and make shortcut point to it and thats it
The text was updated successfully, but these errors were encountered: