dd
dd
Did you try running [psexec](https://docs.microsoft.com/en-us/sysinternals/downloads/psexec) with the `-u` switch? Or do you have an example program that provides this functionality? The "Run As..." dialog exists for about the same reason...
Unfortunately I have no TS setup and there seems to be no error code shown nor any kind of logging/tracing going on. `Process.UserName` is set to `SYSTEM` (`_tcsncpy_s(Process.UserName, UNLEN, _T("SYSTEM"),...
`ERROR_INSUFFICIENT_BUFFER` directly from `LookupAccountSid`? That's surprising, since the account username is typically smaller than 256 (`UNLEN`) characters and the domain name is typically smaller than 260 (`MAX_PATH`) characters. My main...
Interesting. Although seeing your snippet: I just remembered that the error code is only set when an error occurs, otherwise I think a successful call doesn't set the errorlevel for...
Looking at the ReactOS code: Curious that ReactOS does `OpenProcessToken(hProcess, TOKEN_QUERY, &hProcessToken)` betwen instead of `TOKEN_READ` as used in ntop. Want to try with `TOKEN_QUERY` instead? (Note: TOKEN_READ = TOKEN_QUERY...
Checked around a bit ([Well-known SIDs](https://docs.microsoft.com/en-us/windows/win32/secauthz/well-known-sids)) and there values that have special meaning (e.g. `S-1-1-0` for 'null' and `S-1-5-32-555` for `DOMAIN_ALIAS_RID_REMOTE_DESKTOP_USERS` (thanks Microsoft)). Since it's non-null, do you mind printing/checking...
That's particular. Maybe I should add a command-line option for `SeDebugPrivilege`? (Or maybe `PROCESS_ALL_ACCESS`)
Is it possible SSLv23 references got yanked off from OpenSSL? Because I recently upgraded my system to something that's based on Ubuntu 22.04 LTS, and I'm getting `no references to...
The Discussions feature has been available for a little while now, and can be enabled per repository.
@s-ludwig The following is a server log trace and stacktrace. Hope this helps. ``` -------------------- HTTP server request: -------------------- GET /%3C HTTP/1.1 Host: localhost:4287 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64;...