Search Results

0
votes

What’s a Windows text editor that matches this criteria …

You also might want to take a look at EditPlus. …
1
vote

Invalid file descriptor problem with Git on Windows

git on Win32 is known to be iffy. Have you tried the latest msysgit? It's a port of 1.6.0.2 (released September 23rd.) A …
5
votes

Password Cracking Windows Accounts

Obviously, if someone has physical access to the machine, all credentials stored can be considered compromised. If one can, for example, boot from an USB device or optical drive, one can us …
0
votes

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

I'm shooting blind here, but I've very often found that long delays in service startups are directly or indirectly caused by network function timeouts, often when attemting to contact a domain cont …
2
votes

How do I know if Windows has just recovered from a BSOD?

You can look for a memory or kernel dump file with a recent creation time, if dump file generation has been enabled (or, rather, not disabled since it's on by default.) …
1
vote

Explore containing folder instead of open containing folder

When invoking ShellExecute(), use the explore verb instead of the open verb: http://msdn.microsoft.com/en-u …
1
vote

installer for net 2.0 application for windows98

Do not use Visual Studio 2008 if you intend to deploy to Windows 9x or ME. VS2008 does not support these operating systems anymore, and if you're stuck with them you should use VS2005 or e …
0
votes

Windows temporary files behaviour - are they deleted by the system?

No, this is not true. Basically, your app is responsible for cleaning up its own mess. If you don't, temporary files will accumulate over time. …
4
votes

How does Windows determine/handle the DOS short name of any given file?

If I were you, I would never rely on any version of any file system driver (be it Microsoft's, be it another OS's) to be consistent about the algorithm it uses to generate short fi …
2
votes

QT GUI internals - widget painting?

The QWindowsXPStyle documentation has this to say: "Warning: This style is only available on the Windo …
0
votes

Where to write log for Windows app

You could try somewhere under the CommonAppData folder - i.e., CommonAppData\YourAppName\Logs - provided that you ensure size limits and/or periodic cleanups. People are used to periodically clean …
0
votes

Setting a variable from an executable

Edit: Romulo A. Ceccon posted a much better solution which doesn't involve any file system access and dirty tricks. Left this here for …
15
votes

How can I make a file trully immutable (non-deletable and read-only)?

This is one of the "what would happen if that were true?" questions. It has nothing to do with the operating system, the points apply equally to any general purpose computer. Imagine that t …
2
votes

Compiling OpenSSL on windows

Copy C:\Program Files\Microsoft Visual Studio 9.0\VC\Include\io.h under the name unistd.h in the same directory and retry the build. …