Where to find list of default dll files available on Windows (XP, Vista, 7, …)?

后端 未结 2 1001
心在旅途
心在旅途 2021-02-14 09:03

Is there some list of .dll files that are available on the various freshly-installed Windows platforms (or at least, the recent ones like Win XP and Win 7)? I am lookin

2条回答
  •  余生分开走
    2021-02-14 09:55

    If you are targeting different windows versions with your application, it is a really good idea to set up a virtual test environment for each of the primary target platforms, for example, using VMware, MS Virtual PC or Oracle Virtual Box. If you then still need the list of all available DLLs, just look in the windows folders after a fresh install in the virtual machine by yourself.

    By the way, having a look on the py2exe tutorial site, the example shows up ADVAPI32.dll, USER32.dll,SHELL32.dll and KERNEL32.dll as DLLs on which the generated files depend. AFAIK those DLLs are primary windows components, not to be deployed by your program, and available under all Windows versions I had to deal with the last 15 years.

提交回复
热议问题