Announcement

Collapse
No announcement yet.

REMOTE EXEC TOOLS

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    REMOTE EXEC TOOLS

    Hi iam trying to execute a explorer on a remote pc showing the caller id....

    DOes anyone have a remote execute program that runs quite fast.. Now i use psexec but it takes 5 rings before the cid is shown...

    For now thanks guys

    #2
    I use net send to pop up a window on remote PCs after a CID event. It's very quick. Almost immediate after the CID is detected:

    sub main()

    dim cid_number
    dim cid_name

    cid_number= hsp.CIDNumber(1)
    cid_name=hsp.CIDName(1)

    hs.launch "net", "send paul-pc Incoming call from " & cid_name & " " & cid_number
    hs.launch "net", "send helen-pc Incoming call from " & cid_name & " " & cid_number

    end sub

    Comment

    Working...
    X