Andrej Mihajlov
Andrej Mihajlov
> Yes, a global holding something like a Mutex would do the job. You could fill it in register and then drop it in the control handler on SERVICE_CONTROL_STOP and...
@Hawk777 makes sense. 👍
I think it's enough if you simply install the service once, mark it on-demand so the system doesn't autostart it. So then you don't have to repeat steps 3 and...
@danieleades No it's doesn't copy it anywhere and this can be verified by locating your service in Services pane on Windows, or using the [SC utility tool](https://learn.microsoft.com/en-us/windows/win32/services/configuring-a-service-using-sc) to print out...
Hi, I think we never fully implemented it to work with remote machine. I looked at [OpenSCManager]( https://learn.microsoft.com/en-us/windows/win32/api/winsvc/nf-winsvc-openscmanagerw) and it has the following remark at the bottom: > If the...
It definitely should error if it cannot connect to remote machine. I'd try setting database name to `ServicesActive` (WinAPI constant [C] `SERVICES_ACTIVE_DATABASE`) along with the name of remote computer to...
> > > Absolutely everything regarding the internal details of these errors are exposed > > > > > > Still don't understand why it's bad > > Again, see...
It would be great to add but that would require us digging into ioctl calls. How do you use -E? Does it return a token over stdout that you can...
Note that running tests on macOS require root, since we access `/usr/bin/pf`. Alternatively we could feature-gate integration tests, but of course it would be beneficial to have them running as...
> In this case the tests can't even be _built_. Look at the errors. My guess is that `pfvar.rs` must be re-generated with a newer version of bindgen or something....