Accessing TwinCAT Remote Manager

This article describes how to access the TwinCAT Remote Manager functionality via the Automation Interface. The TwinCAT Remote Manager enables switching between TwinCAT 3 XAE versions installed on the same development computer. To access the Remote Manager via the Automation Interface, the following code snippets must be executed.

Code snippet (C#):

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

Code snippet (PowerShell):

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