Accessing TwinCAT Remote Manager

This documentation article describes how to access the TwinCAT Remote Manager functionality via Automation Interface. The TwinCAT Remote Manager allows to switch between different TwinCAT 3 XAE versions that have been installed on the same engineering computer. To access the Remote Manager via Automation Interface, simply execute the following code snippets.

Code Snippet (C#):

ITcRemoteManager remoteManager = dte.GetObject("TcRemoteManager");
remoteManager.Version = "3.1.4020.0";

Code Snippet (Powershell):

$remoteManager = $dte.GetObject("TcRemoteManager")
$remoteManager.Version = "3.1.4020.0"