Comments
-
I second this. Having a user's Common Name from Active Directory in addition to their already visible %USERDOMAIN%\%USERNAME% shown in Account Management would be a welcomed feature. It would especially benefit large organizations whose access provisioning must be augmented with Active Directory.
-
If interested, the same thing aLTeReGo did for Windows–based systems would look like this for Unix–like systems (I chose ksh over bash 'cause it's usually on most UNIX and Linux systems). #!/bin/kshshare=/mnt/nfs/billing/febif [ -d $share ]; then echo "Statistic.0: 0" echo "Message.0: Share $share exists" exit 0fiecho…