Author Topic: Remote Station Access  (Read 2064 times)

0 Members and 1 Guest are viewing this topic.

kpm

  • Guest
Remote Station Access
« on: January 10, 2014, 12:28:33 PM »
Hi All,

We use a remote station in our dept to log onto when accessing programs that only operate on a 24 bit platform.

Our problem is that when someone goes in to log into one of these stations, we possibly kick another off who may be using it already.

Is there any way to make some sort of icon that sits on your desktop that switches from "InUse" to "Avail" that the person can check before going into one of these remote stations?

I have been looking into other ways to do this, (programs that monitor use), but i'm not crazy about having a screen shot program loaded onto pcs.

if there is a way to program in vb net this item, could someone point me the way to implementing this?

n.yuan

  • Bull Frog
  • Posts: 348
Re: Remote Station Access
« Reply #1 on: January 10, 2014, 04:29:40 PM »
Well, I think this has little to do with AutoCAD. Also, By "24bit", I think you mean "32bit". My office uses the same approach: keeping a 32bit AutoCAD installed in a box, and users can remote in (use "Remote Desktop") when needed.

One a user tries to log in via "Remote Desktop", shouldn't the user be prompted if other is currently logged in? Then the user can decide if the other current user be kicked off or not (if the other user is an admin, then he/she cannot be kicked out).

There might be freeware/shareware available doing this (or similar). But if you want a quick and simple home-grown programmatic solution, you can easily use .NET to build a windows service that host a WCF service, which supplies current log-in user. This windows service app would be installed in the remote computer. Then you can build a small app that communicate to the WCF service hosted in the remote server to know the remote computer's availability. The app can poll the remote computer periodically and shows the remote computer's status, say, in system tray...