
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi, is it possible to register Fusion 360 in the system registry, and eventually in PythonWin, and launch the application using COM objects? I found a similar launch option in Moldex3D and wanted to try the same here. If my question isn't clear, please see the code I'm pasting below.
import os
import win32com.client
regserver_studio = 'C:\\Users\\Varadharajan\\AppData\\Local\\Autodesk\\webdeploy\\production\\6a0c9611291d45bb9226980209917c3d\\FusionLauncher.exe /regserver -m regnoprompt'
win32com.client.gencache.MakeModuleForTypelib('{CLSID}', 0, 1, 0)
studio_class = win32com.client.gencache.GetClassForProgID('Fusion.App')
studio = studio_class()
Also, if this is possible, how to know the CLSID and typeLib?
Solved! Go to Solution.