Set up a virtual machine - such as VMWare or VirtualBox - and try it out on
a clean Windows install.​

In general, anything built using Visual Studio requires a re-distributable
for the corresponding version; e.g. Visual Studio 2010 will link against
dlls that your users can get a hold of via the Visual Studio 2010
re-distributable.

But you can also bundle them. You’re typically looking for two dll’s;
msvcr100 and msvcp100 for the 2010 version, but it depends on what you use.
For example, here’s all files included in the 2013 re-distributable.

mfc120.dll
mfc120u.dll
mfcm120.dll
mfcm120u.dll
msvcp120.dll
msvcr120.dll
vcamp120.dll
vcomp120.dll

That, along with any other libraries you dynamically linked with will need
to be included.

You can use Dependency Walker to find out exactly which; it hooks into an
executable and “spies” on which libraries it imports.

   - http://www.dependencywalker.com/

It can be a bit cryptic to use at first but it’s the go-to tool for these
type of situations.

Good luck!

Best,
Marcus
​

-- 
You received this message because you are subscribed to the Google Groups 
"Python Programming for Autodesk Maya" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/python_inside_maya/CAFRtmOCo6WHBagky29EWLSVfC8%2B0zy4EN_y404-%3DOtSE1fOQgQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to