Actually, since you can run Python in Maya, try running this Python script:
import os
import sys
houdini_dir = “C:\\Program Files\\Side Effects Software\\Houdini 14.0.395\\bin”
houdini_dlls = set()
paths = os.environ.split(“;”)
paths.append(“C:\\Windows\\System32”)
for p in paths:
if “Houdini” in p:
print “Skipping”, p
continue
try:
dlls = set()
except:
print “Could not list”, p
matched_dlls = houdini_dlls & dlls
if matched_dlls:
print “From”, p
for dll in matched_dlls:
print “ ”, dll
This will go through all the DLLs in the PATH environment and output which ones might conflict with Houdini.
For me, this outputted something like:
C

Program Files/Autodesk/Maya2014/bin
tbb.dll
qthelp4.dll
qtopengl4.dll
qtcore4.dll
qtgui4.dll
tbbmalloc_proxy.dll
qtxml4.dll
phonon4.dll
qtwebkit4.dll
qtnetwork4.dll
tbbmalloc.dll
qttest4.dll
ptex.dll
qtscript4.dll
qtdesignercomponents4.dll
qtsvg4.dll
qtdesigner4.dll
qtsql4.dll
Could not list C

Program Files (x86)/Windows Kits/8.0/Windows Performance Toolkit/
Skipping C

Program Files/Side Effects Software/Houdini 15.0.179.25/engine/maya/maya2014/../../../bin