Search Results

1
vote

Enumerate Windows user group members on remote system using c#

This should be easy to do using WMI. Here you have a pointer to some docs: WMI Documentation for Win32_UserAcc …
-2
votes

How do I make Windows aware of a service I have written in Python?

A well written service (and most services written as described in the links posted by Espo) are auto-registering, that meaning that when passed "install" on the command line, they should register t …
0
votes

Getting an error when starting WAMP - “VirtualHost *:80 — mixing * ports and non-* ports with a NameVirtualHost address is not supported, proceeding with undefined results”

Well, it seems the problem there is the way (and order) in which you assign the ports. Basically, *:80 means "use port 80 for all hosts in this configuration". When you do this, Apache tri …
2
votes

Is there a way to redefine malloc at link time on Windows?

I think it depends in which order you link the files. I think you need to link your custom function first, then the import library. …
4
votes

Request UAC elevation from within a Python script?

It seems there's no way to elevate the application privileges for a while for you to perform a particular task. Windows needs to know at the start of the program whether the application requires ce …
0
votes

How do I transfer a file using wininet that is readable by a php script?

Here's a general description of the things involved in that. Basically, you have to cr …
0
votes

How can I wrap a call to an .exe (with arguments) with another .exe?

You might try this: http://www.abyssmedia.com/quickbfc/ If you want something really, really small, you'd probably need to m …
3
votes

Reuse Edit Control as Command Window

I think you'd be better off creating a subclass of CEdit and limiting filtering key-presses. I suppose the hard part is not letting the user move the caret to the prompt area, but you can probably …