문제

I'd like to use powershell as a replacement for Intersystems's Console/Terminal. Is there a way to connect to cache with powershell and issue cache commands against the server?

도움이 되었습니까?

해결책

The cache terminal is just a telnet session, so you could use telnet from powershell.

You could also do your own Read Evaluate Print Loop by connecting to Cache by any means for the Evaluate step. Though your method of connection might make it difficult for break statements to work or for write statements (or anything else that uses a device) to work correctly.

You could also open terminal in another process and use DDE to drive the terminal from power shell, but that's starting to get silly.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top