Avatar of rvfowler2
rvfowler2
Flag for United States of America asked on

FM - Get Functions for Computer Name/IP Address?

In Filemaker, are there Get functions are some other way to identify the computer name and/or ip address?  I don't see them.  Thanks.
FileMaker Pro

Avatar of undefined
Last Comment
rvfowler2

8/22/2022 - Mon
North2Alaska

When editing a calculation, on the right hand side there is a list of functions.  Above the list is a popup that allows you to select the GET functions.
rvfowler2

ASKER
Yes, I went to these list of Get functions, but don't see a GetIPaddress for the local machine, just GetHostIPaddress.
ASKER CERTIFIED SOLUTION
Will Loving

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
rvfowler2

ASKER
Thanks, Will, Get( SystemIPAddress ) was what I was looking for.  We have various printers in our office and my printer scripts send one's print jobs to their closest printer.  These have been hardcoded before, but not that I've entered everyone's IP address into the employee table, I can use the Get( SystemIPAddress ) to identify the person dynamically and send them to the correct printer.  (I like IP address rather than username because every so often, someone goes to another PC to do their work.)
I started with Experts Exchange in 2004 and it's been a mainstay of my professional computing life since. It helped me launch a career as a programmer / Oracle data analyst
William Peck
Will Loving

Two other ways of identifying a unique user are:

1) Get ( SystemNICAddress ) which get the unique address of the Ethernet port

2) Get ( DesktopPath ) which can be used with the PatternCount() function to look for the volume name (useful on a Mac) or a specific user account.
rvfowler2

ASKER
Thanks.