Login Page - Create Account

Support Board


Date/Time: Wed, 08 May 2024 23:12:39 +0000



Post From: ACSIL - DLL cannot be opened for writing

[2018-11-23 00:12:41]
User654912 - Posts: 26
UDP works for me.

Basic powershell script for users who might not have python installed. Run with .\udpunload.ps1

udpunload.ps1
---
$client = new-object net.sockets.udpclient(0)

$peerIP = "127.0.0.1"
$peerPort = "22904"

$send = [text.encoding]::ascii.getbytes("RELEASE_DLL--C:\SierraChart\Data\x.dll")

[void] $client.send($send, $send.length, $peerIP, $peerPort)

$client.close()
Exit