Jump to content
Claris Engage 2025 - March 25-26 Austin Texas ×

This topic is 5629 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Posted

If anyone was ever looking to get the computer name of the client rather than the host, here is the groovy to do that:


import java.util.*;

import java.lang.*;

import java.net.*;



try{

   String computername = InetAddress.getLocalHost().getHostName();

   return(computername);

 }catch (Exception e){

   return("Exception caught ="+e.getMessage());

}

Enjoy!

Angelo Luchi

The Drooling Dog, LLC.

www.thedroolingdog.com

1-877-810-8378

  • 5 months later...
Posted

That's a good script.

If you want the computer's IP address, network card, gateway, etc, you can also issue a shellscript:

ipconfig /all

using the Run Shell Script function included with SM. For OSX a different function would be used.

Posted

On Mac you can use plain AppleScript, in a Perform AppleScript function. There is a function, system info, that returns several things:

computer name of (system info)

This topic is 5629 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.