Just a quick note of an issue that i found. I have a command line application, built in C++ in visual studio 2008. Very stable in all Windows platforms from XP to Windows 8. A user migrated to Windows 10 and the app periodically crashed.
I put together a Windows 10 test system, and also got periodic crashes. Managed to get it into debug and the crash location made no sense. The crash was occurring in the file open function, but the program was far past that function - well into
the processing portion. In days of old, this usually meant a stack issue. I was trying alot of things, then I increased the Stack Reserve Size from 0 to 200000 and the Stack Commit Size from 0 to 100000 in the Link-> system property page.
Viola - the issue went away. I'm still researching exactly what the frick is going on, but thought I'd put a data point out there, in case anyone else is seeing sporadic Windows 10 issues.