http://bugs.winehq.org/show_bug.cgi?id=3105
------- Additional Comments From rob@codeweavers.com 2006-29-06 11:23 ------- spoolsv.exe is a service. First you need to add the service to the registry, then you need to start it with StartService, like this:
SC_HANDLE scm = OpenSCManager(NULL, NULL, SC_MANAGER_CONNECT); SC_HANDLE service = OpenService(scm, "SPOOLER", SERVICE_START); BOOL ret = StartService(service, 0, NULL); if (!ret) printf("StartService failed with error %ld\n", GetLastError());