January 29, 200916 yr 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
July 6, 200916 yr 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.
July 7, 200916 yr 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)
Create an account or sign in to comment