{"id":4126,"date":"2014-03-30T07:58:39","date_gmt":"2014-03-30T07:58:39","guid":{"rendered":"https:\/\/unknownerror.org\/index.php\/2014\/03\/30\/vs2005-redistributable-not-working-on-windows-2000-collection-of-common-programming-errors\/"},"modified":"2014-03-30T07:58:39","modified_gmt":"2014-03-30T07:58:39","slug":"vs2005-redistributable-not-working-on-windows-2000-collection-of-common-programming-errors","status":"publish","type":"post","link":"https:\/\/unknownerror.org\/index.php\/2014\/03\/30\/vs2005-redistributable-not-working-on-windows-2000-collection-of-common-programming-errors\/","title":{"rendered":"VS2005 redistributable not working on Windows 2000-Collection of common programming errors"},"content":{"rendered":"<p>Thank you for the feedback.<\/p>\n<p>Looking for system calls that were not supported on Win 2000 was the first thing I checked for when I started this project.\u00a0 It is a rather large application and I could have missed something.\u00a0 Based on your feedback, I did go back and review some of my earlier work.\u00a0 I also ran dumpbin \/exports against the kernel32.dll on win2k3 and win2k, piped the output to a file and then\u00a0diffed them and looked for every system call in win2k3 that&#8217;s not in win2k.\u00a0 You get the picture.\u00a0 Didn&#8217;t find anything.<\/p>\n<p>Also, I would think&#8211;I could be wrong&#8211;that Dependency Walker would flag something as simple as that.\u00a0 As the snippet of depends output below indicates, the failures are all caused by the redist library attempting to call a routine in the kernel32.dll that does not exist in that library.\u00a0 There&#8217;s no indication of the application itself calling a non-existent routine.<\/p>\n<p>00:00:00.781: GetProcAddress(0x77A50000 [c:\\winnt\\system32\\OLE32.DLL], &#8220;DcomChannelSetHResult&#8221;) called from &#8220;c:\\winnt\\system32\\OLEAUT32.DLL&#8221; at address 0x77A0FAB3 and returned 0x77A8FDF4 by thread 1. 00:00:00.781: DllMain(0x779B0000, DLL_PROCESS_ATTACH, 0x0012FD30) in &#8220;c:\\winnt\\system32\\OLEAUT32.DLL&#8221; returned 1 (0x1) by thread 1. 00:00:00.781: DllMain(0x78000000, DLL_PROCESS_ATTACH, 0x0012FD30) in &#8220;c:\\winnt\\system32\\MSVCRT.DLL&#8221; called by thread 1. 00:00:00.797: GetProcAddress(0x7C4E0000 [c:\\winnt\\system32\\KERNEL32.DLL], &#8220;IsProcessorFeaturePresent&#8221;) called from &#8220;c:\\winnt\\system32\\MSVCRT.DLL&#8221; at address 0x78001EAA and returned 0x7C4E62D7 by thread 1. 00:00:00.797: DllMain(0x78000000, DLL_PROCESS_ATTACH, 0x0012FD30) in &#8220;c:\\winnt\\system32\\MSVCRT.DLL&#8221; returned 1 (0x1) by thread 1. 00:00:00.812: DllMain(0x78130000, DLL_PROCESS_ATTACH, 0x0012FD30) in &#8220;c:\\winnt\\system32\\MSVCR80.DLL&#8221; called by thread 1. 00:00:00.812: GetProcAddress(0x7C4E0000 [c:\\winnt\\system32\\KERNEL32.DLL], &#8220;FlsAlloc&#8221;) called from &#8220;c:\\winnt\\system32\\MSVCR80.DLL&#8221; at address 0x78133001 and returned NULL by thread 1. Error: The specified procedure could not be found (127). 00:00:00.828: GetProcAddress(0x7C4E0000 [c:\\winnt\\system32\\KERNEL32.DLL], &#8220;FlsGetValue&#8221;) called from &#8220;c:\\winnt\\system32\\MSVCR80.DLL&#8221; at address 0x7813300E and returned NULL by thread 1. Error: The specified procedure could not be found (127). 00:00:00.828: GetProcAddress(0x7C4E0000 [c:\\winnt\\system32\\KERNEL32.DLL], &#8220;FlsSetValue&#8221;) called from &#8220;c:\\winnt\\system32\\MSVCR80.DLL&#8221; at address 0x7813301B and returned NULL by thread 1. Error: The specified procedure could not be found (127). 00:00:00.844: GetProcAddress(0x7C4E0000 [c:\\winnt\\system32\\KERNEL32.DLL], &#8220;FlsFree&#8221;) called from &#8220;c:\\winnt\\system32\\MSVCR80.DLL&#8221; at address 0x78133028 and returned NULL by thread 1. Error: The specified procedure could not be found (127). 00:00:00.844: GetProcAddress(0x7C4E0000 [c:\\winnt\\system32\\KERNEL32.DLL], &#8220;EncodePointer&#8221;) called from &#8220;c:\\winnt\\system32\\MSVCR80.DLL&#8221; at address 0x78132BBC and returned NULL by thread 1. Error: The specified procedure could not be found (127). 00:00:00.844: GetProcAddress(0x7C4E0000 [c:\\winnt\\system32\\KERNEL32.DLL], &#8220;EncodePointer&#8221;) called from &#8220;c:\\winnt\\system32\\MSVCR80.DLL&#8221; at address 0x78132BBC and returned NULL by thread 1. Error: The specified procedure could not be found (127). 00:00:00.859: GetProcAddress(0x7C4E0000 [c:\\winnt\\system32\\KERNEL32.DLL], &#8220;EncodePointer&#8221;) called from &#8220;c:\\winnt\\system32\\MSVCR80.DLL&#8221; at address 0x78132BBC and returned NULL by thread 1. Error: The specified procedure could not be found (127). 00:00:00.859: GetProcAddress(0x7C4E0000 [c:\\winnt\\system32\\KERNEL32.DLL], &#8220;EncodePointer&#8221;) called from &#8220;c:\\winnt\\system32\\MSVCR80.DLL&#8221; at address 0x78132BBC and returned NULL by thread 1. Error: The specified procedure could not be found (127).<\/p>\n<p>00:00:00.859: GetProcAddress(0x7C4E0000 [c:\\winnt\\system32\\KERNEL32.DLL], &#8220;EncodePointer&#8221;) called from &#8220;c:\\winnt\\system32\\MSVCR80.DLL&#8221; at address 0x78132BBC and returned NULL by thread 1. Error: The specified procedure could not be found (127).<\/p>\n<p>Like I said, it is a large applciation so I will continue to look for unsupported system calls.<\/p>\n<p>Thanks, Tom<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Thank you for the feedback. Looking for system calls that were not supported on Win 2000 was the first thing I checked for when I started this project.\u00a0 It is a rather large application and I could have missed something.\u00a0 Based on your feedback, I did go back and review some of my earlier work.\u00a0 [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-4126","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"_links":{"self":[{"href":"https:\/\/unknownerror.org\/index.php\/wp-json\/wp\/v2\/posts\/4126","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/unknownerror.org\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/unknownerror.org\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/unknownerror.org\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/unknownerror.org\/index.php\/wp-json\/wp\/v2\/comments?post=4126"}],"version-history":[{"count":0,"href":"https:\/\/unknownerror.org\/index.php\/wp-json\/wp\/v2\/posts\/4126\/revisions"}],"wp:attachment":[{"href":"https:\/\/unknownerror.org\/index.php\/wp-json\/wp\/v2\/media?parent=4126"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/unknownerror.org\/index.php\/wp-json\/wp\/v2\/categories?post=4126"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/unknownerror.org\/index.php\/wp-json\/wp\/v2\/tags?post=4126"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}