I've been trying to use the Windows Authentication low level credential API functions to backup/restore credentials.
http://msdn.microsoft.com/en-us/library/aa374731%28VS.85%29.aspx#low_level_credentials_management_functions
However, I've found that while I can use CredEnumerate to obtain every credential on the system, all the pass...
I am using French Localized Windows Operating system.
I am using GetUserName() Windows API to get current logged in username for the process.
On French Windows it returns "Système" instead of "System" for the Service process. Because of this our System Software failing in a specific scenario.
Is there any way to get English UserName...
I am working on a WinForm application, that allows working to work with "projects" (think about the application as Visual Studio, and projects as VS Solutions).
My question is - where should the application keep its logging files?
Some requirements include:
the application might not be running as an administrator (so saving in the %P...
How can I find out and set if an User is enabled or disabled using SQL commands? Same problem for windows policy enabled/disabled for an User.
...
I'm having trouble getting a simple piece of fortran90 code to work. Here is the code for helloworld.f90:
PROGRAM hello
IMPLICIT NONE
PRINT *,"Hello world!"
END PROGRAM hello
When I compile and build, there are no errors. But as soon as I click on execute, this error appears in the command prompt:
'"./helloworld"' is not recogniz...
I have bunch of phpunit tests, part of them using selenium, and i need to know wheteher selenium server is running or not (windows). Is there way to check it from php?
...
I want to know if the global descriptor table resides in each process memory space or it is shared among all processes.
What about LDT?
Where is the LDTR stored?
Thank you.
...
Hello, I've been experiencing a problem with Virtualbox on my Fedora 13.
When I try to setup virtual machine instance with Windows it just hangs the system with no reaction on keyboard commands with no respond to anything except physical halting. Please help what might be the problem?
Sultan
...
What little information I managed to dig out on developing in-game overlays (similar to what Steam does) mentions having to intercept calls graphics API's frame swapping function, and hook my own drawing routine in it.
This appears to be what Mumble (a gaming VoIP) is doing. Since I've never done anything that involves hooking, and sinc...
Hello,
I very new to the world of gstreamer. I was wondering, if it's possible to stream windows webcam via gstreamer? The only package i have seen so far is for linux. v4l2 (video for linux).
Is there also a package for windows webcams? what is the correct python syntax?
DJ
...
I need to find out programatically whether a connection is a Bluetooth connection rather than a physically wired connection to a comm port.
This is on Windows using .NET.
...
I am opening a file with read access and allowing subsequent read|write|delete file share access to the file (tailing the file). If the file is deleted during processing is there a way to detect that the file is pending delete (see Files section http://msdn.microsoft.com/en-us/library/aa363858(v=VS.85).aspx)? If some outside process (the...
The MSDN is super confusing on this one. What is their relation? Who has an IP address (or several) - an adapter or an interface? In many places MSDN talks about them as if they're synonymous, but sometimes they make a distinction.
...
I have a long-running console-based application Sender that sends simple text to STDOUT using non-buffered output such as cout << "Message" << flush(). I want to create an MFC dialog-based application (named Receiver) that starts Sender and can read it's output. Receiver should also be able to detect when Sender has died, or be able to...
I have a long-running console-based application Sender that sends simple text to STDOUT using non-buffered output such as cout << "Message" << flush(). I want to create an MFC dialog-based application (named Receiver) that starts Sender and can read it's output. Receiver should also be able to detect when Sender has died, or be able to k...
I'm using ActivePerl on a Win 7 box and I want to use the Proc::Reliable CPAN module. It downloaded and installed properly but when I tried to run the following code, it failed at run
my $newProc = Proc::Reliable->new()
$newProc->run("perl.exe -e print 'hello world'");
I tried a couple things, such as testing the status and trying to...
I was wondering it for a long time since Apple released iTunes for Windows. What did they use to write iTunes for Windows? It seems completely with its own UI components and everything is contained inside it. It even uses QuickTime resources files. Can we assume that they've Cocoa working with windows. Anyway, my main question is, is the...
I see that WinHTTP is not reentrant (1,2). Is WinINET reentrant?
We have an ActiveX control that does synchronous HTTP with WinINET. If the browser (in javascript) fires an asynchronous http request (ajax) and then immediately calls the ActiveX operation (same IE process), it seems like the two operations are interleaving, perhaps reent...
I've noticed a couple other questions about handling this, but all seem to suffer from:
Not working on windows
requiring the child to finish before retrieving output
What I would like to do is call a program (eg. tshark.exe) and process its output while it runs.
To date I have tried:
Backticks
Run3
Proc::Reliable
all without any...
When using sc create ServiceName binPath= "the path", how can arguments be passed to the Installer class's Context.Parameters collection?
My reading of the sc.exe documentation is that such arguments could only be passed on the end of binPath, but I have not found an example or been able to successfully do this.
...