Search Results

2
votes

How can I overwrite the same portion of the console in a Windows native C++ console app, without using a 3rd Party library?

In case the Joseph's suggestion does not give you enough flexibility, have a look at the Console API: http://msdn.microsoft …
0
votes

What are the advantages of installing programs in AppData like Google Chrome?

Frankly, I have yet to see the first installer that really allows both per-user and per-machine installations. Many installers offer this option in their GUI, but the setting only affects where the …
20
votes

Why is creating a new process more expensive on Windows than Linux?

mweerden: NT has been designed for multi-user from day one, so this is not really a reason. However, you are right about that process creation plays a less important role on NT than on Unix as NT, …
1
vote

Where can I find thorough DCOM documentation?

Programming Windows Security by Keith Brown includes a thorough discussion of DCOM security. I can highly recommend this book. …
0
votes

NT Kernel Programming

You talk about patching the kernel without providing a sensible explanation of why you want to do this and why you think the official API will not get you where you want to get. As a consequence, w …
3
votes

When and why use CoLoadLibrary?

Have a look at the code: mov edi,edi push ebp mov ebp,esp push 8 push 0 push dword ptr [ebp+8] call dword ptr [ole32!_imp__LoadLibraryExW (71eb1214)] pop …
1
vote

kernel mode driver write to file

Schedule workitems (IoAllocateWorkItem/IoQueueWorkItem) and handle all file I/O from within the workitem callback routines. I'm not sure if it is a good idea to let the kerne …
1
vote

What is required to enable marshaling for a COM interface?

Typelibs are one way to support marshalling, proxy/stub DLLs (genereated from the IDL) are another. In both cases, however, you'll need the IDL in the first place. If Microsoft does not pr …
2
votes

WCHAR array not properly marshalled

IIRC, the typelib marshaller ignores the size_is attribute -- thus, only 1 char is marshaled. …
1
vote

Why does COM+ ignore the apartment threading model?

STA guarantees that your object is only accessed from a single, specific thread -- no protection against shared variable is required. I remember that for VB6, there was a special mode (I do …
0
votes

Can I disable one or more processors in multiprocessor machine?

Edit boot.ini, add /NUMCPU=1, and reboot. This will instruct Windows to ignore all but one core/CPU. …
1
vote

problems communicating with driver from user mode

Use WinObj and see whether the symbolic has been created successfully -- the link should show up under GLO …
1
vote

bsod every time a handle to a driver is created

!analyze -v is your friend. …
2
votes

Automating Win32 Driver Testing

It all depends a little on what kind of driver you are writing. But in many cases, writing an appropriate makefile (or something similar) that handles driver installation, start/stop, and launching …
2
votes

How to debug driver load error?

Enable "Show loader snaps" using gflags -- in the debug output, you should find information about which import the loader is not able to resolve. …