Posted on
09-16-2018
03:42 PM
- last edited on
03-04-2025
07:08 AM
by
kh-richa_mig
Is there a way to prompt for users to enter some items like their username and room location? We've distributed computers to a number of people and want to ensure they're in the right spots. Thanks for any help.
Posted on 09-17-2018 09:34 AM
Ive used an attribute extension to find the current user, but as for location how would the computer know where it is? below is what i use to find the current user at check-in.
#!/bin/bash
user=`/bin/ls -l /dev/console | /usr/bin/awk '{ print $3 }'`
echo "<result>$user</result>"