plugins - Deploying a plug-in for Autodesk motionbuilder 2011 -


I have to make installer for 32 bit and 64 bit for builder builder 2011. The installer should find out and the corresponding plug-in should be implemented Both versions have been installed in one of 64 bit machines but in Registry time, only one of them shows. What is a way to detect both installed versions and deploy related plug-ins in their installed directories?

Thanks

To get you the MoBu 64-bit path, perform a HKEY_LOCAL_MACHINE64 query Will happen. For example, using the Ino setup script:

32-bit path

  RegQueryStringValue (HKEY_LOCAL_MACHINE, Software \ Autodesk \ MotionBuilder 2011, 'InstallPath', path) < / Code>  

64-bit path

  RegQueryStringValue (HKLM64, Software \ Autodesk \ MotionBuilder \ 2011, 'InstallPath', path)   

Hope that helps!

Comments