How to subscribe to OPC data changes in PowerShell

From OPC Labs Knowledge Base
Revision as of 18:24, 8 February 2018 by User (talk | contribs)
Jump to navigation Jump to search

The following PowerShell code subscribes to an OPC item and displays the incoming data changes:

Add-Type -Path OpcLabs.EasyOpcClassic.dll

# Create EasyOPC-DA component 
$client = New-Object OpcLabs.EasyOpc.DataAccess.EasyDAClient

# Hook events
Register-ObjectEvent -InputObject $client -EventName ItemChanged -Action { Write-Host $EventArgs }

# Subscribe
$client.SubscribeItem("", "OPCLabs.KitServer.2", "Demo.Single", 1000)

We have tested this with QuickOPC 5.40 and PowerShell 3.0.

Note2-icon.png

Note: For some issues and limitations, see How to read an OPC item value in PowerShell.

Note2-icon.png

Note: A memory leak related to event handling has been observed under some circumstances in PowerShell (and QuickOPC 2017.2). Workaround is to use the "event pull" mechanism in QuickOPC, instead of hooking event handlers.


Links related to/used when writing this article: