Search Results

5
votes

Safe remove USB-Drive using Win32 API?

See Microsoft Knowledge Base article Q165721: http://support.microsoft.com/kb/165721 -- includes full C source code …
1
vote

C compiler for Windows?

Cygwin offers full GCC support on Windows; also, the free Microsoft Visual C++ Express Edi …
2
votes

Elevating process privilege programatically?

You can indicate the new process should be started with elevated permissions by setting the Verb property of your startInfo object to 'runas', as follows: startInfo.Verb = "runas"; …
4
votes

Error 1053: the service did not respond to the start or control request in a timely fashion

If you continue down the road of trying to make your service interact with the user's desktop directly, you'll lose: even under the best of circumstances (i.e. "before Vista"), this is extremely tr …
4
votes

How to map a network drive to be used by a service

You'll either need to modify the service, or wrap it inside a helper process: apart from session/drive access issues, persistent drive mappings are only restored on an interactive logon, which serv …
7
votes

How do I create a symlink in Windows Vista?

Symbolic links in Windows are created using the CreateSymbolicLink API Function, which takes parameters very simil …
2
votes

Am I Running as a Service

The only way I've found to achieve this, is to check if a console is attached to the process in the first place, by accessing any Console object property (e.g. Title) inside a try/catch block. …
1
vote

Best way to clone IIS settings to new server?

The Microsoft Web Deployment Tool should allow you to do pretty much what you want. From the linked web …