This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env perl | |
# There is currently an issue with native callbacks and threaded perls, which leads to a crash. | |
# As of Jan 2025, all the available pre-built perls I am aware of for Windows are threaded. | |
# I was able to work around this by building an unthreaded perl with cygwin / perlbrew... but | |
# you might want to just try this on Linux or Mac instead :) | |
use v5.40; | |
use experimental qw/ class /; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Native Instruments software uses PORT 5562 ON TCP (NTKDaemon) | |
#Run CMD as Administrador and write: | |
netstat -ano | findstr :5563 | |
taskkill /PID <PID> /F |