Announcement

Collapse
No announcement yet.

User contribution for custom tool

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

  • User contribution for custom tool

    Download and install the TSAC web package to your web server.
    Connect to the website created by TSAC. (http://yourwebserver/tsweb)
    Connect to one of your servers running Terminal Services and copy the URL to the clipboard.
    Launch Hyena.
    Create a new tool with the command line calling the Iexplore executable. (usually C:\progra~1\Intern~1\iexplore.exe)
    Add the URL you copied earlier after the iexplore entry. (http://yourwebserver/tsweb/connect.a...rW=800&rH=600&)

    Modify the URL to replace the server name with %E%. (http://yourwebserver/tsweb/connect.a...rW=800&rH=600&)

    This adds SMS like remote control ability for your servers.

  • #2
    Re: User contribution for custom tool

    Custom tool used for finding the machine details of a logged on user. Select the users account the uses the tool.

    @echo of

    net send %1 test

    nbtstat -c

    Comment


    • #3
      Re: User contribution for custom tool

      I'd suggest a little addition to your tool:

      @echo off

      net send %1 test

      nbtstat -c | find /i %1

      Comment

      Working...
      X