4
votes
root folder equivalent in windows
If you're running Windows CE then \ is the root directory. This resembles Unix's / root directory. This is the only kind of Windows where you can get a simple answer to your question.
If …
1
vote
How do I program a driver for a USB device for windows platform?
Seems to me that if you want to read wiring voltages then you need an A/D converter. Are you making your own A/D converter? If so, you've got some nice firmware programming to do on the device si …
0
votes
How to detect whether serial port is in use or not in .net
There are undocumented APIs to find all the handles that are open in the system, and then you could check which ones are open to serial ports. That's if the user will always be an administrator an …
1
vote
Why would WaitForSingleObject return WAIT_FAILED
Closing a handle while the handle is being waited on can also cause undefined behaviour.
…
1
vote
Force windows to refresh a disk FAT
Use Linux to create the partition as a hidden FAT32 partition. Linux will let you mount the partition and write files. Windows will not let you mount the partition and read files, and Windows wil …
0
votes
RCDATA terminator
You'd better put the trailing character in the file itself. If myfile.txt is stored in ANSI you need one trailing byte, if myfile.txt is stored in Unicode you need two trailing bytes, and your RCD …
0
votes
Force windows to refresh a disk FAT
As far as I can tell, Windows does caching at the disk level. However, if a partition has a type that Windows refuses to read or write (ext2, hidden FAT32, etc.) then that partition's contents sho …
1
vote
0
votes
VMware and iptables
After your edit, I suggest an experiment: on your physical machine, configure your NIC to disable all hardware acceleration.
…
0
votes
What causes Visual Studio 2005 Out-Of-Order Command Line Builds?
If devenv didn't crash for you when building in the IDE, you've been lucky.
The following workaround is obnoxious but it worked for me, sigh. Reboot and set the BIOS to allow only a single …
1
vote
VIM Ctrl-V Conflict with Windows Paste
If this line in your _vimrc troubles you:
behave mswin
then delete that line.
…
0
votes
How to programmatically associate a name like COM51 to a physical serial port in Microsoft Windows?
ComDBClaimPort
http://msdn.microsoft.com/en-us/library/ms800845.aspx
That only does part of the job though …
1
vote
how to disconnect a windows remote directory?
WNetCancelConnection2
But it's not the friendliest thing to do to people.
…
1
vote
What set of access permissions on content in USB HDDs will ensure portability in Windows?
If you want the Administrators group to have full control, just set it that way. In Windows XP Pro or some other system that gives you a Security tab in Properties, use it. In the drive's security …
1
vote
Windows 2003 MSSQL 2005 STD Instalation failure
Try copying the SQL DVD to an image file on your hard drive, and then set your VM's options so the virtual DVD drive will be directed to the image file.
If that still doesn't work, then ins …
