
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Something I've been wanting to achieve for awhile is the ability to start a separate Revit session behind the one that I'm working in so that an addin can be allowed to execute a task while a user can stay productive. You can only go make some coffee so many times in a day.
For now, the only way that I've found to start a separate Revit session is to have a command that uses Process.Start(path to Revit.exe version)
This achieves having two Revit sessions active, but at this point I'm up against a wall since the API can't do much with the new session as a Process (with an Id at most)
At the bare minimum, all that I really need it to be able to do is:
- Start a new process (Revit session)
- Open a file
- Execute a command or PostableCommand in the new Revit session
It would be ideal, however, if I could actually identify each session and interact with them.
Has anyone had any success with concepts like this?
Solved! Go to Solution.